diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 483a16d4..a0f69ecd 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -1,5 +1,5 @@ # name of your github action -name: Release +name: Release CI # this will help you specify when & which branch to run deployment on: diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml new file mode 100644 index 00000000..38cb4d95 --- /dev/null +++ b/.github/workflows/Test.yml @@ -0,0 +1,25 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs + +name: Test CI + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [14.x, 16.x, 18.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + cache: "npm" + - run: npm install + - run: npm test diff --git a/.github/workflows/docs-ci.yml b/.github/workflows/docs-ci.yml new file mode 100644 index 00000000..9785e8eb --- /dev/null +++ b/.github/workflows/docs-ci.yml @@ -0,0 +1,36 @@ +name: CI Documentation + +on: [push, pull_request] + +permissions: + contents: read # to fetch code (actions/checkout) + +jobs: + build: + runs-on: ubuntu-20.04 + + strategy: + max-parallel: 4 + matrix: + python-version: [3.9] + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + + - name: Install Dependencies + run: pip install -r docs/requirements.txt + + - name: Check Sphinx Documentation build minimally + working-directory: ./docs + run: sphinx-build -E -W source build + + - name: Check for documentation style errors + working-directory: ./docs + run: ./scripts/doc8_style_check.sh + diff --git a/.gitignore b/.gitignore index 91bd2cc8..fd9f66e0 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,9 @@ yarn-debug.log* yarn-error.log* lerna-debug.log* +# Test residue +test-db + # Diagnostic reports (https://nodejs.org/api/report.html) report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 00000000..610c2a54 --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,4 @@ +#!/usr/bin/env sh +. "$(dirname -- "$0")/_/husky.sh" + +npm test diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 00000000..7959d74c --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,26 @@ +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Build PDF & ePub +formats: + - epub + - pdf + +# Where the Sphinx conf.py file is located +sphinx: + configuration: docs/source/conf.py + +# specify build OS +build: + os: ubuntu-22.04 + tools: + python: "3.11" + +# Setting the python version and doc build requirements +python: + install: + - requirements: docs/requirements.txt \ No newline at end of file diff --git a/CODE_OF_CONDUCT.rst b/CODE_OF_CONDUCT.rst new file mode 100644 index 00000000..cec1075d --- /dev/null +++ b/CODE_OF_CONDUCT.rst @@ -0,0 +1,86 @@ +Contributor Covenant Code of Conduct +==================================== + +Our Pledge +---------- + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our +project and our community a harassment-free experience for everyone, +regardless of age, body size, disability, ethnicity, gender identity and +expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, religion, or sexual identity and +orientation. + +Our Standards +------------- + +Examples of behavior that contributes to creating a positive environment +include: + +- Using welcoming and inclusive language +- Being respectful of differing viewpoints and experiences +- Gracefully accepting constructive criticism +- Focusing on what is best for the community +- Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +- The use of sexualized language or imagery and unwelcome sexual + attention or advances +- Trolling, insulting/derogatory comments, and personal or political + attacks +- Public or private harassment +- Publishing others’ private information, such as a physical or + electronic address, without explicit permission +- Other conduct which could reasonably be considered inappropriate in a + professional setting + +Our Responsibilities +-------------------- + +Project maintainers are responsible for clarifying the standards of +acceptable behavior and are expected to take appropriate and fair +corrective action in response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, +or reject comments, commits, code, wiki edits, issues, and other +contributions that are not aligned to this Code of Conduct, or to ban +temporarily or permanently any contributor for other behaviors that they +deem inappropriate, threatening, offensive, or harmful. + +Scope +----- + +This Code of Conduct applies both within project spaces and in public +spaces when an individual is representing the project or its community. +Examples of representing a project or community include using an +official project e-mail address, posting via an official social media +account, or acting as an appointed representative at an online or +offline event. Representation of a project may be further defined and +clarified by project maintainers. + +Enforcement +----------- + +Instances of abusive, harassing, or otherwise unacceptable behavior may +be reported by contacting the project team at pombredanne@gmail.com +or on the Gitter chat channel at https://matrix.to/#/#aboutcode-org_discuss:gitter.im +All complaints will be reviewed and investigated and will result in a +response that is deemed necessary and appropriate to the circumstances. +The project team is obligated to maintain confidentiality with regard to +the reporter of an incident. Further details of specific enforcement +policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in +good faith may face temporary or permanent repercussions as determined +by other members of the project’s leadership. + +Attribution +----------- + +This Code of Conduct is adapted from the `Contributor Covenant`_ , +version 1.4, available at +https://www.contributor-covenant.org/version/1/4/code-of-conduct.html + +.. _Contributor Covenant: https://www.contributor-covenant.org \ No newline at end of file diff --git a/README.md b/README.md index 65a3a9b7..33b072c2 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ #

ScanCode Workbench

-[![Travis Build Status](https://travis-ci.org/nexB/scancode-workbench.svg?branch=develop)](https://travis-ci.org/nexB/scancode-workbench) -[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/nexB/scancode-workbench)](https://ci.appveyor.com/project/nexB/scancode-workbench) +[![Test CI](https://github.com/nexB/scancode-workbench/actions/workflows/Test.yml/badge.svg)](https://github.com/nexB/scancode-workbench/actions/workflows/Test.yml) +[![Release](https://github.com/nexB/scancode-workbench/actions/workflows/Release.yml/badge.svg)](https://github.com/nexB/scancode-workbench/actions/workflows/Release.yml) ScanCode Workbench provides an advanced visual UI to help you quickly evaluate license and other notices identified by @@ -11,7 +11,7 @@ license and other notices identified by and other interesting information in your code. ScanCode Workbench is based on -[Electron](https://electron.atom.io/) and will be the primary desktop/GUI tool +[Electron](https://www.electronjs.org/) and will be the primary desktop/GUI tool for using nexB’s [AboutCode tools](https://github.com/nexB/aboutcode). This app works on Windows, OS X and Linux operating systems. @@ -22,9 +22,9 @@ works on Windows, OS X and Linux operating systems. * You can [download the latest release](https://github.com/nexB/scancode-workbench/releases) for your operating system or build it yourself (see below). Once downloaded, you -can find `ScanCode-Workbench` under `dist/ScanCode-Workbench--x64-`. -* ScanCode Workbench >= v2 is only compatible with scans from -[ScanCode v2.0.0](https://github.com/nexB/scancode-toolkit/releases) and +can find `ScanCode-Workbench` under `dist/ScanCode-Workbench---` +* ScanCode Workbench >= v4 is only compatible with scans from +[ScanCode v32.0.0](https://github.com/nexB/scancode-toolkit/releases) and above which are run with the ScanCode `-i` option. For a list of available ScanCode options see [How To: Set what will be detected in a scan](https://scancode-toolkit.readthedocs.io/en/latest/tutorials/how_to_set_what_will_be_detected_in_a_scan.html) @@ -40,9 +40,9 @@ information captured by a scan. The samples are located at the [documentation](https://scancode-workbench.readthedocs.io) for more information on how to use ScanCode Workbench. -![Import a JSON file](https://scancode-workbench.readthedocs.io/en/develop/_images/import-json-file.gif) +[Import a JSON file](https://scancode-workbench.readthedocs.io/en/develop/_images/import-json-file.gif) -## Building +## Running locally You'll need [Node.js](https://nodejs.org) (which comes with [npm](http://npmjs.com)) installed on your computer in order to build this app. For a list of platform @@ -65,23 +65,21 @@ $ npm start ## Release Instructions -You can build a `dist` directory containing executables for any one of three -target platforms by running: +You'll need python 3.x to run the build. You can build a `dist` directory containing executables for your platform + +Note: Due to usage of native modules, a build must be done on target platform only. ```bash -$ python build.py +$ npm run publish ``` After building is done, you can find `ScanCode-Workbench` under `dist/ScanCode-Workbench--x64-`. Archives (tar.gz and .zip) are also built. -Note: A build for any of the three target platforms must be executed on the -targeted platform. - ## Testing -Test ABCM functionality using: +Run tests using: ```bash $ npm test @@ -98,6 +96,6 @@ See the NOTICE file for more details. If you have a question, a suggestion or find a bug, enter an issue. -[![Gitter chat](https://badges.gitter.im/aboutcode-org/gitter.png)](https://gitter.im/aboutcode-org/discuss) +[![Gitter chat](https://badges.gitter.im/aboutcode-org/gitter.png)](https://matrix.to/#/#aboutcode-org_discuss:gitter.im) -For questions and chats, you can join the Gitter channel at https://gitter.im/aboutcode-org/discuss +For questions and chats, you can join the Gitter channel at https://matrix.to/#/#aboutcode-org_discuss:gitter.im diff --git a/LICENSE b/apache-2.0.LICENSE similarity index 100% rename from LICENSE rename to apache-2.0.LICENSE diff --git a/archive_builder.py b/archive_builder.py index 6a194042..6431ee7b 100755 --- a/archive_builder.py +++ b/archive_builder.py @@ -1,6 +1,6 @@ #!/usr/bin/python -# Copyright (c) 2017 - 2019 nexB Inc. http://www.nexb.com/ - All rights reserved. +# Copyright (c) nexB Inc. and others. All rights reserved. """ Run this script to build ScanCode Workbench. The script detects which OS @@ -52,7 +52,7 @@ # Prepare file name for archive using platform, architecture & app version archive_file_name = '-'.join([APP_NAME, PLATFORM_NAME, ARCH, APP_VERSION]) -print("Composed Archive file name: '" + archive_file_name + "'") +print(f"Composed Archive file name: '{archive_file_name}'") # Ensure archive directory dist/ is created, before attempting to store archive inside it ensure_archive_directory = f"mkdir -p {ARCHIVE_DIR}" @@ -64,13 +64,13 @@ zip_command = f"powershell Compress-Archive {PACKAGE_DIR}/* {ARCHIVE_DIR}/{archive_file_name}.zip" print("Executing zip command on powershell:", zip_command) os.system(zip_command) - print(f"Zip file ready in {ARCHIVE_DIR}/ !!") + print(f"Zip file ready: {ARCHIVE_DIR}/{archive_file_name}.zip") # Prepare .tar.gz file for mac & linux else: tar_command = f"tar -czf {ARCHIVE_DIR}/{archive_file_name}.tar.gz -C {PACKAGE_DIR} ." print("Executing tar command:", tar_command) os.system(tar_command) - print(f"Tar file ready in {ARCHIVE_DIR}/ !!") + print(f"Tar file ready: {ARCHIVE_DIR}/{archive_file_name}.tar.gz") print("Build succeeded !!!") \ No newline at end of file diff --git a/attribution.html b/attribution.html index 88684608..9200deb4 100644 --- a/attribution.html +++ b/attribution.html @@ -58,13 +58,13 @@

About ScanCode Workbench 4.0.0:

-  Copyright (c) 2016 - 2019 nexB Inc. and others. All rights reserved.
   Software license
   ================
 
-  Copyright (c) 2016 nexB Inc. and others. All rights reserved.
+  Copyright (c) nexB Inc. and others. All rights reserved.
   https://nexb.com and https://github.com/nexB/scancode-workbench/
   The ScanCode Workbench software is licensed under the Apache License version 2.0.
   ScanCode is a trademark of nexB Inc.
diff --git a/docs/.gitignore b/docs/.gitignore
new file mode 100644
index 00000000..887f56e8
--- /dev/null
+++ b/docs/.gitignore
@@ -0,0 +1,44 @@
+# Virtual environment
+venv/
+
+# sphinx build folder
+build/
+
+# Compiled source #
+###################
+*.com
+*.class
+*.dll
+*.exe
+*.o
+*.so
+
+# Packages #
+############
+# it's better to unpack these files and commit the raw source
+# git has its own built in compression methods
+*.7z
+*.dmg
+*.gz
+*.iso
+*.jar
+*.rar
+*.tar
+*.zip
+
+# Logs and databases #
+######################
+*.log
+*.sql
+*.sqlite
+
+# OS generated files #
+######################
+.DS_Store?
+ehthumbs.db
+Icon?
+Thumbs.db
+
+# Editor backup files #
+#######################
+*~
\ No newline at end of file
diff --git a/docs/Makefile b/docs/Makefile
index d0c3cbf1..788b0396 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -5,6 +5,7 @@
 # from the environment for the first two.
 SPHINXOPTS    ?=
 SPHINXBUILD   ?= sphinx-build
+SPHINXAUTOBUILD = sphinx-autobuild
 SOURCEDIR     = source
 BUILDDIR      = build
 
@@ -14,6 +15,13 @@ help:
 
 .PHONY: help Makefile
 
+# Run the development server using sphinx-autobuild
+docs:
+	@echo
+	@echo "Starting up the docs server..."
+	@echo
+	$(SPHINXAUTOBUILD) --port 8000 --watch ${SOURCEDIR} $(SOURCEDIR) "$(BUILDDIR)/html" $(SPHINXOPTS) $(O)
+
 # Catch-all target: route all unknown targets to Sphinx using the new
 # "make mode" option.  $(O) is meant as a shortcut for $(SPHINXOPTS).
 %: Makefile
diff --git a/docs/README.md b/docs/README.md
index 84e20f91..16c53864 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -2,13 +2,17 @@
 The first step you want to do is create the python virtual environment:
 ```
 $ cd docs/
-$ python3 -m venv .venv
-$ source .venv/bin/active
+$ python3 -m venv venv
+$ source venv/bin/activate
 $ pip install -r requirements.txt
 ```
 
-Now, you can run the various Spinx build things:
+Run Sphinx documentation server:
+```
+$ make docs
+```
+
+Build Sphinx documentation
 ```
 $ make html
-$ etc
 ```
diff --git a/docs/make.bat b/docs/make.bat
index 9534b018..4a3c1a48 100644
--- a/docs/make.bat
+++ b/docs/make.bat
@@ -1,35 +1,47 @@
-@ECHO OFF
-
-pushd %~dp0
-
-REM Command file for Sphinx documentation
-
-if "%SPHINXBUILD%" == "" (
-	set SPHINXBUILD=sphinx-build
-)
-set SOURCEDIR=source
-set BUILDDIR=build
-
-if "%1" == "" goto help
-
-%SPHINXBUILD% >NUL 2>NUL
-if errorlevel 9009 (
-	echo.
-	echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
-	echo.installed, then set the SPHINXBUILD environment variable to point
-	echo.to the full path of the 'sphinx-build' executable. Alternatively you
-	echo.may add the Sphinx directory to PATH.
-	echo.
-	echo.If you don't have Sphinx installed, grab it from
-	echo.http://sphinx-doc.org/
-	exit /b 1
-)
-
-%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
-goto end
-
-:help
-%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
-
-:end
-popd
+@ECHO OFF
+
+pushd %~dp0
+
+REM Command file for Sphinx documentation
+
+if "%SPHINXBUILD%" == "" (
+	set SPHINXBUILD=sphinx-build
+)
+if "%SPHINXAUTOBUILD%" == "" (
+	set SPHINXAUTOBUILD=sphinx-autobuild
+)
+set SOURCEDIR=source
+set BUILDDIR=build
+
+if "%1" == "" goto help
+
+if "%1" == "docs" goto docs
+
+%SPHINXBUILD% >NUL 2>NUL
+if errorlevel 9009 (
+	echo.
+	echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
+	echo.installed, then set the SPHINXBUILD environment variable to point
+	echo.to the full path of the 'sphinx-build' executable. Alternatively you
+	echo.may add the Sphinx directory to PATH.
+	echo.
+	echo.If you don't have Sphinx installed, grab it from
+	echo.http://sphinx-doc.org/
+	exit /b 1
+)
+
+%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
+goto end
+
+:docs
+@echo
+@echo Starting up the docs server...
+@echo
+%SPHINXAUTOBUILD% --port 8000 --watch %SOURCEDIR% %SOURCEDIR% %BUILDDIR%\html %SPHINXOPTS% %O%
+goto end
+
+:help
+%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
+
+:end
+popd
diff --git a/docs/requirements.txt b/docs/requirements.txt
index 90747e5a..f2b6ba73 100644
--- a/docs/requirements.txt
+++ b/docs/requirements.txt
@@ -1,26 +1,9 @@
-alabaster==0.7.12
-Babel==2.9.1
-certifi==2019.11.28
-chardet==3.0.4
-colorama==0.4.3
-docutils==0.16
-idna==2.9
-imagesize==1.2.0
-Jinja2==2.11.3
-MarkupSafe==1.1.1
-packaging==20.3
-Pygments==2.7.4
-pyparsing==2.4.6
-pytz==2019.3
-requests==2.23.0
-six==1.14.0
-snowballstemmer==2.0.0
-Sphinx==2.4.4
-sphinx-rtd-theme==0.4.3
-sphinxcontrib-applehelp==1.0.2
-sphinxcontrib-devhelp==1.0.2
-sphinxcontrib-htmlhelp==1.0.3
-sphinxcontrib-jsmath==1.0.1
-sphinxcontrib-qthelp==1.0.3
-sphinxcontrib-serializinghtml==1.1.4
-urllib3==1.26.5
+Sphinx>=5.0.2
+sphinx-autobuild
+sphinx-reredirects>=0.1.2
+sphinx-rtd-theme>=1.0.0
+sphinx-rtd-dark-mode>=1.3.0
+doc8>=0.11.2
+jinja2
+markupSafe
+sphinx-copybutton
diff --git a/docs/scripts/doc8_style_check.sh b/docs/scripts/doc8_style_check.sh
index 95555f4c..94163239 100755
--- a/docs/scripts/doc8_style_check.sh
+++ b/docs/scripts/doc8_style_check.sh
@@ -2,4 +2,4 @@
 # halt script on error
 set -e
 # Check for Style Code Violations
-doc8 --max-line-length 100 ./docs/source --ignore D000 --quiet
\ No newline at end of file
+doc8 --max-line-length 100 source --ignore D000 --quiet
\ No newline at end of file
diff --git a/docs/scripts/sphinx_build_link_check.sh b/docs/scripts/sphinx_build_link_check.sh
index 2ef65e96..c5426863 100755
--- a/docs/scripts/sphinx_build_link_check.sh
+++ b/docs/scripts/sphinx_build_link_check.sh
@@ -2,4 +2,4 @@
 # halt script on error
 set -e
 # Build locally, and then check links
-sphinx-build -E -W -b linkcheck ./docs/source ./docs/build
\ No newline at end of file
+sphinx-build -E -W -b linkcheck source build
\ No newline at end of file
diff --git a/docs/source/_static/theme_overrides.css b/docs/source/_static/theme_overrides.css
index 3c5c9bc1..9662d63a 100644
--- a/docs/source/_static/theme_overrides.css
+++ b/docs/source/_static/theme_overrides.css
@@ -1,38 +1,166 @@
 body {
     color: #000000;
-    /* this is the font-family used in the SPATS wiki */
-    /* font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji; */
+}
+
+p {
+    margin-bottom: 10px;
+}
+
+.wy-plain-list-disc, .rst-content .section ul, .rst-content .toctree-wrapper ul, article ul {
+    margin-bottom: 10px;
+}
+
+.custom_header_01 {
+    color: #cc0000;
+    font-size: 22px;
+    font-weight: bold;
+    line-height: 50px;
+}
+
+h1, h2, h3, h4, h5, h6 {
+    margin-bottom: 20px;
+    margin-top: 20px;
+}
+
+h5 {
+    font-size: 18px;
+    color: #000000;
+    font-style: italic;
+    margin-bottom: 10px;
+}
+
+h6 {
+    font-size: 15px;
+    color: #000000;
+    font-style: italic;
+    margin-bottom: 10px;
+}
+
+/* custom admonitions */
+/* success */
+.custom-admonition-success  .admonition-title {
+    color: #000000;
+    background: #ccffcc;
+    border-radius: 5px 5px 0px 0px;
+}
+div.custom-admonition-success.admonition {
+    color: #000000;
+    background: #ffffff;
+    border: solid 1px #cccccc;
+    border-radius: 5px;
+    box-shadow: 1px 1px 5px 3px #d8d8d8;
+    margin: 20px 0px 30px 0px;
+}
+
+/* important */
+.custom-admonition-important  .admonition-title {
+    color: #000000;
+    background: #ccffcc;
+    border-radius: 5px 5px 0px 0px;
+    border-bottom: solid 1px #000000;
+}
+div.custom-admonition-important.admonition {
+    color: #000000;
+    background: #ffffff;
+    border: solid 1px #cccccc;
+    border-radius: 5px;
+    box-shadow: 1px 1px 5px 3px #d8d8d8;
+    margin: 20px 0px 30px 0px;
+}
+
+/* caution */
+.custom-admonition-caution  .admonition-title {
+    color: #000000;
+    background: #ffff99;
+    border-radius: 5px 5px 0px 0px;
+    border-bottom: solid 1px #e8e8e8;
+}
+div.custom-admonition-caution.admonition {
+    color: #000000;
+    background: #ffffff;
+    border: solid 1px #cccccc;
+    border-radius: 5px;
+    box-shadow: 1px 1px 5px 3px #d8d8d8;
+    margin: 20px 0px 30px 0px;
+}
+
+/* note */
+.custom-admonition-note  .admonition-title {
+    color: #ffffff;
+    background: #006bb3;
+    border-radius: 5px 5px 0px 0px;
+}
+div.custom-admonition-note.admonition {
+    color: #000000;
+    background: #ffffff;
+    border: solid 1px #cccccc;
+    border-radius: 5px;
+    box-shadow: 1px 1px 5px 3px #d8d8d8;
+    margin: 20px 0px 30px 0px;
+}
+
+/* todo */
+.custom-admonition-todo  .admonition-title {
+    color: #000000;
+    background: #cce6ff;
+    border-radius: 5px 5px 0px 0px;
+    border-bottom: solid 1px #99ccff;
+}
+div.custom-admonition-todo.admonition {
+    color: #000000;
+    background: #ffffff;
+    border: solid 1px #99ccff;
+    border-radius: 5px;
+    box-shadow: 1px 1px 5px 3px #d8d8d8;
+    margin: 20px 0px 30px 0px;
+}
+
+/* examples */
+.custom-admonition-examples  .admonition-title {
+    color: #000000;
+    background: #ffe6cc;
+    border-radius: 5px 5px 0px 0px;
+    border-bottom: solid 1px #d8d8d8;
+}
+div.custom-admonition-examples.admonition {
+    color: #000000;
+    background: #ffffff;
+    border: solid 1px #cccccc;
+    border-radius: 5px;
+    box-shadow: 1px 1px 5px 3px #d8d8d8;
+    margin: 20px 0px 30px 0px;
+}
+
+.wy-nav-content {
+    max-width: 100%;
+    padding-right: 100px;
+    padding-left: 100px;
+    background-color: #f2f2f2;
+}
+
+div.rst-content {
+    background-color: #ffffff;
+    border: solid 1px #e5e5e5;
+    padding: 20px 40px 20px 40px;
 }
 
 .rst-content .guilabel {
-    border: 0;
-    background: #e6ffff;
-    font-size: 16px;
+    border: 1px solid #ffff99;
+    background: #ffff99;
+    font-size: 100%;
     font-weight: normal;
     border-radius: 4px;
-    padding: 4px 6px;
+    padding: 2px 0px;
     margin: auto 2px;
-
     vertical-align: middle;
 }
 
 .rst-content kbd {
-    -moz-border-radius:3px;
-    -moz-box-shadow:0 1px 0 rgba(0,0,0,0.2),0 0 0 2px #fff inset;
-    -webkit-border-radius:3px;
-    -webkit-box-shadow:0 1px 0 rgba(0,0,0,0.2),0 0 0 2px #fff inset;
-    background-color:#f7f7f7;
-    border:1px solid #ccc;
-    border-radius:3px;
-    box-shadow:0 1px 0 rgba(0,0,0,0.2),0 0 0 2px #fff inset;
-    color:#333;
-    display:inline-block;
-    font-family:Arial,Helvetica,sans-serif;
-    font-size: 13px;
-    line-height:1.4;
-    margin:0 .1em;
-    padding: 2px 3px 0px 3px;
-    text-shadow:0 1px 0 #fff;
+    font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;
+    border: solid 1px #d8d8d8;
+    background-color: #f5f5f5;
+    padding: 0px 3px;
+    border-radius: 3px;
 }
 
 .wy-nav-content-wrap a {
@@ -69,7 +197,10 @@ body {
 }
 
 .colwidths-given th {
-    border: solid 1px #e8e8e8 !important;
+    border: solid 1px #d8d8d8 !important;
+}
+.colwidths-given td {
+    border: solid 1px #d8d8d8 !important;
 }
 
 /*handles single-tick inline code*/
@@ -85,14 +216,14 @@ body {
 .rst-content pre.literal-block, .rst-content div[class^="highlight"] pre, .rst-content .linenodiv pre {
     font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;
     font-size: 13px;
-    line-height: 1.5;
     overflow: visible;
     white-space: pre-wrap;
+    color: #000000;
 }
 
 .rst-content pre.literal-block, .rst-content div[class^='highlight'] {
-    border: 0;
-    background-color: #f5f5f5;
+    background-color: #f8f8f8;
+    border: solid 1px #e8e8e8;
 }
 
 /* This enables inline code to wrap. */
@@ -101,13 +232,24 @@ code, .rst-content tt, .rst-content code {
     padding: 2px 3px 1px;
     border-radius: 3px;
     font-size: 13px;
+    background-color: #ffffff;
+}
+
+/* use this added class for code blocks attached to bulleted list items */
+.highlight-top-margin {
+    margin-top: 20px !important;
+}
+
+/* change color of inline code block */
+span.pre {
+    color: #e01e5a;
 }
 
 .wy-body-for-nav blockquote {
     margin: 1em 0;
     padding-left: 1em;
     border-left: 4px solid #ddd;
-    color: #6a6a6a;
+    color: #000000;
 }
 
 /* Fix the unwanted top and bottom padding inside a nested bulleted/numbered list */
@@ -137,8 +279,10 @@ code, .rst-content tt, .rst-content code {
     line-height: 24px;
 }
 
-.with-border {
-    border: solid 1px #cccccc;
+/* fix extra vertical spacing in page toctree */
+.rst-content .toctree-wrapper ul li ul, article ul li ul {
+    margin-top: 0;
+    margin-bottom: 0;
 }
 
 /* this is used by the genindex added via layout.html (see source/_templates/) to sidebar toc */
@@ -153,9 +297,14 @@ code, .rst-content tt, .rst-content code {
 }
 
 .toc-index-div {
-    border-top: solid 1px #666666;
+    border-top: solid 1px #000000;
     margin-top: 10px;
-    padding-top: 10px;
+    padding-top: 5px;
+}
+
+.indextable ul li {
+    font-size: 14px;
+    margin-bottom: 5px;
 }
 
 /* The next 2 fix the poor vertical spacing in genindex.html (the alphabetized index) */
@@ -164,21 +313,41 @@ code, .rst-content tt, .rst-content code {
 }
 
 div.genindex-jumpbox {
-    margin-bottom: 20px;
+    margin-bottom: 10px;
 }
 
-/* This applies to a 'figure' -- an 'image' with 'caption' and optional 'legend' */
-/* See, e.g., https://docutils.sourceforge.io/docs/ref/rst/directives.html#figure */
-.legend p {
-    font-size: 14px;
-    margin-bottom: 0px;
-    padding-bottom: 0px;
+/* rst image classes */
+
+.clear-both {
+    clear: both;
+  }
+
+.float-left {
+    float: left;
+    margin-right: 20px;
+}
+
+img {
+    border: solid 1px #e8e8e8;
+}
+
+/* These are custom and need to be defined in conf.py to access in all pages, e.g., '.. role:: red' */
+.img-title {
     color: #000000;
+    /* neither padding nor margin works for vertical spacing bc it's a span -- line-height does, sort of */
+    line-height: 3.0;
     font-style: italic;
+    font-weight: 600;
 }
 
-/* inserting figure into bulleted list has 0 margin at top and too much (24px) at bottom */
-.rst-content div.figure {
-    margin-top: 10px;
-    margin-bottom: 5px;
-}
\ No newline at end of file
+.img-title-para {
+    color: #000000;
+    margin-top: 20px;
+    margin-bottom: 0px;
+    font-style: italic;
+    font-weight: 500;
+}
+
+.red {
+    color: red;
+}
diff --git a/docs/source/_templates/layout.html b/docs/source/_templates/layout.html
deleted file mode 100644
index 1b258dc4..00000000
--- a/docs/source/_templates/layout.html
+++ /dev/null
@@ -1,8 +0,0 @@
-{% extends "!layout.html" %}
-
-  {% block menu %}
-    {{ super() }}
-    
- Index -
- {% endblock %} \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index 8d5c737b..7d2a160c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -18,13 +18,11 @@ # -- Project information ----------------------------------------------------- project = 'ScanCode Workbench Documentation' -copyright = '2020 nexB Inc.' -author = 'nexB Inc.' - -version = '0.0.1' -# The full version, including alpha/beta/rc tags -release = version - +copyright = 'nexB Inc. and others' +author = 'nexB Inc. and others' +github_user = "nexB" +github_repo = "scancode-workbench" +github_branch = "update/docs" # -- General configuration --------------------------------------------------- @@ -32,17 +30,32 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ - 'sphinx.ext.intersphinx' + "sphinx.ext.intersphinx", + 'sphinx_rtd_theme', + "sphinx_rtd_dark_mode", + "sphinx_reredirects", + "sphinx.ext.extlinks", + "sphinx_copybutton", ] -master_doc = 'index' + +# Redirects for olds pages +# See https://documatt.gitlab.io/sphinx-reredirects/usage.html +redirects = {} + +# This points to aboutcode.readthedocs.io +# In case of "undefined label" ERRORS check docs on intersphinx to troubleshoot +# Link was created at commit - https://github.com/nexB/aboutcode/commit/faea9fcf3248f8f198844fe34d43833224ac4a83 intersphinx_mapping = { + "aboutcode": ("https://aboutcode.readthedocs.io/en/latest/", None), 'scancode-toolkit': ('https://scancode-toolkit.readthedocs.io/en/latest/', None), } +default_dark_mode = False + # Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] +templates_path = ["_templates"] # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. @@ -55,35 +68,55 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'sphinx_rtd_theme' +html_theme = "sphinx_rtd_theme" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +html_static_path = ["_static"] + +master_doc = "index" html_context = { - 'css_files': [ - '_static/theme_overrides.css', # override wide tables in RTD theme - ], "display_github": True, - "github_user": "nexB", - "github_repo": "scancode-workbench", - "github_version": "develop", # branch + "github_user": github_user, + "github_repo": github_repo, + "github_version": github_branch, # branch "conf_py_path": "/docs/source/", # path in the checkout to the docs root - } - -# If false, no index is generated. -# -# html_use_index = True +} -# If true, the index is split into individual pages for each letter. -# -# html_split_index = False +html_css_files = ["_static/theme_overrides.css"] -# If true, links to the reST sources are added to the pages. -# -# html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. html_show_sphinx = True + +# Define CSS and HTML abbreviations used in .rst files. These are examples. +# .. role:: is used to refer to styles defined in _static/theme_overrides.css and is used like this: :red:`text` +rst_prolog = """ +.. |psf| replace:: Python Software Foundation + +.. # define a hard line break for HTML +.. |br| raw:: html + +
+ +.. role:: red + +.. role:: img-title + +.. role:: img-title-para + +""" + +# Define reusable URLs using extlinks +extlinks = { + 'github_repo': (f"https://github.com/{github_user}/{github_repo}/%s", '%s'), + 'scan_samples': (f"https://github.com/{github_user}/{github_repo}/blob/{github_branch}/samples/%s", '%s'), +} + +# -- Options for LaTeX output ------------------------------------------------- + +latex_elements = { + 'classoptions': ',openany,oneside' +} diff --git a/docs/source/contribute/building.rst b/docs/source/contribute/building.rst index a6dbe73b..ed9c0b89 100644 --- a/docs/source/contribute/building.rst +++ b/docs/source/contribute/building.rst @@ -7,27 +7,21 @@ Clone, Install, Build and Run ============================= -You'll need `Node.js `__ (which comes with `npm `__) installed on your computer in order to build this app. (See below for a list of platform-specific requirements.) Then, from your command line: +You'll need `Node.js `__ (which comes with `npm `__) installed on your computer in order to build this app. (See below for a list of platform-specific requirements.) Then, from your command line: -.. code-block:: none +.. code-block:: bash # Clone this repository - $ git clone https://github.com/nexB/scancode-workbench.git + git clone https://github.com/nexB/scancode-workbench.git # Go into the repository - $ cd scancode-workbench - - # Install dependencies and run the app - $ npm install + cd scancode-workbench - # Rebuild native Node.js modules against the app version of Node.js - # MacOS, Linux and Git Bash on Windows - $ $(npm bin)/electron-rebuild - # Windows except for Git Bash - > .\node_modules\.bin\electron-rebuild.cmd + # Install dependencies and run the app (Native dependencies are handled automatically) + npm install # Run the app - $ npm start + npm start Building Requirements ===================== @@ -35,53 +29,82 @@ Building Requirements Linux ----- -- Python 3.7 -- `Node.js version `_ 6.x or later -- npm 3.10.x or later but <= 5.2.0 (run ``npm install npm@5.2.0 -g``) +- `Python `__ v3.7 or later +- `Node.js `__ 14.x or later +- `npm `__ v6.14.4 or later + +.. include:: ../rst_snippets/centos-note.rst MacOS ----- -- Python 3.7 -- `Node.js `_ >=6.x or later but <=8.9.4 -- npm 3.10.x or later but <= 5.2.0 (run ``npm install npm@5.2.0 -g``) -- Command Line Tools for `Xcode `_ - (run ``xcode-select --install`` to install) +- `Python `__ v3.7 or later +- `Node.js `__ 14.x or later +- `npm `__ v6.14.4 or later +- Command Line Tools for `Xcode `_ + Install using: + + .. code-block:: bash + + xcode-select --install Windows ------- -- `Node.js `_ 6.x or later -- npm 3.10.x or later but <= 5.2.0 (``run npm install npm@5.2.0 -g``) -- Python v3.7.x +- `Python `__ v3.7 or later - * Make sure your Python path is set. To verify, open a command prompt and type - ``python --version``. Then, the version of python will be displayed. + * Make sure your Python path is set. To verify, open a command prompt and see the python version: -- Visual C++ Build Environment: + .. code-block:: bash - * Either: + python --version - - Option 1: Install `Visual C++ Build Tools 2015 `_ - (or modify an existing installation) and select Common Tools for Visual C++ during setup. - This also works with the free Community and Express for Desktop editions. - - Option 2: `Visual Studio 2015 `_ (Community Edition or better) +- `Node.js `__ v14.x or later +- `npm `__ v6.14.4 or later - * Note: Windows 7 requires `.NET Framework 4.5.1 `_ - * Launch cmd, ``npm config set msvs_version 2015`` Release Instructions ==================== -You can build a ``dist`` directory containing executables for any one of three target platforms +You can build a ``dist`` directory and a ``tar/zip`` file containing executable for your platform by running: -.. code-block:: none +.. code-block:: bash - $ python build.py + npm run publish After building is done, you can find ScanCode-Workbench under -``dist/ScanCode-Workbench--x64-``. Archives (``tar.gz`` and ``.zip``) -are also built. +``dist/ScanCode-Workbench---``. + +Archives are also built as: + - ``tar.gz`` - Linux / MacOS + - ``.zip`` - Windows .. Note:: A build for any of the three target platforms must be executed on the targeted platform. + +Building Documentation +====================== + +Create python environment, make docs + + +.. code-block:: none + + # Clone this repository + git clone https://github.com/nexB/scancode-workbench.git + + # Go into the docs directory + cd docs/ + + # Setup virtual environment for python dependencies + python3 -m venv venv + source venv/bin/activate + + # Install dependencies + pip install -r requirements.txt + + # Build Documentation + make html + + # Run Documentation server + make docs diff --git a/docs/source/contribute/community-channels.rst b/docs/source/contribute/community-channels.rst index 39b8cefc..bd5610b2 100644 --- a/docs/source/contribute/community-channels.rst +++ b/docs/source/contribute/community-channels.rst @@ -4,6 +4,4 @@ If you have a question, a suggestion or find a bug, `enter an issue `__. -For questions and chats, you can join the Gitter channel at https://gitter.im/aboutcode-org/discuss - -:guilabel:`[more to come]` +For questions and chats, you can join the Gitter channel at ``_ diff --git a/docs/source/contribute/contributing-code.rst b/docs/source/contribute/contributing-code.rst index 6a60c46b..5adf4b6f 100644 --- a/docs/source/contribute/contributing-code.rst +++ b/docs/source/contribute/contributing-code.rst @@ -2,4 +2,8 @@ :index:`Contributing Code` ========================== -:guilabel:`[to come]` +- Contributions comes as bugs/questions/issues and as pull requests. +- Source code and runtime data are in the ``src/`` directory. +- Test code and test data are in the ``tests/`` directory. +- We use DCO signoff in commit messages, like Linux does. + diff --git a/docs/source/contribute/index.rst b/docs/source/contribute/index.rst index 5107e9bd..52d242bf 100644 --- a/docs/source/contribute/index.rst +++ b/docs/source/contribute/index.rst @@ -4,8 +4,6 @@ :index:`Contribute` =================== -:guilabel:`[Intro to come.]` - .. toctree:: :maxdepth: 3 diff --git a/docs/source/contribute/reporting-issues.rst b/docs/source/contribute/reporting-issues.rst index 890c407c..15ca81dd 100644 --- a/docs/source/contribute/reporting-issues.rst +++ b/docs/source/contribute/reporting-issues.rst @@ -3,3 +3,5 @@ ========================= If you want to report an issue in case you find a bug or want to suggest a new feature, `report here `__. + +For questions and chats, you can join the Gitter channel at https://gitter.im/aboutcode-org/discuss diff --git a/docs/source/contribute/testing.rst b/docs/source/contribute/testing.rst index 26e0cd0e..0086286f 100644 --- a/docs/source/contribute/testing.rst +++ b/docs/source/contribute/testing.rst @@ -8,4 +8,7 @@ Test ABCM functionality using: $ npm test -:guilabel:`[Maybe add details about location of tests, examples of how to create?]` +Tests are written in folder ``tests/`` utilising the sample scans in ``tests/test-scans`` + +- ``file.test.ts`` - Test assertions +- ``file.test.data.ts`` - Data samples per test file diff --git a/docs/source/definitions.rst b/docs/source/definitions.rst new file mode 100644 index 00000000..8403e1c2 --- /dev/null +++ b/docs/source/definitions.rst @@ -0,0 +1 @@ +.. |purl_description| replace:: A package URL is used to identify and locate a software package in a mostly universal and uniform way across programing languages, package managers, packaging conventions, tools, APIs and databases. diff --git a/docs/source/getting-started/data/initial_load_getting_started.png b/docs/source/getting-started/data/initial_load_getting_started.png index 97e3bbf4..efdb32e8 100644 Binary files a/docs/source/getting-started/data/initial_load_getting_started.png and b/docs/source/getting-started/data/initial_load_getting_started.png differ diff --git a/docs/source/getting-started/index.rst b/docs/source/getting-started/index.rst index 47e20399..c6f8a06b 100644 --- a/docs/source/getting-started/index.rst +++ b/docs/source/getting-started/index.rst @@ -7,12 +7,17 @@ Download and Install ======================= -- You can download the latest ScanCode Workbench release for your Windows, OS X or Linux - operating system from the `ScanCode Workbench releases page `__. - Once downloaded, you'll find the ScanCode Workbench executable in the - ``ScanCode-Workbench--x64-`` folder. +- ScanCode Workbench is available for Windows, macOS and Linux - + `ScanCode Workbench releases `__. + +- + Once downloaded, you'll find the ScanCode Workbench executable inside the + ``ScanCode Workbench--`` folder. + On Windows 10, for example, the executable will be named `ScanCode-Workbench.exe`. +.. include:: ../rst_snippets/centos-note.rst + - If you're interested in digging into the code, you can also use ScanCode Workbench by cloning the GitHub repository and building it yourself -- see the :ref:`Contribute/Building` section for details. @@ -20,15 +25,19 @@ Download and Install ScanCode Workbench-ScanCode Toolkit Compatibility ================================================= -- ScanCode Workbench >= v3.1.1 is only compatible with scans from ScanCode v3.1.1 and above - that have been run with the ScanCode Toolkit ``-i`` option. +- ScanCode Workbench v4.x is only compatible with scans from ScanCode v32.x and above + that have been run with ScanCode Toolkit. + +- You would typically create your scan with the following command:: - - A list of available ScanCode Toolkit options is available in the ScanCode Toolkit - documentation: - :doc:`scancode-toolkit:tutorials/how_to_set_what_will_be_detected_in_a_scan`. + scancode -clipeu --json-pp -- You would typically create your scan with the following command: - ``./scancode -clipeu `` +.. Note:: + A list of available ScanCode Toolkit options is available in the ScanCode Toolkit + documentation: + :doc:`scancode-toolkit:tutorials/how_to_set_what_will_be_detected_in_a_scan`. + Also see :doc:`scancode-toolkit:tutorials/how_to_run_a_scan` for more details + on running a ScanCode Toolkit scan. Open ScanCode Workbench and Load a ScanCode Toolkit Scan ======================================================== @@ -47,7 +56,7 @@ Open ScanCode Workbench and Load a ScanCode Toolkit Scan - Keep or modify the default SQLite filename and click :kbd:`Save`. - You're now looking at your scan data displayed in the Table View -- the Table View itself is on - the right, and the Directory Tree (which is visible in all views) is on the left. + the right, and the Directory Tree (shown in resource level views) is on the left. .. figure:: data/initial_load_getting_started.png :class: with-border diff --git a/docs/source/how-to-guides/explore-your-data/data/chart-summary-attribute.gif b/docs/source/how-to-guides/explore-your-data/data/chart-summary-attribute.gif new file mode 100644 index 00000000..97e6e6a4 Binary files /dev/null and b/docs/source/how-to-guides/explore-your-data/data/chart-summary-attribute.gif differ diff --git a/docs/source/how-to-guides/explore-your-data/data/chart-summary-filetree.gif b/docs/source/how-to-guides/explore-your-data/data/chart-summary-filetree.gif new file mode 100644 index 00000000..390bf70a Binary files /dev/null and b/docs/source/how-to-guides/explore-your-data/data/chart-summary-filetree.gif differ diff --git a/docs/source/how-to-guides/explore-your-data/data/license-explorer-search.gif b/docs/source/how-to-guides/explore-your-data/data/license-explorer-search.gif new file mode 100644 index 00000000..353b47c5 Binary files /dev/null and b/docs/source/how-to-guides/explore-your-data/data/license-explorer-search.gif differ diff --git a/docs/source/how-to-guides/explore-your-data/data/license-explorer-select.gif b/docs/source/how-to-guides/explore-your-data/data/license-explorer-select.gif new file mode 100644 index 00000000..604024f8 Binary files /dev/null and b/docs/source/how-to-guides/explore-your-data/data/license-explorer-select.gif differ diff --git a/docs/source/how-to-guides/explore-your-data/data/license-explorer-table.gif b/docs/source/how-to-guides/explore-your-data/data/license-explorer-table.gif new file mode 100644 index 00000000..63161976 Binary files /dev/null and b/docs/source/how-to-guides/explore-your-data/data/license-explorer-table.gif differ diff --git a/docs/source/how-to-guides/explore-your-data/data/package-explorer-deps.gif b/docs/source/how-to-guides/explore-your-data/data/package-explorer-deps.gif new file mode 100644 index 00000000..e0cfcfab Binary files /dev/null and b/docs/source/how-to-guides/explore-your-data/data/package-explorer-deps.gif differ diff --git a/docs/source/how-to-guides/explore-your-data/data/package-explorer-filter.gif b/docs/source/how-to-guides/explore-your-data/data/package-explorer-filter.gif new file mode 100644 index 00000000..96c730d9 Binary files /dev/null and b/docs/source/how-to-guides/explore-your-data/data/package-explorer-filter.gif differ diff --git a/docs/source/how-to-guides/explore-your-data/data/package-explorer-select.gif b/docs/source/how-to-guides/explore-your-data/data/package-explorer-select.gif new file mode 100644 index 00000000..f0c241ab Binary files /dev/null and b/docs/source/how-to-guides/explore-your-data/data/package-explorer-select.gif differ diff --git a/docs/source/how-to-guides/explore-your-data/data/scancode-workbench-chart-summary-filter.gif b/docs/source/how-to-guides/explore-your-data/data/scancode-workbench-chart-summary-filter.gif deleted file mode 100644 index aad3cc96..00000000 Binary files a/docs/source/how-to-guides/explore-your-data/data/scancode-workbench-chart-summary-filter.gif and /dev/null differ diff --git a/docs/source/how-to-guides/explore-your-data/data/scancode-workbench-chart-summary.gif b/docs/source/how-to-guides/explore-your-data/data/scancode-workbench-chart-summary.gif deleted file mode 100644 index be925711..00000000 Binary files a/docs/source/how-to-guides/explore-your-data/data/scancode-workbench-chart-summary.gif and /dev/null differ diff --git a/docs/source/how-to-guides/explore-your-data/data/tableview-column-groups.gif b/docs/source/how-to-guides/explore-your-data/data/tableview-column-groups.gif new file mode 100644 index 00000000..a9c60bd2 Binary files /dev/null and b/docs/source/how-to-guides/explore-your-data/data/tableview-column-groups.gif differ diff --git a/docs/source/how-to-guides/explore-your-data/data/tableview-path.gif b/docs/source/how-to-guides/explore-your-data/data/tableview-path.gif new file mode 100644 index 00000000..a537a826 Binary files /dev/null and b/docs/source/how-to-guides/explore-your-data/data/tableview-path.gif differ diff --git a/docs/source/how-to-guides/explore-your-data/index.rst b/docs/source/how-to-guides/explore-your-data/index.rst index fed6fa7f..889e0cca 100644 --- a/docs/source/how-to-guides/explore-your-data/index.rst +++ b/docs/source/how-to-guides/explore-your-data/index.rst @@ -5,6 +5,7 @@ .. toctree:: :maxdepth: 3 + navigate-tableview + navigate-license-explorer + navigate-package-explorer navigate-chart-summary-view - -:guilabel:`[to come]` diff --git a/docs/source/how-to-guides/explore-your-data/navigate-chart-summary-view.rst b/docs/source/how-to-guides/explore-your-data/navigate-chart-summary-view.rst index 14119ac2..1b0c6b98 100644 --- a/docs/source/how-to-guides/explore-your-data/navigate-chart-summary-view.rst +++ b/docs/source/how-to-guides/explore-your-data/navigate-chart-summary-view.rst @@ -2,24 +2,23 @@ :index:`How-To: Navigate the Chart Summary View` ================================================ -Display the view -================ +Display the Chart Summary view +==================================== Once you have a SQLite file loaded into ScanCode Workbench, displaying the Chart Summary View is easy: -#. Select a file or directory in the Tree View on the left. -#. Click the chart icon in the sidebar or open the :kbd:`View` menu and select - :kbd:`Chart Summary View` (keyboard shortcut: :kbd:`Ctrl+Shift+D` or - :kbd:`⌘+Shift+D`). +* Select a file or directory in the Tree View on the left. +* + Click on `Chart Summary View` in the sidebar or open the + :kbd:`View` menu and select :kbd:`Chart Summary View` + (keyboard shortcut: :kbd:`Ctrl+Shift+D` or :kbd:`⌘+Shift+D`). Select an attribute =================== -.. figure:: data/scancode-workbench-chart-summary.gif - Use the dropdown at the top of the view to select the attribute you want to -examine (e.g., ``Copyright Statements``, ``License Key``). These attribute values +examine (e.g., ``Copyright Statements``, ``Detected License expression``). These attribute values are detected from ScanCode, and can also be viewed in the Table View. When you select an attribute, the Chart Summary View will automatically refresh @@ -29,11 +28,17 @@ number of times it occurs in the codebase. You can also see the value for a particular entry in the bar chart in a tooltip that appears when you move your cursor over the text on the left or the bar on the right. +.. figure:: data/chart-summary-attribute.gif + Filter Chart Summary ==================== -.. figure:: data/scancode-workbench-chart-summary-filter.gif - You can further filter the summary results by choosing a specific directory or file in the Tree View. The chart will then only show results for that selected directory or file. + +.. figure:: data/chart-summary-filetree.gif + +For entire UI reference, Read :ref:`chart-summary-view` + +.. include:: ../../rst_snippets/scans-used.rst diff --git a/docs/source/how-to-guides/explore-your-data/navigate-license-explorer.rst b/docs/source/how-to-guides/explore-your-data/navigate-license-explorer.rst new file mode 100644 index 00000000..a9bb2c13 --- /dev/null +++ b/docs/source/how-to-guides/explore-your-data/navigate-license-explorer.rst @@ -0,0 +1,41 @@ +==================================================== +:index:`How-To: Navigate the License Explorer View` +==================================================== + +Display the License Explorer view +=================================== + +Once you have a SQLite file loaded into ScanCode Workbench, + +Click on `License Explorer` in the sidebar or open the :kbd:`View` menu +and select :kbd:`License Explorer` + + +Select a License +========================= + +On the left pane, Licenses are shown in two categories: `License Detections` & `License clues`. +You can select any of these licenses & more detailed information about +that license will be reflected on the right + +.. figure:: data/license-explorer-select.gif + +Search Licenses +==================== + +You can search for any license detecttion / clue by typing in the search box on the top-left + +.. figure:: data/license-explorer-search.gif + +Matches & File regions table +=================================== + +For the selected license, you can view the matches resulting into the +detection and the file regions where the license was detected. +You can click on the data file path to view that path in Tableview + +.. figure:: data/license-explorer-table.gif + +For entire UI reference, Read :ref:`license-explorer` + +.. include:: ../../rst_snippets/scans-used.rst diff --git a/docs/source/how-to-guides/explore-your-data/navigate-package-explorer.rst b/docs/source/how-to-guides/explore-your-data/navigate-package-explorer.rst new file mode 100644 index 00000000..a8414c2d --- /dev/null +++ b/docs/source/how-to-guides/explore-your-data/navigate-package-explorer.rst @@ -0,0 +1,56 @@ +==================================================== +:index:`How-To: Navigate the Package Explorer View` +==================================================== + +.. include:: ../../definitions.rst + +Display the Package Explorer view +=================================== + +Packages are uniquely identified using PURLs. |purl_description| + +Once you have a SQLite file loaded into ScanCode Workbench, + +Click on `Package Explorer` in the sidebar or open the :kbd:`View` menu +and select :kbd:`Package Explorer` + +Select a Package or Dependency +==================================== + +On the left pane, Packages are shown in a hierarchical manner as +`Package Type` > `Package` > `Dependencies` +Upon selecting a Package / Dependency, details of the entire entity is shown on the right. + +For a Package, information like +`PURL, namespace, Declared license expression, Dependencies table, etc` are shown. + +For a Dependency, information like `Scope, Data file, Data source ID, etc` are shown. + +.. figure:: data/package-explorer-select.gif + + +Filters +==================== + +You can filter the packages / dependencies by their data sources and/or +dependency flags by selecting filter values in the top-left + +.. figure:: data/package-explorer-filter.gif + +Dependencies table +======================== + +When a package is selected, the dependencies for that package are shown +in a table in the details pane showing Dependency information like +`PURL, Scope, Data source ID, etc` + +You can sort the table as per convenience. + +You can click on the :kbd:`Data file path` to see that file in the TableView + +.. figure:: data/package-explorer-deps.gif + + +For entire UI reference, See :ref:`package-explorer` + +.. include:: ../../rst_snippets/scans-used.rst diff --git a/docs/source/how-to-guides/explore-your-data/navigate-tableview.rst b/docs/source/how-to-guides/explore-your-data/navigate-tableview.rst new file mode 100644 index 00000000..e74d7fa8 --- /dev/null +++ b/docs/source/how-to-guides/explore-your-data/navigate-tableview.rst @@ -0,0 +1,36 @@ +================================================ +:index:`How-To: Navigate the Table View` +================================================ + +Display the Table view +============================ + +Once you have a SQLite file loaded into ScanCode Workbench, you're +automatically redirected to the Tableview. +To navigate to Tableview from other views you can click on `Table View` +in the sidebar or open the :kbd:`View` menu and select :kbd:`Table View` + +Click on `Package Explorer` in the sidebar or open the :kbd:`View` +menu and select :kbd:`Table View` + +Select a path +======================== + +You can collapse/expand the FileTree on the left and select a file/directory. +Only the files under this path will be visible in the tableview + +.. figure:: data/tableview-path.gif + + +Select Preset columns +========================== + +You can select one of the available column groups, grouped based on their +nature such as ``Copyright Cols``, ``Origin Cols``, ``License Cols`` + +.. figure:: data/tableview-column-groups.gif + + +For entire UI reference, Read :ref:`table-view` + +.. include:: ../../rst_snippets/scans-used.rst diff --git a/docs/source/how-to-guides/export-json-records/index.rst b/docs/source/how-to-guides/export-json-records/index.rst deleted file mode 100644 index bfdb30ff..00000000 --- a/docs/source/how-to-guides/export-json-records/index.rst +++ /dev/null @@ -1,13 +0,0 @@ -============================ -:index:`Export JSON Records` -============================ - -Export a JSON file -================== - -* To export a JSON file: - - * Select the :kbd:`File` menu and then select :kbd:`Export JSON File` (keyboard shortcut: - :kbd:`Ctrl+E` or :kbd:`⌘+E`). - * In the dialog window that opens, add a name for the file, navigate to the directory in which - you want to save the file and click :kbd:`Save`. diff --git a/docs/source/how-to-guides/index.rst b/docs/source/how-to-guides/index.rst index 0d6a8b87..d15b83b3 100644 --- a/docs/source/how-to-guides/index.rst +++ b/docs/source/how-to-guides/index.rst @@ -4,20 +4,16 @@ :index:`How-To Guides` ====================== -The ScanCode Workbench How-To Guides will walk you through loading and analyzing -a ``-clipeu`` scan of ``e2fsprogs-1.45.6.tar.gz``. +The ScanCode Workbench How-To Guides will walk you through loading and analyzing a `-clipeu` scan. +The guides are not meant to be exhaustive, but rather to give you a taste of +what you can do with the Workbench. -.. Note:: If you'd like to follow along, you can download a copy of the ``e2fsprogs-1.45.6`` - package from `SourceForge `__, - run a ``-clipeu`` scan with `ScanCode Toolkit `__, - load the ``.json`` output into ScanCode Workbench and work your way through the How-To Guides. +For full set of features, please refer to the :ref:`ui-reference`. .. toctree:: :maxdepth: 3 load-your-data/index - lookup-scan-version/index + lookup-scan-info/index explore-your-data/index - export-json-records/index troubleshooting/index - special-topics/index diff --git a/docs/source/how-to-guides/load-your-data/data/creating-database.png b/docs/source/how-to-guides/load-your-data/data/creating-database.png deleted file mode 100644 index 9a94acb9..00000000 Binary files a/docs/source/how-to-guides/load-your-data/data/creating-database.png and /dev/null differ diff --git a/docs/source/how-to-guides/load-your-data/data/import-json-cropped.png b/docs/source/how-to-guides/load-your-data/data/import-json-cropped.png index 1a882645..8f00ec08 100644 Binary files a/docs/source/how-to-guides/load-your-data/data/import-json-cropped.png and b/docs/source/how-to-guides/load-your-data/data/import-json-cropped.png differ diff --git a/docs/source/how-to-guides/load-your-data/data/initial-load.png b/docs/source/how-to-guides/load-your-data/data/initial-load.png new file mode 100644 index 00000000..1f370382 Binary files /dev/null and b/docs/source/how-to-guides/load-your-data/data/initial-load.png differ diff --git a/docs/source/how-to-guides/load-your-data/data/initial_load.png b/docs/source/how-to-guides/load-your-data/data/initial_load.png deleted file mode 100644 index 97e3bbf4..00000000 Binary files a/docs/source/how-to-guides/load-your-data/data/initial_load.png and /dev/null differ diff --git a/docs/source/how-to-guides/load-your-data/data/open-sqlite-cropped.png b/docs/source/how-to-guides/load-your-data/data/open-sqlite-cropped.png deleted file mode 100644 index be49f3a4..00000000 Binary files a/docs/source/how-to-guides/load-your-data/data/open-sqlite-cropped.png and /dev/null differ diff --git a/docs/source/how-to-guides/load-your-data/data/open-sqlite-quickaction.png b/docs/source/how-to-guides/load-your-data/data/open-sqlite-quickaction.png new file mode 100644 index 00000000..adab449c Binary files /dev/null and b/docs/source/how-to-guides/load-your-data/data/open-sqlite-quickaction.png differ diff --git a/docs/source/how-to-guides/load-your-data/data/open-sqlite.png b/docs/source/how-to-guides/load-your-data/data/open-sqlite.png index 9d3e9ec3..2dc15e2f 100644 Binary files a/docs/source/how-to-guides/load-your-data/data/open-sqlite.png and b/docs/source/how-to-guides/load-your-data/data/open-sqlite.png differ diff --git a/docs/source/how-to-guides/load-your-data/data/processing-scan.png b/docs/source/how-to-guides/load-your-data/data/processing-scan.png new file mode 100644 index 00000000..d3d9a748 Binary files /dev/null and b/docs/source/how-to-guides/load-your-data/data/processing-scan.png differ diff --git a/docs/source/how-to-guides/load-your-data/data/save-as-sqlite-cropped.png b/docs/source/how-to-guides/load-your-data/data/save-as-sqlite-cropped.png deleted file mode 100644 index 94998ae5..00000000 Binary files a/docs/source/how-to-guides/load-your-data/data/save-as-sqlite-cropped.png and /dev/null differ diff --git a/docs/source/how-to-guides/load-your-data/data/save-as-sqlite.png b/docs/source/how-to-guides/load-your-data/data/save-as-sqlite.png deleted file mode 100644 index b4845522..00000000 Binary files a/docs/source/how-to-guides/load-your-data/data/save-as-sqlite.png and /dev/null differ diff --git a/docs/source/how-to-guides/load-your-data/data/save-sqlite-quickaction.png b/docs/source/how-to-guides/load-your-data/data/save-sqlite-quickaction.png new file mode 100644 index 00000000..e4883728 Binary files /dev/null and b/docs/source/how-to-guides/load-your-data/data/save-sqlite-quickaction.png differ diff --git a/docs/source/how-to-guides/load-your-data/data/save-sqlite.png b/docs/source/how-to-guides/load-your-data/data/save-sqlite.png new file mode 100644 index 00000000..0a8c3a0f Binary files /dev/null and b/docs/source/how-to-guides/load-your-data/data/save-sqlite.png differ diff --git a/docs/source/how-to-guides/load-your-data/import-json.rst b/docs/source/how-to-guides/load-your-data/import-json.rst index 835f7cfe..d26175b0 100644 --- a/docs/source/how-to-guides/load-your-data/import-json.rst +++ b/docs/source/how-to-guides/load-your-data/import-json.rst @@ -1,19 +1,27 @@ -============================================== +============================= :index:`Import a JSON File` -============================================== +============================= To import a ScanCode JSON file: +We've provided a set of sample scans that you can quickly review in ScanCode Workbench in order +to get a sense of its functionality and the types of information captured by a scan. The samples +are located at `https://github.com/nexB/scancode-workbench/tree/develop/samples `_. + + * Open the :kbd:`File` menu and select :kbd:`Import JSON File` (keyboard shortcut: :kbd:`Ctrl+I` or :kbd:`⌘+I`). .. figure:: data/import-json-cropped.png :class: with-border - :width: 600px + :width: 300px .. - Import a JSON scan file. + Click Import a JSON scan file. + + Or + Simply click on the Import ScanCode JSON button * In the dialog window that opens, navigate to the JSON file you want to import, select the file and click :kbd:`Open`. @@ -21,9 +29,9 @@ To import a ScanCode JSON file: database file. Add a filename, select the folder in which you want to save the SQLite database file, and click :kbd:`Save`. * ScanCode Workbench will then create a SQLite database file from your JSON file, indicated by - the status message ``Creating Database ...`` + the status message ``Processing scan - `` - .. figure:: data/creating-database.png + .. figure:: data/processing-scan.png :class: with-border :width: 600px @@ -35,7 +43,7 @@ To import a ScanCode JSON file: (the **Directory Tree**) and, to the right of the tree, a table (the **Table View**) displaying provenance information generated by ScanCode. - .. figure:: data/initial_load.png + .. figure:: data/initial-load.png :class: with-border :width: 600px @@ -43,6 +51,4 @@ To import a ScanCode JSON file: The SQLite version of your JSON scan is ready for your analysis. -We've provided a set of sample scans that you can quickly review in ScanCode Workbench in order -to get a sense of its functionality and the types of information captured by a scan. The samples -are located at `https://github.com/nexB/scancode-workbench/tree/develop/samples `_. +.. include:: ../../rst_snippets/scans-used.rst diff --git a/docs/source/how-to-guides/load-your-data/open-save-sqlite-file.rst b/docs/source/how-to-guides/load-your-data/open-save-sqlite-file.rst index 801e430e..19351323 100644 --- a/docs/source/how-to-guides/load-your-data/open-save-sqlite-file.rst +++ b/docs/source/how-to-guides/load-your-data/open-save-sqlite-file.rst @@ -1,37 +1,49 @@ ==================================== -:index:`Open and Save a SQLite File` +:index:`Open or Save a SQLite File` ==================================== Open a SQLite File ================== -Once you've imported your JSON scan and saved it as SQLite, you'll continue your -review and analysis work solely in the SQLite file. +Once you've imported your JSON scan it is parsed & saved as a SQLite file, +which can be later imported quickly compared to opening json scan again * To open a SQLite File: - .. figure:: data/open-sqlite-cropped.png + .. figure:: data/open-sqlite.png :class: with-border - :width: 250px + :width: 300px + + .. figure:: data/open-sqlite-quickaction.png + :class: with-border + :width: 300px .. Open a SQLite file. * Select the :kbd:`File` menu and then select :kbd:`Open SQLite File` (keyboard shortcut: - :kbd:`Ctrl+O` or :kbd:`⌘+O`). + :kbd:`Ctrl+O` or :kbd:`⌘+O`) + + | Or Simply Click on :kbd:`Open SQLite file` quick action button. + * In the dialog window that opens, navigate to the SQLite file you want to open, select the file and click :kbd:`Open`. Save as a New SQLite File ========================= -There may be times when you need to preserve the current state of your work and continue -working in a separate file. No problem -- just save your work as a new SQLite file. +There may be times when you need to save your work as a new SQLite file. * To save as a new SQLite file: - .. figure:: data/save-as-sqlite-cropped.png + .. figure:: data/save-sqlite.png + :class: with-border + :width: 300px + + OR + + .. figure:: data/save-sqlite-quickaction.png :class: with-border :width: 300px @@ -40,6 +52,9 @@ working in a separate file. No problem -- just save your work as a new SQLite f Save as new SQLite file. * Select the :kbd:`File` menu and then select :kbd:`Save As New SQLite File` (keyboard shortcut: - :kbd:`Ctrl+S` or :kbd:`⌘+S`). + :kbd:`Ctrl+S` or :kbd:`⌘+S`) + + | Or Simply click :kbd:`Save SQLite File` quick action button. + * In the dialog window that opens, add a name for the file, navigate to the directory in which you want to save the file and click :kbd:`Save`. diff --git a/docs/source/how-to-guides/lookup-scan-info/data/scan-info.gif b/docs/source/how-to-guides/lookup-scan-info/data/scan-info.gif new file mode 100644 index 00000000..9c8be4a9 Binary files /dev/null and b/docs/source/how-to-guides/lookup-scan-info/data/scan-info.gif differ diff --git a/docs/source/how-to-guides/lookup-scan-info/index.rst b/docs/source/how-to-guides/lookup-scan-info/index.rst new file mode 100644 index 00000000..70410488 --- /dev/null +++ b/docs/source/how-to-guides/lookup-scan-info/index.rst @@ -0,0 +1,19 @@ +======================================== +:index:`Look Up Your Scan information` +======================================== + +To view scan information: + +Hover to expand the sidebar with icons on the left. Click on Scan Information +or, open the :kbd:`View` menu and select :kbd:`Scan Info` + + .. figure:: data/scan-info.gif + :class: with-border + :width: 600px + + .. + +You can view various details about the scan like scan tool name & version, options, platform etc. +More detailed explanation about the view can be found at :ref:`scan-info` + +.. include:: ../../rst_snippets/scans-used.rst diff --git a/docs/source/how-to-guides/lookup-scan-version/index.rst b/docs/source/how-to-guides/lookup-scan-version/index.rst deleted file mode 100644 index a273631d..00000000 --- a/docs/source/how-to-guides/lookup-scan-version/index.rst +++ /dev/null @@ -1,5 +0,0 @@ -================================== -:index:`Look Up Your Scan Version` -================================== - -:guilabel:`[to come]` diff --git a/docs/source/how-to-guides/special-topics/data/policy-view.png b/docs/source/how-to-guides/special-topics/data/policy-view.png deleted file mode 100644 index 0e28a764..00000000 Binary files a/docs/source/how-to-guides/special-topics/data/policy-view.png and /dev/null differ diff --git a/docs/source/how-to-guides/special-topics/index.rst b/docs/source/how-to-guides/special-topics/index.rst deleted file mode 100644 index b2dda4b7..00000000 --- a/docs/source/how-to-guides/special-topics/index.rst +++ /dev/null @@ -1,10 +0,0 @@ -======================= -:index:`Special Topics` -======================= - -.. toctree:: - :maxdepth: 3 - - license-policy-support - -:guilabel:`[to come]` diff --git a/docs/source/how-to-guides/special-topics/license-policy-support.rst b/docs/source/how-to-guides/special-topics/license-policy-support.rst deleted file mode 100644 index 1fbec023..00000000 --- a/docs/source/how-to-guides/special-topics/license-policy-support.rst +++ /dev/null @@ -1,60 +0,0 @@ -============================================================= -:index:`How-To: Use License Policies with ScanCode Workbench` -============================================================= - -ScanCode Workbench now has basic support for tracking and viewing license policies that have been -applied to a `ScanCode Toolkit `__ scan. In order for -things to work, your initial scan must be run with the ``--license-policy`` option. For more -information, see the :ref:`license_policy_plugin` section of the ScanCode Toolkit ReadTheDocs. - -The basics -========== - -While the :ref:`license_policy_plugin` can be customized with any number of custom fields and -values, ScanCode Workbench currently only supports a pre-defined set of policy labels. - -.. list-table:: - :header-rows: 1 - - * - license_key - - label - * - scancode_license_key - - Approved License - * - scancode_license_key - - Prohibited License - * - scancode_license_key - - Recommended License - * - scancode_license_key - - Restricted License - -This means in order to take advantage of ScanCode Workbench's policy features, your -``license-policy.yml`` needs to have ``license_key`` and ``label`` fields at the very least. - -Additionally, in order to take advantage of policy visualizations, ``label`` values must be -one of the 4 above values: Approved License, Prohibited License, Recommended License or Restricted -License. Later versions of ScanCode Workbench will eventually evolve to support more dynamic policy -values. - -Here is a simple example of a valid ``license-policy.yml`` file:: - - license_policies: - - license_key: apache-2.0 - label: Approved License - - license_key: apache-1.1 - label: Prohibited License - - license_key: lgpl-2.1-plus - label: Recommended License - - license_key: cpl-1.0 - label: Restricted License - -After running a scan with that particular ``license-policy.yml`` file, viewing the scan in ScanCode -Workbench will look like the following: - -.. figure:: data/policy-view.png - -As you can see, files which have detected licenses that fall under a particular policy will be -shown in the JSTree view with specific icons. This way, you are able to quickly see what files -fall under a specific policy. - -Additionally, policy details can be found in the scan data view in their own column: License -Policy. This column has been added to both the "Origin" column set and "License info" column set. diff --git a/docs/source/how-to-guides/troubleshooting/check-for-errors.rst b/docs/source/how-to-guides/troubleshooting/check-for-errors.rst index b7da8f4d..36211213 100644 --- a/docs/source/how-to-guides/troubleshooting/check-for-errors.rst +++ b/docs/source/how-to-guides/troubleshooting/check-for-errors.rst @@ -9,7 +9,10 @@ provides details about the error and allows you to create an issue. :scale: 50 % If you can reproduce the error, use this approach to get the stack trace and report the issue. Open -the Developer Tools with ``Ctrl+Shift+I`` or ``Alt+Cmd+I``. From there, click the Console tab. -Include the error that is logged in the issue in a code block or a file attachment. +the Developer Tools by clicking ```View`` -> ``Toggle Developer Tools``. From there, click the +``Console`` tab. Include the error that is logged in the issue in a code block or a +file attachment. + +You can `Create an issue here `__. .. image:: data/developer-tools-error.png diff --git a/docs/source/how-to-guides/troubleshooting/index.rst b/docs/source/how-to-guides/troubleshooting/index.rst index 86e0fe34..6f17e205 100644 --- a/docs/source/how-to-guides/troubleshooting/index.rst +++ b/docs/source/how-to-guides/troubleshooting/index.rst @@ -6,5 +6,3 @@ :maxdepth: 3 check-for-errors - -:guilabel:`[to come]` diff --git a/docs/source/index.rst b/docs/source/index.rst index 7f1cf53c..e6e67800 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -12,6 +12,11 @@ Welcome to the documentation for ScanCode Workbench! getting-started/index how-to-guides/index ui-reference/index - technical-reference/index contribute/index license + +Indices and tables +================== + +* :ref:`genindex` +* :ref:`search` diff --git a/docs/source/overview/index.rst b/docs/source/overview/index.rst index f159eb26..cee2cc09 100644 --- a/docs/source/overview/index.rst +++ b/docs/source/overview/index.rst @@ -26,14 +26,28 @@ This documentation is organized in six sections: - The :ref:`ui-reference` section provides an overview of each of ScanCode Workbench's data views. -- The :ref:`technical-reference` section summarizes ScanCode Workbench's underlying technology - and platform support. - - The :ref:`contribute` section is intended for advanced users and contributors to ScanCode Workbench development. - The :ref:`license` section provides summary licensing information for ScanCode Workbench. +Underlying Technology +===================== + +- ScanCode Workbench is a cross-platform application built using the `Electron `__ framework that works on Windows, macOS and Linux operating systems. +- It uses + - `TypeScript `__ as the primary language. + - `React `__ for user interface. + - `Sequelize `__ ORM for database access. + - `Sqlite3 `__ for managing sqlite database. + +Platform Support +================ + +* Linux - ``x64`` +* Windows 10/11 - ``x64`` +* MacOS - ``x64``, ``arm64`` + Important Links =============== diff --git a/docs/source/rst_snippets/centos-note.rst b/docs/source/rst_snippets/centos-note.rst new file mode 100644 index 00000000..9a0629b6 --- /dev/null +++ b/docs/source/rst_snippets/centos-note.rst @@ -0,0 +1,20 @@ +.. Note:: + For CentOS (or linux distros without the new libstdc++), follow these steps: + + - Install the new libstdc++ library: + + .. code-block:: bash + + yum provides libstdc++ + + - Update LD_LIBRARY_PATH: + + .. code-block:: bash + + export LD_LIBRARY_PATH="/usr/local/lib64/:$LD_LIBRARY_PATH" + + - Run the application with ``no-sandbox`` option: + + .. code-block:: bash + + ./ScanCode\ Workbench-linux-x64/ScanCode\ Workbench --no-sandbox diff --git a/docs/source/rst_snippets/copyright-pie-charts-notice.rst b/docs/source/rst_snippets/copyright-pie-charts-notice.rst new file mode 100644 index 00000000..a6ad1123 --- /dev/null +++ b/docs/source/rst_snippets/copyright-pie-charts-notice.rst @@ -0,0 +1,2 @@ +.. note:: + Legend items are not available on the :ref:`copyright-info-dashboard` due to long copyright statements. diff --git a/docs/source/rst_snippets/refer-pie-charts.rst b/docs/source/rst_snippets/refer-pie-charts.rst new file mode 100644 index 00000000..6029fe30 --- /dev/null +++ b/docs/source/rst_snippets/refer-pie-charts.rst @@ -0,0 +1,2 @@ +.. note:: + Refer :ref:`pie-charts` for UI features in charts diff --git a/docs/source/rst_snippets/scans-used.rst b/docs/source/rst_snippets/scans-used.rst new file mode 100644 index 00000000..5b6ace50 --- /dev/null +++ b/docs/source/rst_snippets/scans-used.rst @@ -0,0 +1,9 @@ +.. note:: + Refer the titlebar to see the name of the sample scan used in the screenshot. + Sample scans: + + - :scan_samples:`anglesharp.css.0.16.4-scan-results-without-text-referendces.json` + - :scan_samples:`aws-java-sdk-core-1.12.262-sources.jar-v32rc4results-todo.json` + - :scan_samples:`hazelcast-3293_v32.0.0rc3.json` + - :scan_samples:`scancode-32.0.0rc4_python_sample-wref.json` + - :scan_samples:`zjsonpatch-0.3.0.jar-v32rc4results.json` diff --git a/docs/source/technical-reference/index.rst b/docs/source/technical-reference/index.rst deleted file mode 100644 index 6f86ff0b..00000000 --- a/docs/source/technical-reference/index.rst +++ /dev/null @@ -1,99 +0,0 @@ -.. _technical-reference: - -============================ -:index:`Technical Reference` -============================ - -Underlying Technology -===================== - -- ScanCode Workbench is based on `Electron `__ and works on - Windows, OS X and Linux operating systems. - -Platform Support -================ - -ScanCode Workbench Supported Platforms --------------------------------------- - -Our approach for platform support is to focus on one primary release for each of Linux, MacOS and -Windows. The Priority definitions are: - -#. Primary - These are the primary platforms for build/test/release on an ongoing basis. -#. Secondary - These are platforms where the primary ScanCode Workbench release for the - corresponding OS Group should be forward-compatible, e.g., Windows 7 build should work on - Windows 10. Issues reported and traced to a Secondary platform may not be fixed. -#. Tertiary - These are any other platforms not listed as Primary or Secondary. In these cases, we - will help users help themselves, but we are likely not to fix Issues that only surface on a - Tertiary platform. - -+-------------+------------------+---------+------------+-----------------------------------------+ -| OS Group | Desktop OS | Arch | Priority | Notes | -| | Version | | | | -+=============+==================+=========+============+=========================================+ -| Windows | Windows 7 SP1 | x64 | 1 | | -+-------------+------------------+---------+------------+-----------------------------------------+ -| Windows | Windows 10 SP? | x64 | 2 | | -+-------------+------------------+---------+------------+-----------------------------------------+ -| MacOS | 10.9 Mavericks | x64 | 1 | | -+-------------+------------------+---------+------------+-----------------------------------------+ -| MacOS | 10.10 Yosemite | x64 | 2 | | -+-------------+------------------+---------+------------+-----------------------------------------+ -| MacOS | 10.11 El Capitan | x64 | 2 | | -+-------------+------------------+---------+------------+-----------------------------------------+ -| MacOS | 10.12 Sierra | x64 | 2 | | -+-------------+------------------+---------+------------+-----------------------------------------+ -| Linux Deb | Ubuntu 12.04 | x64 | 1 | From Electron Docs: The prebuilt ia32 | -| | | | | (i686) and x64 (amd64) binaries of | -| | | | | Electron are built on Ubuntu 12.04. | -+-------------+------------------+---------+------------+-----------------------------------------+ -| Linux Deb | Ubuntu 14.xx | x64 | 2 | Verified to be able to run the prebuilt | -| | | | | binaries of Electron. | -+-------------+------------------+---------+------------+-----------------------------------------+ -| Linux Deb | Ubuntu 16.xx | x64 | 2 | Verified to be able to run the prebuilt | -| | | | | binaries of Electron. | -+-------------+------------------+---------+------------+-----------------------------------------+ -| Linux | Fedora 21 | x64 | 2 | Verified to be able to run the prebuilt | -| | | | | binaries of Electron. | -+-------------+------------------+---------+------------+-----------------------------------------+ -| Linux | Debian 8 | x64 | 2 | Verified to be able to run the prebuilt | -| | | | | binaries of Electron. | -+-------------+------------------+---------+------------+-----------------------------------------+ -| Linux RH | CentOS 7.xx | x64 | ? | | -+-------------+------------------+---------+------------+-----------------------------------------+ -| Linux RH | RHEL 7.xx | x64 | ? | | -+-------------+------------------+---------+------------+-----------------------------------------+ - -Electron Supported Platforms ----------------------------- - -https://electronjs.org/docs/tutorial/support#supported-platforms - -The following platforms are supported by Electron: - -MacOS -^^^^^ - -Only 64-bit binaries are provided for MacOS, and the minimum MacOS version supported is MacOS 10.9. - -Windows -^^^^^^^ - -Windows 7 and later are supported, while older operating systems are not supported (and do not -work). Both ia32 (x86) and x64 (amd64) binaries are provided for Windows. Please note: the ARM -version of Windows is not supported for now. - -Linux -^^^^^ - -The prebuilt ia32 (i686) and x64 (amd64) binaries of Electron are built on Ubuntu 12.04, and the -ARM binary is built against ARM v7 with hard-float ABI and NEON for Debian Wheezy. - -Whether the prebuilt binary can run on a distribution depends on whether the distribution includes -the libraries that Electron is linked to on the building platform, so only Ubuntu 12.04 is -guaranteed to work, but the following platforms are also verified to be able to run the prebuilt -binaries of Electron: - -- Ubuntu 12.04 and later -- Fedora 21 -- Debian 8 diff --git a/docs/source/ui-reference/chart-summary-view.rst b/docs/source/ui-reference/chart-summary-view.rst index 589be6db..aa162d4b 100644 --- a/docs/source/ui-reference/chart-summary-view.rst +++ b/docs/source/ui-reference/chart-summary-view.rst @@ -1,15 +1,19 @@ +.. _chart-summary-view: + =========================== :index:`Chart Summary View` =========================== -:guilabel:`[Intro to come.]` - With the chart summary view, a user can select a node in the directory tree (i.e., a directory, folder or file) and display a horizontal bar chart listing the values identified in the scanned -codebase -- that is, the clues detected by ScanCode Toolkit -- for a number of different -attributes. The attributes are a subset of the columns displayed in the table view, and can be +codebase, i.e. the ScanCode Toolkit detections, for a number of different +attributes. + +The attributes are a subset of the columns displayed in the table view, and can be selected by clicking the dropdown at the top of the view. The chart displays the full range of values for the selected directory tree node and attribute and the number of times each value occurs in the scanned codebase. -.. image:: data/scancode-workbench-chart-summary.gif +.. image:: data/chart-summary-view.gif + +.. include:: ../rst_snippets/scans-used.rst diff --git a/docs/source/ui-reference/copyright-info-dashboard.rst b/docs/source/ui-reference/copyright-info-dashboard.rst new file mode 100644 index 00000000..4e35f6b6 --- /dev/null +++ b/docs/source/ui-reference/copyright-info-dashboard.rst @@ -0,0 +1,37 @@ +.. _copyright-info-dashboard: + +=================================== +:index:`Copyright Info Dashboard` +=================================== + +Copyright info dashboard summarizes the copyright information detected +in scan for files under the selected path. +Scan must have ``--copyright`` option for Copyright Info Dashboard. + +Summary of Copyrights: + +- Unique holders + No. of unique copyright holders detected. +- Unique notices + No. of unique copyright notices detected. +- Unique authors + No. of unique copyright authors detected. + +- Pie charts + - Copyright Holders + Distribution of unique copyright holders indicating the number of files + in which each copyright holder was detected. + - Copyright Notices + Distribution of unique copyright notices indicating the number of files + in which each copyright notice was detected. + - Copyright Authors + Distribution of unique copyright authors indicating the number of files + in which copyrights were authored by each author. + +.. include:: /rst_snippets/refer-pie-charts.rst + +.. include:: /rst_snippets/copyright-pie-charts-notice.rst + +.. image:: data/copyright-info/copyright-info.png + +.. include:: ../rst_snippets/scans-used.rst diff --git a/docs/source/ui-reference/data/chart-summary-view.gif b/docs/source/ui-reference/data/chart-summary-view.gif new file mode 100644 index 00000000..089d54a2 Binary files /dev/null and b/docs/source/ui-reference/data/chart-summary-view.gif differ diff --git a/docs/source/ui-reference/data/copyright-info/copyright-info.png b/docs/source/ui-reference/data/copyright-info/copyright-info.png new file mode 100644 index 00000000..38f81760 Binary files /dev/null and b/docs/source/ui-reference/data/copyright-info/copyright-info.png differ diff --git a/docs/source/ui-reference/data/dependency-info/dependency-info-charts_1.png b/docs/source/ui-reference/data/dependency-info/dependency-info-charts_1.png new file mode 100644 index 00000000..a08c84ee Binary files /dev/null and b/docs/source/ui-reference/data/dependency-info/dependency-info-charts_1.png differ diff --git a/docs/source/ui-reference/data/dependency-info/dependency-info-charts_2.png b/docs/source/ui-reference/data/dependency-info/dependency-info-charts_2.png new file mode 100644 index 00000000..275df99d Binary files /dev/null and b/docs/source/ui-reference/data/dependency-info/dependency-info-charts_2.png differ diff --git a/docs/source/ui-reference/data/dependency-info/dependency-info-scope-table.png b/docs/source/ui-reference/data/dependency-info/dependency-info-scope-table.png new file mode 100644 index 00000000..79da04cc Binary files /dev/null and b/docs/source/ui-reference/data/dependency-info/dependency-info-scope-table.png differ diff --git a/docs/source/ui-reference/data/dependency-info/dependency-info.gif b/docs/source/ui-reference/data/dependency-info/dependency-info.gif new file mode 100644 index 00000000..eab59ac2 Binary files /dev/null and b/docs/source/ui-reference/data/dependency-info/dependency-info.gif differ diff --git a/docs/source/ui-reference/data/directory-tree/directory-tree-chartview.gif b/docs/source/ui-reference/data/directory-tree/directory-tree-chartview.gif new file mode 100644 index 00000000..a770d854 Binary files /dev/null and b/docs/source/ui-reference/data/directory-tree/directory-tree-chartview.gif differ diff --git a/docs/source/ui-reference/data/directory-tree/directory-tree-copyright.gif b/docs/source/ui-reference/data/directory-tree/directory-tree-copyright.gif new file mode 100644 index 00000000..229a4bed Binary files /dev/null and b/docs/source/ui-reference/data/directory-tree/directory-tree-copyright.gif differ diff --git a/docs/source/ui-reference/data/directory-tree/directory-tree-navigate.gif b/docs/source/ui-reference/data/directory-tree/directory-tree-navigate.gif new file mode 100644 index 00000000..0f731b21 Binary files /dev/null and b/docs/source/ui-reference/data/directory-tree/directory-tree-navigate.gif differ diff --git a/docs/source/ui-reference/data/file-info/file-info.png b/docs/source/ui-reference/data/file-info/file-info.png new file mode 100644 index 00000000..1c65cbbd Binary files /dev/null and b/docs/source/ui-reference/data/file-info/file-info.png differ diff --git a/docs/source/ui-reference/data/license-explorer/license-explorer-matchedtext.gif b/docs/source/ui-reference/data/license-explorer/license-explorer-matchedtext.gif new file mode 100644 index 00000000..8b9e255c Binary files /dev/null and b/docs/source/ui-reference/data/license-explorer/license-explorer-matchedtext.gif differ diff --git a/docs/source/ui-reference/data/license-explorer/license-explorer-nav.gif b/docs/source/ui-reference/data/license-explorer/license-explorer-nav.gif new file mode 100644 index 00000000..d318fb45 Binary files /dev/null and b/docs/source/ui-reference/data/license-explorer/license-explorer-nav.gif differ diff --git a/docs/source/ui-reference/data/license-explorer/license-explorer.gif b/docs/source/ui-reference/data/license-explorer/license-explorer.gif new file mode 100644 index 00000000..62389790 Binary files /dev/null and b/docs/source/ui-reference/data/license-explorer/license-explorer.gif differ diff --git a/docs/source/ui-reference/data/license-info/license-info-with-policies.png b/docs/source/ui-reference/data/license-info/license-info-with-policies.png new file mode 100644 index 00000000..22d67a0c Binary files /dev/null and b/docs/source/ui-reference/data/license-info/license-info-with-policies.png differ diff --git a/docs/source/ui-reference/data/license-info/license-info.png b/docs/source/ui-reference/data/license-info/license-info.png new file mode 100644 index 00000000..f61c1e58 Binary files /dev/null and b/docs/source/ui-reference/data/license-info/license-info.png differ diff --git a/docs/source/ui-reference/data/navigate-code-tree.gif b/docs/source/ui-reference/data/navigate-code-tree.gif deleted file mode 100644 index 75aa8f04..00000000 Binary files a/docs/source/ui-reference/data/navigate-code-tree.gif and /dev/null differ diff --git a/docs/source/ui-reference/data/package-explorer/dependency-details.png b/docs/source/ui-reference/data/package-explorer/dependency-details.png new file mode 100644 index 00000000..f0fc1b18 Binary files /dev/null and b/docs/source/ui-reference/data/package-explorer/dependency-details.png differ diff --git a/docs/source/ui-reference/data/package-explorer/package-details.gif b/docs/source/ui-reference/data/package-explorer/package-details.gif new file mode 100644 index 00000000..e19fad23 Binary files /dev/null and b/docs/source/ui-reference/data/package-explorer/package-details.gif differ diff --git a/docs/source/ui-reference/data/package-explorer/package-explorer-details.gif b/docs/source/ui-reference/data/package-explorer/package-explorer-details.gif new file mode 100644 index 00000000..bbc413b3 Binary files /dev/null and b/docs/source/ui-reference/data/package-explorer/package-explorer-details.gif differ diff --git a/docs/source/ui-reference/data/package-explorer/package-explorer-nav.gif b/docs/source/ui-reference/data/package-explorer/package-explorer-nav.gif new file mode 100644 index 00000000..060df57e Binary files /dev/null and b/docs/source/ui-reference/data/package-explorer/package-explorer-nav.gif differ diff --git a/docs/source/ui-reference/data/package-info/package-info.png b/docs/source/ui-reference/data/package-info/package-info.png new file mode 100644 index 00000000..4b04fb6b Binary files /dev/null and b/docs/source/ui-reference/data/package-info/package-info.png differ diff --git a/docs/source/ui-reference/data/pie-charts/pie-charts-legend-toggle.gif b/docs/source/ui-reference/data/pie-charts/pie-charts-legend-toggle.gif new file mode 100644 index 00000000..c96162ba Binary files /dev/null and b/docs/source/ui-reference/data/pie-charts/pie-charts-legend-toggle.gif differ diff --git a/docs/source/ui-reference/data/pie-charts/pie-charts-legend-tooltip.png b/docs/source/ui-reference/data/pie-charts/pie-charts-legend-tooltip.png new file mode 100644 index 00000000..d07c833a Binary files /dev/null and b/docs/source/ui-reference/data/pie-charts/pie-charts-legend-tooltip.png differ diff --git a/docs/source/ui-reference/data/pie-charts/pie-charts-tooltip.png b/docs/source/ui-reference/data/pie-charts/pie-charts-tooltip.png new file mode 100644 index 00000000..6dc6f8c1 Binary files /dev/null and b/docs/source/ui-reference/data/pie-charts/pie-charts-tooltip.png differ diff --git a/docs/source/ui-reference/data/scan-info/scan-info_1.png b/docs/source/ui-reference/data/scan-info/scan-info_1.png new file mode 100644 index 00000000..d0dffa32 Binary files /dev/null and b/docs/source/ui-reference/data/scan-info/scan-info_1.png differ diff --git a/docs/source/ui-reference/data/scan-info/scan-info_2.png b/docs/source/ui-reference/data/scan-info/scan-info_2.png new file mode 100644 index 00000000..4adae2b1 Binary files /dev/null and b/docs/source/ui-reference/data/scan-info/scan-info_2.png differ diff --git a/docs/source/ui-reference/data/scancode-workbench-chart-summary.gif b/docs/source/ui-reference/data/scancode-workbench-chart-summary.gif deleted file mode 100644 index be925711..00000000 Binary files a/docs/source/ui-reference/data/scancode-workbench-chart-summary.gif and /dev/null differ diff --git a/docs/source/ui-reference/data/table-view.gif b/docs/source/ui-reference/data/table-view.gif deleted file mode 100644 index 1d5335f1..00000000 Binary files a/docs/source/ui-reference/data/table-view.gif and /dev/null differ diff --git a/docs/source/ui-reference/data/tableview/tableview-column-filter-search.gif b/docs/source/ui-reference/data/tableview/tableview-column-filter-search.gif new file mode 100644 index 00000000..6bb3907d Binary files /dev/null and b/docs/source/ui-reference/data/tableview/tableview-column-filter-search.gif differ diff --git a/docs/source/ui-reference/data/tableview/tableview-column-groups.gif b/docs/source/ui-reference/data/tableview/tableview-column-groups.gif new file mode 100644 index 00000000..a9c60bd2 Binary files /dev/null and b/docs/source/ui-reference/data/tableview/tableview-column-groups.gif differ diff --git a/docs/source/ui-reference/data/tableview/tableview-custom-columns.gif b/docs/source/ui-reference/data/tableview/tableview-custom-columns.gif new file mode 100644 index 00000000..1303aeda Binary files /dev/null and b/docs/source/ui-reference/data/tableview/tableview-custom-columns.gif differ diff --git a/docs/source/ui-reference/data/tableview/tableview-intro.gif b/docs/source/ui-reference/data/tableview/tableview-intro.gif new file mode 100644 index 00000000..0cc57da1 Binary files /dev/null and b/docs/source/ui-reference/data/tableview/tableview-intro.gif differ diff --git a/docs/source/ui-reference/data/tableview/tableview-pagination.gif b/docs/source/ui-reference/data/tableview/tableview-pagination.gif new file mode 100644 index 00000000..701217bb Binary files /dev/null and b/docs/source/ui-reference/data/tableview/tableview-pagination.gif differ diff --git a/docs/source/ui-reference/data/tableview/tableview-pin-columns.gif b/docs/source/ui-reference/data/tableview/tableview-pin-columns.gif new file mode 100644 index 00000000..1570e217 Binary files /dev/null and b/docs/source/ui-reference/data/tableview/tableview-pin-columns.gif differ diff --git a/docs/source/ui-reference/data/tableview/tableview-search.gif b/docs/source/ui-reference/data/tableview/tableview-search.gif new file mode 100644 index 00000000..1fd5654a Binary files /dev/null and b/docs/source/ui-reference/data/tableview/tableview-search.gif differ diff --git a/docs/source/ui-reference/data/tableview/tableview-to-license.gif b/docs/source/ui-reference/data/tableview/tableview-to-license.gif new file mode 100644 index 00000000..40ba1128 Binary files /dev/null and b/docs/source/ui-reference/data/tableview/tableview-to-license.gif differ diff --git a/docs/source/ui-reference/data/tableview/tableview-to-package.gif b/docs/source/ui-reference/data/tableview/tableview-to-package.gif new file mode 100644 index 00000000..19e0a683 Binary files /dev/null and b/docs/source/ui-reference/data/tableview/tableview-to-package.gif differ diff --git a/docs/source/ui-reference/dependency-info-dashboard.rst b/docs/source/ui-reference/dependency-info-dashboard.rst new file mode 100644 index 00000000..7c500aa5 --- /dev/null +++ b/docs/source/ui-reference/dependency-info-dashboard.rst @@ -0,0 +1,42 @@ +.. _dependency-info-dashboard: + +===================================== +:index:`Dependency Info Dashboard` +===================================== + +Dependency info dashboard summarizes the dependencies information detected +in scan for files under the selected path. +Scan must have ``--package`` option for Dependency Info Dashboard + +Summary of Dependencys: + +- Total number of Dependencies detected + +- Summary table + - Dependencies per Scope (Runtime, Optional, Resolved) for each Package Type + +- Pie charts + - Dependencies for each Package type + - Data source IDs + Distribution of Unique data source IDs. eg. ``maven_pom``, ``pipfile_lock``, etc + - Runtime dependencies + - Resolved dependencies + - Optional dependencies + +.. include:: /rst_snippets/refer-pie-charts.rst + +************************************************************ +Package type wise Scope summary +************************************************************ +.. image:: data/dependency-info/dependency-info-scope-table.png + + +************************************************************ +Charts +************************************************************ + +.. image:: data/dependency-info/dependency-info-charts_1.png + +.. image:: data/dependency-info/dependency-info-charts_2.png + +.. include:: ../rst_snippets/scans-used.rst diff --git a/docs/source/ui-reference/directory-tree.rst b/docs/source/ui-reference/directory-tree.rst index c9fd19ad..fee9a09f 100644 --- a/docs/source/ui-reference/directory-tree.rst +++ b/docs/source/ui-reference/directory-tree.rst @@ -2,11 +2,21 @@ :index:`Directory Tree` ======================= -:guilabel:`[Intro to come.]` +An interactive directory tree is present on the left side of the application for resource-focused +views. This allows the user to navigate the codebase structure. -An interactive directory tree is always present on the left side of the application. The tree is -expandable and collapsible. This allows the user to navigate the codebase structure. If a directory -is selected, only that directory and its sub-files and folders will be shown in the view. +If a directory is selected, only the information for that directory and its sub-files and folders +will be shown in the view. Similarly, if a single file is selected, only information for that selected file will be shown. -.. image:: data/navigate-code-tree.gif + +Demo of filetree on different views: +------------------------------------------------ + +.. image:: data/directory-tree/directory-tree-navigate.gif + +.. image:: data/directory-tree/directory-tree-copyright.gif + +.. image:: data/directory-tree/directory-tree-chartview.gif + +.. include:: ../rst_snippets/scans-used.rst diff --git a/docs/source/ui-reference/file-info-dashboard.rst b/docs/source/ui-reference/file-info-dashboard.rst index fa8dd585..ccf7b670 100644 --- a/docs/source/ui-reference/file-info-dashboard.rst +++ b/docs/source/ui-reference/file-info-dashboard.rst @@ -1,7 +1,25 @@ +.. _file-info-dashboard: + ============================ :index:`File Info Dashboard` ============================ -:guilabel:`[Intro to come.]` +File Info Dashboard summarizes the file information in scan for the selected path. +It is a good starting point to understand the file types and +programming languages used in the project. +Scan must have ``--info`` option enabled for the data required in File Info Dashboard. + +Summary of files: + +- Total number of Files (under the selected path) +- Total number of Directories (under the selected path) +- Pie charts + - Programming languages + - File Types + - Mime Types + +.. include:: /rst_snippets/refer-pie-charts.rst + +.. image:: data/file-info/file-info.png -:guilabel:`[Screenshots and narrative to come.]` +.. include:: ../rst_snippets/scans-used.rst diff --git a/docs/source/ui-reference/index.rst b/docs/source/ui-reference/index.rst index b82c5049..c29e492c 100644 --- a/docs/source/ui-reference/index.rst +++ b/docs/source/ui-reference/index.rst @@ -4,14 +4,18 @@ :index:`UI Reference` ===================== -:guilabel:`[Intro to come.]` - .. toctree:: :maxdepth: 3 directory-tree table-view + pie-charts file-info-dashboard license-info-dashboard + copyright-info-dashboard package-info-dashboard + dependency-info-dashboard + license-explorer + package-explorer chart-summary-view + scan-info diff --git a/docs/source/ui-reference/license-explorer.rst b/docs/source/ui-reference/license-explorer.rst new file mode 100644 index 00000000..bfe0cd26 --- /dev/null +++ b/docs/source/ui-reference/license-explorer.rst @@ -0,0 +1,66 @@ +.. _license-explorer: + +============================ +:index:`License Explorer` +============================ + +Details of all the License detections and clues including Matches as well as files in which they +were detected can be viewed using the License Explorer. + +Refer - +:doc:`scancode-toolkit:reference/license-detection-reference` + +.. @TODO - Replace with anchored link after merging docs PR inScanCode Toolkit +.. :doc:`scancode-toolkit:reference/license-detection-reference#what-is-a-licensedetection` + +License Navigation Pane +------------------------------- +User can scroll through the licenses and select particular license to see +detailed information in the License details pane. Licenses are divided into two sections: +- License Detections +- License Clues + +User can search for a particular license using the search bar at the top. +These sections' height & navigation pane's width can be adjusted as per convenience. + +.. image:: data/license-explorer/license-explorer.gif + +License Details Pane +------------------------------------------ +User can see detailed information of the license selected in the navigation pane. +Title of details pane - License Expression +Instances - No. of times license is detected +Score - Clue's confidence about the license (Shown only for clues) + +Matches Table: + +User can view the match details resulting the selected license : + +- ``Score`` +- ``Matched length`` +- ``Match Coverage`` +- ``Matcher`` +- ``Matched Text`` + | User can click on the text to view a diff of Matched & Rule text + | (Requires ``--license-references`` flag) +- ``Rule`` - User can click on the Rule to open the rule used byScanCode Toolkit in browser +- ``SPDX License expression`` + +File Regions Table: + +User can view the files in which selected license was detected: + +- ``Path`` - Path of file, User can click on it to view the specific file in TableView +- ``Lines`` - Specific lines in the file at which license was detected +- ``Detection origin`` - Type of file + +View License details, go to & from file <-> license explorer +-------------------------------------------------------------------------------- +.. image:: data/license-explorer/license-explorer-nav.gif + +View Matched Text diff +-------------------------------------------- + +.. image:: data/license-explorer/license-explorer-matchedtext.gif + +.. include:: ../rst_snippets/scans-used.rst diff --git a/docs/source/ui-reference/license-info-dashboard.rst b/docs/source/ui-reference/license-info-dashboard.rst index b3b87a2a..2fb471f7 100644 --- a/docs/source/ui-reference/license-info-dashboard.rst +++ b/docs/source/ui-reference/license-info-dashboard.rst @@ -1,7 +1,37 @@ -=============================== +.. _license-info-dashboard: + +================================ :index:`License Info Dashboard` -=============================== +================================ + +License info dashboard summarizes the license information detected for files +in the scan under the selected path. It is a good starting point to understand +the declaration of licenses in the project. +Scan must have ``--license`` option enabled for the data required in License Info Dashboard. + +Summary of Licenses: + +- Licenses + No. of unique licenses detected. +- Files + No. of files (under the selected path) having at least one license detected. +- SPDX Licenses + No. of unique SPDX detected. + +- Pie charts + - License expressions + Distribution of unique license expressions indicating the number + of files in which each license expression is detected. + - License keys + Distribution of unique license keys indicating the number of files + in which each license key is detected. + - License policies + Distribution of unique license policies indicating the number of files + in which each license policy is detected. + +.. include:: /rst_snippets/refer-pie-charts.rst -:guilabel:`[Intro to come.]` +.. image:: data/license-info/license-info.png +.. image:: data/license-info/license-info-with-policies.png -:guilabel:`[Screenshots and narrative to come.]` +.. include:: ../rst_snippets/scans-used.rst diff --git a/docs/source/ui-reference/package-explorer.rst b/docs/source/ui-reference/package-explorer.rst new file mode 100644 index 00000000..81b68871 --- /dev/null +++ b/docs/source/ui-reference/package-explorer.rst @@ -0,0 +1,98 @@ +.. _package-explorer: + +============================ +:index:`Package Explorer` +============================ + +.. include:: ../definitions.rst + +Details of all the Packages & dependencies as well as files in which +they were detected can be viewed using the Package Explorer. + +Refer - :doc:`scancode-toolkit:reference/available_package_parsers`. + +Package Navigation Pane +-------------------------------- +User can scroll through the packages & dependencies and select particular package +to see detailed information in the Details pane. +Packages and dependencies are organised in a hierarchical structure as shown below. + +> ``Package Type`` + > ``Package (PURL)`` + > ``Dependencies`` + +User can select different filters: + +- Data sources - ``maven_pom``, ``go_mod``, ``npm_package_lock_json``, etc +- Dependency flags - ``Runtime``, ``Resolved``, ``Optional`` + + Tip - You can click on the tag on the right side of the dependency to toggle that flag. + +The navigation pane's width can also be adjusted as per convenience. + +.. image:: data/package-explorer/package-explorer-nav.gif + + +Package Details +-------------------- + +User can see following information of the selected package: + +- ``Title of details pane``- PURL + + |purl_description| +- ``Type`` +- ``Namespace`` +- ``Name`` +- ``Version`` +- ``Subpath`` +- ``Primary Language`` +- ``Extracted license statement`` +- ``Declared license expression`` +- ``Declared license expression SPDX`` +- ``Other license expression`` +- ``Other license expression SPDX`` +- ``Homepage URL`` + +*************************** +Datafile paths +*************************** +List of paths of datafiles in which the selected package/dependency was detected. +User can click on the datafile paths to open that path in the Tableview the match details +resulting the selected license. + +*************************** +Dependencies table +*************************** + +User can see all the dependencies of the selected package in the table, with following details: + +- ``Purl`` + + |purl_description| +- ``Scope`` +- ``Resolved`` +- ``Runtime`` +- ``Optional`` +- ``Data source ID`` +- ``Data file`` +- ``Extracted requirement`` + +.. image:: data/package-explorer/package-details.gif + +Dependency Details +-------------------- + +User can see following information of the selected dependency: + +- ``For`` - PURL of the package for which this dependency was detected +- ``Scope`` +- ``Extracted requirement`` +- ``Data file`` - Clickable datafile path to open the datafile in the Tableview +- ``Data source ID`` + +The Data file property is a clickable link that opens the Tableview with that file selected. + +.. image:: data/package-explorer/dependency-details.png + +.. include:: ../rst_snippets/scans-used.rst diff --git a/docs/source/ui-reference/package-info-dashboard.rst b/docs/source/ui-reference/package-info-dashboard.rst index 116f39d3..baa10b47 100644 --- a/docs/source/ui-reference/package-info-dashboard.rst +++ b/docs/source/ui-reference/package-info-dashboard.rst @@ -1,7 +1,28 @@ -=============================== +.. _package-info-dashboard: + +=================================== :index:`Package Info Dashboard` -=============================== +=================================== + +Package info dashboard summarizes the packages detected for files +in the scan under the selected path. +Scan must have ``--package`` option for License Info Dashboard + +Summary of Packages: + +- Total number of packages detected + +- Pie charts + - Package Types + Distribution of unique package types detected. eg. ``npm``, ``cargo``, ``pypi``, etc. + - Package Languages + Distribution of unique package languages detected. + eg. ``Javascript``, ``Python``, ``Ruby``, etc. + - Package Licenses + Distribution of unique package licenses detected. + +.. include:: /rst_snippets/refer-pie-charts.rst -:guilabel:`[Intro to come.]` +.. image:: data/package-info/package-info.png -:guilabel:`[Screenshots and narrative to come.]` +.. include:: ../rst_snippets/scans-used.rst diff --git a/docs/source/ui-reference/pie-charts.rst b/docs/source/ui-reference/pie-charts.rst new file mode 100644 index 00000000..2652a2e5 --- /dev/null +++ b/docs/source/ui-reference/pie-charts.rst @@ -0,0 +1,43 @@ +.. _pie-charts: + +=========================== +:index:`Pie charts` +=========================== + +Pie charts give a quick overview of the distribution of values for a given attribute. +ScanCode Workbench utilises `c3js `_ charts on the following views: + +- :ref:`file-info-dashboard` +- :ref:`license-info-dashboard` +- :ref:`copyright-info-dashboard` +- :ref:`package-info-dashboard` +- :ref:`dependency-info-dashboard` + +Tooltip +-------------------------------- + +You can hover over the pie chart to see the exact value and percentage of the pie chart. + +.. image:: data/pie-charts/pie-charts-tooltip.png + :width: 100% + :alt: Hover Pie chart to see tooltip + +Legend items +-------------------------------- + +.. note:: + Legend items are not available on the :ref:`copyright-info-dashboard` due to long copyright statements. + +You can hover over the legend items to highlight the corresponding pie chart segment. + +.. image:: data/pie-charts/pie-charts-legend-tooltip.png + :width: 100% + :alt: Hover Pie chart legend item to highlight segment + +You can click on the legend items to toggle the visibility of corresponding pie chart segments. + +.. image:: data/pie-charts/pie-charts-legend-toggle.gif + :width: 100% + :alt: Click legend item to toggle segment visibility in Pie chart + +.. include:: ../rst_snippets/scans-used.rst diff --git a/docs/source/ui-reference/scan-info.rst b/docs/source/ui-reference/scan-info.rst new file mode 100644 index 00000000..2b98b4d3 --- /dev/null +++ b/docs/source/ui-reference/scan-info.rst @@ -0,0 +1,34 @@ +.. _scan-info: + +============================ +:index:`Scan Info` +============================ + +Scan Info provides information about the scan available in ``headers`` in the scan. +It provides information about the environment & configuration on host machine +when performing the scan. You can also see the raw header JSON at the bottom + +Fields: + +- ``Tool`` - Name of the tool which generated this scan +- ``Tool version`` - Version of the tool which generated this scan +- ``Input`` - Input path on which scan was run +- ``Scan Options`` - :doc:`scancode-toolkit:cli-reference/basic-options`. +- ``Files count`` - Total number of files scanned +- ``Output format version`` - Used to track compatibility with current workbench application +- ``SPDX license list version`` - Version of SPDX license list used +- ``Operating system`` - Operating system on which scan was run +- ``CPU architecture`` - CPU architecture on which scan was run +- ``Platform`` - Platform on which scan was run +- ``Platform version`` - Platform version on which scan was run +- ``Python version`` +- ``Scan duration`` +- ``Tool notice`` - Notice of the tool which generated this scan +- ``Errors`` (if any) +- ``Raw header`` + + +.. image:: data/scan-info/scan-info_1.png +.. image:: data/scan-info/scan-info_2.png + +.. include:: ../rst_snippets/scans-used.rst diff --git a/docs/source/ui-reference/table-view.rst b/docs/source/ui-reference/table-view.rst index 416579a1..34b375d5 100644 --- a/docs/source/ui-reference/table-view.rst +++ b/docs/source/ui-reference/table-view.rst @@ -1,17 +1,149 @@ +.. _table-view: + =================== :index:`Table View` =================== -:guilabel:`[Intro to come.]` - In the table view, the available clues detected by `ScanCode Toolkit `_ are shown in a tabular format. A user can see provenance clues such as license and copyright information detected by ScanCode. A user can also see the file information (e.g., file type, file size, etc) and package information (package type, primary language of package) that was detected. -The columns can be sorted as well as shown or hidden based on what the user’s -preferences. Searching for specific clues (license names, copyrights, etc.) is also available in -this view. +The columns can be sorted as well as shown or hidden based on what the user +preference is. Searching for specific clues (license names, copyrights, etc.) +is also available in this view. + +.. Note:: + The data in tableview is only available if corresponding options were enabled when performing the scan. + Refer - :doc:`scancode-toolkit:cli-reference/list-options`. + +---------------- +Column groups +---------------- + +Copyright + +- ``copyright_statements`` +- ``copyright_holders`` +- ``copyright_authors`` +- ``copyright_start_line`` +- ``copyright_end_line`` + +File + +- ``type`` +- ``name`` +- ``extension`` +- ``size`` +- ``programming_language`` +- ``mime_type`` +- ``file_type`` +- ``is_binary`` +- ``is_text`` +- ``is_archive`` +- ``is_media`` +- ``is_source`` +- ``is_script`` + +License + +- ``detected_license_expression`` +- ``detected_license_expression_spdx`` +- ``percentage_of_license_text`` +- ``license_detections`` +- ``license_policy`` +- ``license_clues`` + +Origin + +- ``copyright_statements`` +- ``license_policy`` +- ``email`` +- ``url`` +- ``mime_type`` +- ``file_type`` +- ``programming_language`` + +Package + +- ``package_data_type`` +- ``package_data_name`` +- ``package_data_version`` +- ``package_data_extracted_license_statement`` +- ``package_data_declared_license_expression`` +- ``package_data_declared_license_expression_spdx`` +- ``package_data_primary_language`` +- ``for_packages`` + +Misc + +- ``scan_error`` + +.. image:: data/tableview/tableview-intro.gif + +Preset Column Groups +------------------------------ +The columns are grouped based on their nature such as +``Copyright Cols``, ``Origin Cols``, ``License Cols``, etc. +User can select one of these groups using the corresponding buttons available +in the quick actions row. + +.. image:: data/tableview/tableview-column-groups.gif + +View Custom set of columns +---------------------------------------- +In addition to the preset groups, Users can select a custom set of columns by +using the ``Custom Columns`` button found in the quick actions row. + +.. image:: data/tableview/tableview-custom-columns.gif + +Pin columns +------------------------------- +Users can pin any column(s) to the left by dragging them through the column-header towards the left + +.. image:: data/tableview/tableview-pin-columns.gif + +Column wise filter & search +------------------------------------------- +User can easily filter rows based on specific column values or use advanced search +using ``and``, ``or`` in combination with different search patterns like +``Contains``, ``Starts with``, etc. + +.. image:: data/tableview/tableview-column-filter-search.gif + +Search +------------------------ +Use the ``Search`` bar in the top-right corner to perform searches within the +specified directory scope and selected column fields (hidden columns are excluded from the search) + +.. image:: data/tableview/tableview-search.gif + +Go to License Explorer +------------------------ +User can go to specific licenses in the licenses explorer by the clickable links +in ``License Detections`` column (Grouped under `License cols`). +This will open the license explorer with the target license selected. +Similarly, ``Path`` column in the File regions table in license details pane also +provide links which navigate back to the Table view with that File path selected + +.. image:: data/tableview/tableview-to-license.gif + +Go to Package Explorer +------------------------ +User can go to specific package in the package explorer by the clickable +links in ``For Packages`` column (Grouped under `Package cols`). +This will open the package explorer with the target package selected. +Similarly, Datafile paths in package/dependency details pane as well as +dependency table also provide links which navigate back to the Table view +with that File path selected + +.. image:: data/tableview/tableview-to-package.gif + +Pagination +------------------------ +Users can easily navigate through rows split into pages, with the flexibility to select a +custom number of rows per page, tailoring the display to their convenience and preferences + +.. image:: data/tableview/tableview-pagination.gif -.. image:: data/table-view.gif diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 00000000..530c4deb --- /dev/null +++ b/jest.config.js @@ -0,0 +1,7 @@ +/** @type {import('ts-jest').JestConfigWithTsJest} */ +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', + modulePathIgnorePatterns: ["test-old", "dist"], + testPathIgnorePatterns: ["node_modules", "dist", "test-old"] +}; \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 830e8cd4..4575d203 100644 --- a/package-lock.json +++ b/package-lock.json @@ -37,7 +37,7 @@ "nock": "^13.3.0", "pg": "^8.10.0", "pg-hstore": "^2.3.4", - "rc-tree": "^5.7.0", + "rc-tree": "^5.7.12", "react": "^18.2.0", "react-bootstrap": "^2.5.0", "react-chartjs-2": "^5.2.0", @@ -49,6 +49,7 @@ "react-select": "^5.7.3", "react-toastify": "^9.0.8", "react-tooltip": "^5.10.4", + "scroll-into-view-if-needed": "^3.1.0", "sequelize": "^6.23.2", "sequelize-cli": "^6.5.1", "sqlite3": "^5.1.6", @@ -69,8 +70,9 @@ "@types/c3": "^0.7.8", "@types/d3": "^7.4.0", "@types/diff-match-patch": "^1.0.32", + "@types/jest": "^29.5.3", "@types/jquery": "^3.5.14", - "@types/node": "^18.8.0", + "@types/node": "^18.16.19", "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/react-scroll": "^1.8.7", @@ -92,15 +94,28 @@ "eslint-plugin-css-import-order": "^1.1.0", "eslint-plugin-import": "^2.26.0", "fork-ts-checker-webpack-plugin": "^7.2.13", + "husky": "^8.0.3", + "jest": "^29.6.1", + "jest-environment-jsdom": "^29.6.2", "json-loader": "^0.5.7", "native-ext-loader": "^2.3.0", "node-loader": "^2.0.0", "react-scripts": "^5.0.1", "style-loader": "^3.3.1", "svg-url-loader": "^8.0.0", + "ts-jest": "^29.1.1", "ts-loader": "^9.4.1", - "typescript": "~4.8.4", - "worker-loader": "^3.0.8" + "ts-node": "^10.9.1", + "typescript": "~4.8.4" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, "node_modules/@ampproject/remapping": { @@ -117,11 +132,11 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz", + "integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==", "dependencies": { - "@babel/highlight": "^7.18.6" + "@babel/highlight": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -167,9 +182,9 @@ } }, "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" @@ -203,9 +218,9 @@ } }, "node_modules/@babel/eslint-parser/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" @@ -239,11 +254,11 @@ } }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -282,28 +297,29 @@ } }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.0.tgz", - "integrity": "sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.9.tgz", + "integrity": "sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.21.0", - "@babel/helper-member-expression-to-functions": "^7.21.0", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.20.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/helper-split-export-declaration": "^7.18.6" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -312,6 +328,15 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/helper-create-regexp-features-plugin": { "version": "7.21.0", "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.0.tgz", @@ -346,18 +371,18 @@ } }, "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-environment-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", - "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz", + "integrity": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==", "engines": { "node": ">=6.9.0" } @@ -375,12 +400,12 @@ } }, "node_modules/@babel/helper-function-name": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", - "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", "dependencies": { - "@babel/template": "^7.20.7", - "@babel/types": "^7.21.0" + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -398,63 +423,63 @@ } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.0.tgz", - "integrity": "sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz", + "integrity": "sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==", "dev": true, "dependencies": { - "@babel/types": "^7.21.0" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", - "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz", + "integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.21.2", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz", - "integrity": "sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz", + "integrity": "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.20.2", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.21.2", - "@babel/types": "^7.21.2" + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", - "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", "dev": true, "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", - "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", "dev": true, "engines": { "node": ">=6.9.0" @@ -479,77 +504,77 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz", - "integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz", + "integrity": "sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-member-expression-to-functions": "^7.20.7", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.7", - "@babel/types": "^7.20.7" + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-simple-access": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", - "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", "dev": true, "dependencies": { - "@babel/types": "^7.20.2" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", - "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", "dev": true, "dependencies": { - "@babel/types": "^7.20.0" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.19.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", - "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz", + "integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", - "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz", + "integrity": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==", "dev": true, "engines": { "node": ">=6.9.0" @@ -585,11 +610,11 @@ } }, "node_modules/@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz", + "integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==", "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", + "@babel/helper-validator-identifier": "^7.22.5", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, @@ -662,9 +687,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.21.2", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.2.tgz", - "integrity": "sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==", + "version": "7.22.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.7.tgz", + "integrity": "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==", "bin": { "parser": "bin/babel-parser.js" }, @@ -1117,12 +1142,12 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", - "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1234,12 +1259,12 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz", - "integrity": "sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1506,14 +1531,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.21.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.2.tgz", - "integrity": "sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz", + "integrity": "sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.21.2", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-simple-access": "^7.20.2" + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1765,9 +1790,9 @@ } }, "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" @@ -1850,14 +1875,15 @@ } }, "node_modules/@babel/plugin-transform-typescript": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.21.0.tgz", - "integrity": "sha512-xo///XTPp3mDzTtrqXoBlK9eiAYW3wv9JXglcn/u1bi60RW11dEUxIgA8cbnDhutS1zacjMRmAwxE0gMklLnZg==", + "version": "7.22.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.9.tgz", + "integrity": "sha512-BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-typescript": "^7.20.0" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.9", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1987,9 +2013,9 @@ } }, "node_modules/@babel/preset-env/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" @@ -2032,14 +2058,16 @@ } }, "node_modules/@babel/preset-typescript": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.21.0.tgz", - "integrity": "sha512-myc9mpoVA5m1rF8K8DgLEatOYFDpwC+RkMkjZ0Du6uI62YvDe8uxIEYVs/VCdSJ097nlALiU/yBC7//3nI+hNg==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz", + "integrity": "sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-option": "^7.21.0", - "@babel/plugin-transform-typescript": "^7.21.0" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.22.5", + "@babel/plugin-transform-typescript": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -2066,13 +2094,13 @@ } }, "node_modules/@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz", + "integrity": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==", "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -2099,12 +2127,12 @@ } }, "node_modules/@babel/types": { - "version": "7.21.2", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.2.tgz", - "integrity": "sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz", + "integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==", "dependencies": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" }, "engines": { @@ -2117,6 +2145,28 @@ "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, "node_modules/@csstools/normalize.css": { "version": "12.0.0", "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz", @@ -2647,13 +2697,13 @@ } }, "node_modules/@electron-forge/maker-deb": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@electron-forge/maker-deb/-/maker-deb-6.1.1.tgz", - "integrity": "sha512-Qk/QMBwWP/D6Fx7+VU54xHec47R9CYg0TCaRtQ1KeBNFdJ3DpwCARr966/IJqEUxX7y8vv8Awc8HvKDPxbpIUA==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-deb/-/maker-deb-6.2.1.tgz", + "integrity": "sha512-y4WeBCGOeu1z5yBHPigzYcVPZAwbaJB60wXZ1VQpuKM5n09nONTq2TFhoJDHys3t9aHsBaX7G6Drv0XPUWQExQ==", "dev": true, "dependencies": { - "@electron-forge/maker-base": "6.1.1", - "@electron-forge/shared-types": "6.1.1" + "@electron-forge/maker-base": "6.2.1", + "@electron-forge/shared-types": "6.2.1" }, "engines": { "node": ">= 14.17.5" @@ -2662,118 +2712,24 @@ "electron-installer-debian": "^3.0.0" } }, - "node_modules/@electron-forge/maker-rpm": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@electron-forge/maker-rpm/-/maker-rpm-6.1.1.tgz", - "integrity": "sha512-ya+XtNqHuYENQh4+0XLVM5MYQYR/Y3gKxfUO/V7top6R+TWQwgcUywGEcofxjKVB7fIbDVu4yYgqMujvF6m4QQ==", - "dev": true, - "dependencies": { - "@electron-forge/maker-base": "6.1.1", - "@electron-forge/shared-types": "6.1.1" - }, - "engines": { - "node": ">= 14.17.5" - }, - "optionalDependencies": { - "electron-installer-redhat": "^3.2.0" - } - }, - "node_modules/@electron-forge/maker-squirrel": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@electron-forge/maker-squirrel/-/maker-squirrel-6.1.1.tgz", - "integrity": "sha512-YA7EY7He5FGGiwNlcOLSHwtrDFmq1XZ+0sKHy/xLu0Q8JZzo15WQ0vwJJEIAxL8KAtjwfhyV5VAWI6w0elr/jg==", - "dev": true, - "dependencies": { - "@electron-forge/maker-base": "6.1.1", - "@electron-forge/shared-types": "6.1.1", - "fs-extra": "^10.0.0" - }, - "engines": { - "node": ">= 14.17.5" - }, - "optionalDependencies": { - "electron-winstaller": "^5.0.0" - } - }, - "node_modules/@electron-forge/maker-zip": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@electron-forge/maker-zip/-/maker-zip-6.1.1.tgz", - "integrity": "sha512-3T2bIbYhKl3Z/VyeN+X7+7U+HhgaCtBCfDi0k/Ga7CoUpge2uJS/+yjfGJdwFk4TbWhS3sNkZV2mFMKhx/rlmQ==", - "dev": true, - "dependencies": { - "@electron-forge/maker-base": "6.1.1", - "@electron-forge/shared-types": "6.1.1", - "cross-zip": "^4.0.0", - "fs-extra": "^10.0.0", - "got": "^11.8.5" - }, - "engines": { - "node": ">= 14.17.5" - } - }, - "node_modules/@electron-forge/plugin-auto-unpack-natives": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@electron-forge/plugin-auto-unpack-natives/-/plugin-auto-unpack-natives-6.1.1.tgz", - "integrity": "sha512-Vl36aRxb8KJ1X6Zgqx6B3ay6qqiwWNxe6JF6gClmXwlKUP7P/NqMYKbAGlMBzq7V7CypddkJWBf48LamTPfKiQ==", - "dev": true, - "dependencies": { - "@electron-forge/plugin-base": "6.1.1", - "@electron-forge/shared-types": "6.1.1" - }, - "engines": { - "node": ">= 14.17.5" - } - }, - "node_modules/@electron-forge/plugin-base": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.1.1.tgz", - "integrity": "sha512-xZWZxvD2fQYnkFREK+46FS59vMEsPFINwydtD24QGTBoRMOKXkfXv16yN4eexVi+02Hj6mihYY8zhxJi56OmxA==", - "dev": true, - "dependencies": { - "@electron-forge/shared-types": "6.1.1" - }, - "engines": { - "node": ">= 14.17.5" - } - }, - "node_modules/@electron-forge/plugin-webpack": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@electron-forge/plugin-webpack/-/plugin-webpack-6.1.1.tgz", - "integrity": "sha512-PJE0taqZzEI+jDvAV8c5QWTY3ues4f0UCsD6XtBRNfQJS28x7Uuo9QQnom3X7oG6MbcpdDOXRUFITE6Tu/5yew==", + "node_modules/@electron-forge/maker-deb/node_modules/@electron-forge/maker-base": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.2.1.tgz", + "integrity": "sha512-LnvGtTJ/RNojKdUKktYEcbLqPggXdMBs1uscQRgXkI3XnVGdEi+/j5+Eg5ka4d6FnsaUkz//U5yhPtNFhDbNSw==", "dev": true, "dependencies": { - "@electron-forge/core-utils": "6.1.1", - "@electron-forge/plugin-base": "6.1.1", - "@electron-forge/shared-types": "6.1.1", - "@electron-forge/web-multi-logger": "6.1.1", - "chalk": "^4.0.0", - "debug": "^4.3.1", + "@electron-forge/shared-types": "6.2.1", "fs-extra": "^10.0.0", - "html-webpack-plugin": "^5.3.1", - "webpack": "^5.69.1", - "webpack-dev-server": "^4.0.0", - "webpack-merge": "^5.7.3" - }, - "engines": { - "node": ">= 14.17.5" - } - }, - "node_modules/@electron-forge/publisher-base": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.1.1.tgz", - "integrity": "sha512-vxGzx2G7bWhz2G091MzNh+LHGrOM4gmp8FqW2VNpFJfFEYODr6D9KxitUihKAWc79bwG+YywvISXEMy5IBQu0Q==", - "dev": true, - "dependencies": { - "@electron-forge/shared-types": "6.1.1" + "which": "^2.0.2" }, "engines": { "node": ">= 14.17.5" } }, - "node_modules/@electron-forge/shared-types": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.1.1.tgz", - "integrity": "sha512-sFQQ2ldMq5mlNv4m7lZOZLf9aOn6MLNc8QVeTzOBQ+psxI3mVTDjb+/Lhs/jU8dm2igVfEqAmlj57Gi+C4u4Vw==", + "node_modules/@electron-forge/maker-deb/node_modules/@electron-forge/shared-types": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.2.1.tgz", + "integrity": "sha512-kLazG5XUAqb3Duyhq7XyGluINRwCQRaIiuvHwlvnZYYu6NZQTz9xUm6tQ9v05EtFblUx2iRjY67DJRZSt3dzTQ==", "dev": true, "dependencies": { "@electron/rebuild": "^3.2.10", @@ -2784,10 +2740,10 @@ "node": ">= 14.17.5" } }, - "node_modules/@electron-forge/shared-types/node_modules/@electron/universal": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.3.4.tgz", - "integrity": "sha512-BdhBgm2ZBnYyYRLRgOjM5VHkyFItsbggJ0MHycOjKWdFGYwK97ZFXH54dTvUWEfha81vfvwr5On6XBjt99uDcg==", + "node_modules/@electron-forge/maker-deb/node_modules/@electron/universal": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.4.1.tgz", + "integrity": "sha512-lE/U3UNw1YHuowNbTmKNs9UlS3En3cPgwM5MI+agIgr/B1hSze9NdOP0qn7boZaI9Lph8IDv3/24g9IxnJP7aQ==", "dev": true, "dependencies": { "@electron/asar": "^3.2.1", @@ -2802,7 +2758,7 @@ "node": ">=8.6" } }, - "node_modules/@electron-forge/shared-types/node_modules/@electron/universal/node_modules/fs-extra": { + "node_modules/@electron-forge/maker-deb/node_modules/@electron/universal/node_modules/fs-extra": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", @@ -2817,7 +2773,7 @@ "node": ">=10" } }, - "node_modules/@electron-forge/shared-types/node_modules/@malept/cross-spawn-promise": { + "node_modules/@electron-forge/maker-deb/node_modules/@malept/cross-spawn-promise": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", @@ -2839,7 +2795,7 @@ "node": ">= 10" } }, - "node_modules/@electron-forge/shared-types/node_modules/dir-compare": { + "node_modules/@electron-forge/maker-deb/node_modules/dir-compare": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-3.3.0.tgz", "integrity": "sha512-J7/et3WlGUCxjdnD3HAAzQ6nsnc0WL6DD7WcwJb7c39iH1+AWfg+9OqzJNaI6PkBwBvm1mhZNL9iY/nRiZXlPg==", @@ -2849,7 +2805,7 @@ "minimatch": "^3.0.4" } }, - "node_modules/@electron-forge/shared-types/node_modules/electron-packager": { + "node_modules/@electron-forge/maker-deb/node_modules/electron-packager": { "version": "17.1.1", "resolved": "https://registry.npmjs.org/electron-packager/-/electron-packager-17.1.1.tgz", "integrity": "sha512-r1NDtlajsq7gf2EXgjRfblCVPquvD2yeg+6XGErOKblvxOpDi0iulZLVhgYDP4AEF1P5/HgbX/vwjlkEv7PEIQ==", @@ -2885,181 +2841,276 @@ "url": "https://github.com/electron/electron-packager?sponsor=1" } }, - "node_modules/@electron-forge/template-base": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.1.1.tgz", - "integrity": "sha512-i4EZHXIFTo+nJXJHPS1k9PAnWKEKGC4kMUvIsyYKEu+NrOTcGLMT4FIRM9VYe1nGarQLd486/274S3b2SaCUuw==", + "node_modules/@electron-forge/maker-rpm": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-rpm/-/maker-rpm-6.2.1.tgz", + "integrity": "sha512-FIoU9cvtNOIgrqSCdAMjDKvOnFGSf7RGEtLuZ7Q/BEkwUoXxqphqTzxiIxZocvhVfDtaSU18l9k7u/HrXSL9JQ==", "dev": true, "dependencies": { - "@electron-forge/shared-types": "6.1.1", - "@malept/cross-spawn-promise": "^2.0.0", - "debug": "^4.3.1", - "fs-extra": "^10.0.0", - "username": "^5.1.0" + "@electron-forge/maker-base": "6.2.1", + "@electron-forge/shared-types": "6.2.1" }, "engines": { "node": ">= 14.17.5" + }, + "optionalDependencies": { + "electron-installer-redhat": "^3.2.0" } }, - "node_modules/@electron-forge/template-vite": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@electron-forge/template-vite/-/template-vite-6.1.1.tgz", - "integrity": "sha512-/6Sv7trkfjJR9LI7i83xmddVhi32pDlDE2kwlCkRgcoE2jGoW0fJU1BNfjNWy61Rd1wNzgrpfjMTPQlMnwHb4g==", + "node_modules/@electron-forge/maker-rpm/node_modules/@electron-forge/maker-base": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.2.1.tgz", + "integrity": "sha512-LnvGtTJ/RNojKdUKktYEcbLqPggXdMBs1uscQRgXkI3XnVGdEi+/j5+Eg5ka4d6FnsaUkz//U5yhPtNFhDbNSw==", "dev": true, "dependencies": { - "@electron-forge/shared-types": "6.1.1", - "@electron-forge/template-base": "6.1.1", - "fs-extra": "^10.0.0" + "@electron-forge/shared-types": "6.2.1", + "fs-extra": "^10.0.0", + "which": "^2.0.2" }, "engines": { - "node": "^14.18.0 || >=16.0.0" + "node": ">= 14.17.5" } }, - "node_modules/@electron-forge/template-webpack": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.1.1.tgz", - "integrity": "sha512-M3hTEF3iV6VYufassMilautoOYTLbqD06U1u3B6MDZVn74xAzprIZ+5EgrvQR33N+E3PyDpkgyMh+FJtWCo0/A==", + "node_modules/@electron-forge/maker-rpm/node_modules/@electron-forge/shared-types": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.2.1.tgz", + "integrity": "sha512-kLazG5XUAqb3Duyhq7XyGluINRwCQRaIiuvHwlvnZYYu6NZQTz9xUm6tQ9v05EtFblUx2iRjY67DJRZSt3dzTQ==", "dev": true, "dependencies": { - "@electron-forge/shared-types": "6.1.1", - "@electron-forge/template-base": "6.1.1", - "fs-extra": "^10.0.0" + "@electron/rebuild": "^3.2.10", + "electron-packager": "^17.1.1", + "listr2": "^5.0.3" }, "engines": { "node": ">= 14.17.5" } }, - "node_modules/@electron-forge/template-webpack-typescript": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-6.1.1.tgz", - "integrity": "sha512-Ck7EgqoqfUL4r4NCioTsQT1/EFNCUqnsNd71MboU1RUvRbcrqpYvkoKk99+9QvxBrljMQp935gTieY7HADWQ9A==", + "node_modules/@electron-forge/maker-rpm/node_modules/@electron/universal": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.4.1.tgz", + "integrity": "sha512-lE/U3UNw1YHuowNbTmKNs9UlS3En3cPgwM5MI+agIgr/B1hSze9NdOP0qn7boZaI9Lph8IDv3/24g9IxnJP7aQ==", "dev": true, "dependencies": { - "@electron-forge/shared-types": "6.1.1", - "@electron-forge/template-base": "6.1.1", - "fs-extra": "^10.0.0" + "@electron/asar": "^3.2.1", + "@malept/cross-spawn-promise": "^1.1.0", + "debug": "^4.3.1", + "dir-compare": "^3.0.0", + "fs-extra": "^9.0.1", + "minimatch": "^3.0.4", + "plist": "^3.0.4" }, "engines": { - "node": ">= 14.17.5" + "node": ">=8.6" } }, - "node_modules/@electron-forge/web-multi-logger": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@electron-forge/web-multi-logger/-/web-multi-logger-6.1.1.tgz", - "integrity": "sha512-/hXxjH99UT7er8obZtKfCOBuRNMHUBiUXVbwq5HnzGk8f1x05tZJeZmkbdxEqDS3MFZCtY7gf1DO1c8Cayl0bg==", + "node_modules/@electron-forge/maker-rpm/node_modules/@electron/universal/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, "dependencies": { - "express": "^4.17.1", - "express-ws": "^5.0.2", - "xterm": "^4.9.0", - "xterm-addon-fit": "^0.5.0", - "xterm-addon-search": "^0.8.0" + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">= 14.17.5" + "node": ">=10" } }, - "node_modules/@electron/asar": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/@electron/asar/-/asar-3.2.3.tgz", - "integrity": "sha512-wmOfE6szYyqZhRIiLH+eyZEp+bGcJI0OD/SCvSUrfBE0jvauyGYO2ZhpWxmNCcDojKu5DYrsVqT5BOCZZ01XIg==", + "node_modules/@electron-forge/maker-rpm/node_modules/@malept/cross-spawn-promise": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", + "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/malept" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" + } + ], "dependencies": { - "chromium-pickle-js": "^0.2.0", - "commander": "^5.0.0", - "glob": "^7.1.6", + "cross-spawn": "^7.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@electron-forge/maker-rpm/node_modules/dir-compare": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-3.3.0.tgz", + "integrity": "sha512-J7/et3WlGUCxjdnD3HAAzQ6nsnc0WL6DD7WcwJb7c39iH1+AWfg+9OqzJNaI6PkBwBvm1mhZNL9iY/nRiZXlPg==", + "dev": true, + "dependencies": { + "buffer-equal": "^1.0.0", "minimatch": "^3.0.4" + } + }, + "node_modules/@electron-forge/maker-rpm/node_modules/electron-packager": { + "version": "17.1.1", + "resolved": "https://registry.npmjs.org/electron-packager/-/electron-packager-17.1.1.tgz", + "integrity": "sha512-r1NDtlajsq7gf2EXgjRfblCVPquvD2yeg+6XGErOKblvxOpDi0iulZLVhgYDP4AEF1P5/HgbX/vwjlkEv7PEIQ==", + "dev": true, + "dependencies": { + "@electron/asar": "^3.2.1", + "@electron/get": "^2.0.0", + "@electron/notarize": "^1.2.3", + "@electron/osx-sign": "^1.0.1", + "@electron/universal": "^1.3.2", + "cross-spawn-windows-exe": "^1.2.0", + "debug": "^4.0.1", + "extract-zip": "^2.0.0", + "filenamify": "^4.1.0", + "fs-extra": "^10.1.0", + "galactus": "^0.2.1", + "get-package-info": "^1.0.0", + "junk": "^3.1.0", + "parse-author": "^2.0.0", + "plist": "^3.0.0", + "rcedit": "^3.0.1", + "resolve": "^1.1.6", + "semver": "^7.1.3", + "yargs-parser": "^21.1.1" }, "bin": { - "asar": "bin/asar.js" + "electron-packager": "bin/electron-packager.js" }, "engines": { - "node": ">=10.12.0" + "node": ">= 14.17.5" }, - "optionalDependencies": { - "@types/glob": "^7.1.1" + "funding": { + "url": "https://github.com/electron/electron-packager?sponsor=1" } }, - "node_modules/@electron/asar/node_modules/commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "node_modules/@electron-forge/maker-squirrel": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-squirrel/-/maker-squirrel-6.1.1.tgz", + "integrity": "sha512-YA7EY7He5FGGiwNlcOLSHwtrDFmq1XZ+0sKHy/xLu0Q8JZzo15WQ0vwJJEIAxL8KAtjwfhyV5VAWI6w0elr/jg==", "dev": true, + "dependencies": { + "@electron-forge/maker-base": "6.1.1", + "@electron-forge/shared-types": "6.1.1", + "fs-extra": "^10.0.0" + }, "engines": { - "node": ">= 6" + "node": ">= 14.17.5" + }, + "optionalDependencies": { + "electron-winstaller": "^5.0.0" } }, - "node_modules/@electron/get": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@electron/get/-/get-2.0.2.tgz", - "integrity": "sha512-eFZVFoRXb3GFGd7Ak7W4+6jBl9wBtiZ4AaYOse97ej6mKj5tkyO0dUnUChs1IhJZtx1BENo4/p4WUTXpi6vT+g==", + "node_modules/@electron-forge/maker-zip": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-zip/-/maker-zip-6.1.1.tgz", + "integrity": "sha512-3T2bIbYhKl3Z/VyeN+X7+7U+HhgaCtBCfDi0k/Ga7CoUpge2uJS/+yjfGJdwFk4TbWhS3sNkZV2mFMKhx/rlmQ==", + "dev": true, "dependencies": { - "debug": "^4.1.1", - "env-paths": "^2.2.0", - "fs-extra": "^8.1.0", - "got": "^11.8.5", - "progress": "^2.0.3", - "semver": "^6.2.0", - "sumchecker": "^3.0.1" + "@electron-forge/maker-base": "6.1.1", + "@electron-forge/shared-types": "6.1.1", + "cross-zip": "^4.0.0", + "fs-extra": "^10.0.0", + "got": "^11.8.5" }, "engines": { - "node": ">=12" + "node": ">= 14.17.5" + } + }, + "node_modules/@electron-forge/plugin-auto-unpack-natives": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@electron-forge/plugin-auto-unpack-natives/-/plugin-auto-unpack-natives-6.1.1.tgz", + "integrity": "sha512-Vl36aRxb8KJ1X6Zgqx6B3ay6qqiwWNxe6JF6gClmXwlKUP7P/NqMYKbAGlMBzq7V7CypddkJWBf48LamTPfKiQ==", + "dev": true, + "dependencies": { + "@electron-forge/plugin-base": "6.1.1", + "@electron-forge/shared-types": "6.1.1" }, - "optionalDependencies": { - "global-agent": "^3.0.0" + "engines": { + "node": ">= 14.17.5" } }, - "node_modules/@electron/get/node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "node_modules/@electron-forge/plugin-base": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.1.1.tgz", + "integrity": "sha512-xZWZxvD2fQYnkFREK+46FS59vMEsPFINwydtD24QGTBoRMOKXkfXv16yN4eexVi+02Hj6mihYY8zhxJi56OmxA==", + "dev": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "@electron-forge/shared-types": "6.1.1" }, "engines": { - "node": ">=6 <7 || >=8" + "node": ">= 14.17.5" } }, - "node_modules/@electron/get/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "node_modules/@electron-forge/plugin-webpack": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@electron-forge/plugin-webpack/-/plugin-webpack-6.1.1.tgz", + "integrity": "sha512-PJE0taqZzEI+jDvAV8c5QWTY3ues4f0UCsD6XtBRNfQJS28x7Uuo9QQnom3X7oG6MbcpdDOXRUFITE6Tu/5yew==", + "dev": true, + "dependencies": { + "@electron-forge/core-utils": "6.1.1", + "@electron-forge/plugin-base": "6.1.1", + "@electron-forge/shared-types": "6.1.1", + "@electron-forge/web-multi-logger": "6.1.1", + "chalk": "^4.0.0", + "debug": "^4.3.1", + "fs-extra": "^10.0.0", + "html-webpack-plugin": "^5.3.1", + "webpack": "^5.69.1", + "webpack-dev-server": "^4.0.0", + "webpack-merge": "^5.7.3" + }, + "engines": { + "node": ">= 14.17.5" } }, - "node_modules/@electron/get/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" + "node_modules/@electron-forge/publisher-base": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.1.1.tgz", + "integrity": "sha512-vxGzx2G7bWhz2G091MzNh+LHGrOM4gmp8FqW2VNpFJfFEYODr6D9KxitUihKAWc79bwG+YywvISXEMy5IBQu0Q==", + "dev": true, + "dependencies": { + "@electron-forge/shared-types": "6.1.1" + }, + "engines": { + "node": ">= 14.17.5" } }, - "node_modules/@electron/get/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "node_modules/@electron-forge/shared-types": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.1.1.tgz", + "integrity": "sha512-sFQQ2ldMq5mlNv4m7lZOZLf9aOn6MLNc8QVeTzOBQ+psxI3mVTDjb+/Lhs/jU8dm2igVfEqAmlj57Gi+C4u4Vw==", + "dev": true, + "dependencies": { + "@electron/rebuild": "^3.2.10", + "electron-packager": "^17.1.1", + "listr2": "^5.0.3" + }, "engines": { - "node": ">= 4.0.0" + "node": ">= 14.17.5" } }, - "node_modules/@electron/notarize": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@electron/notarize/-/notarize-1.2.3.tgz", - "integrity": "sha512-9oRzT56rKh5bspk3KpAVF8lPKHYQrBnRwcgiOeR0hdilVEQmszDaAu0IPCPrwwzJN0ugNs0rRboTreHMt/6mBQ==", + "node_modules/@electron-forge/shared-types/node_modules/@electron/universal": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.3.4.tgz", + "integrity": "sha512-BdhBgm2ZBnYyYRLRgOjM5VHkyFItsbggJ0MHycOjKWdFGYwK97ZFXH54dTvUWEfha81vfvwr5On6XBjt99uDcg==", "dev": true, "dependencies": { - "debug": "^4.1.1", - "fs-extra": "^9.0.1" + "@electron/asar": "^3.2.1", + "@malept/cross-spawn-promise": "^1.1.0", + "debug": "^4.3.1", + "dir-compare": "^3.0.0", + "fs-extra": "^9.0.1", + "minimatch": "^3.0.4", + "plist": "^3.0.4" }, "engines": { - "node": ">= 10.0.0" + "node": ">=8.6" } }, - "node_modules/@electron/notarize/node_modules/fs-extra": { + "node_modules/@electron-forge/shared-types/node_modules/@electron/universal/node_modules/fs-extra": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", @@ -3074,174 +3125,431 @@ "node": ">=10" } }, - "node_modules/@electron/osx-sign": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@electron/osx-sign/-/osx-sign-1.0.4.tgz", - "integrity": "sha512-xfhdEcIOfAZg7scZ9RQPya1G1lWo8/zMCwUXAulq0SfY7ONIW+b9qGyKdMyuMctNYwllrIS+vmxfijSfjeh97g==", + "node_modules/@electron-forge/shared-types/node_modules/@malept/cross-spawn-promise": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", + "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", "dev": true, - "dependencies": { - "compare-version": "^0.1.2", - "debug": "^4.3.4", - "fs-extra": "^10.0.0", - "isbinaryfile": "^4.0.8", - "minimist": "^1.2.6", - "plist": "^3.0.5" - }, - "bin": { - "electron-osx-flat": "bin/electron-osx-flat.js", - "electron-osx-sign": "bin/electron-osx-sign.js" + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/malept" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" + } + ], + "dependencies": { + "cross-spawn": "^7.0.1" }, "engines": { - "node": ">=12.0.0" + "node": ">= 10" } }, - "node_modules/@electron/rebuild": { - "version": "3.2.10", - "resolved": "https://registry.npmjs.org/@electron/rebuild/-/rebuild-3.2.10.tgz", - "integrity": "sha512-SUBM6Mwi3yZaDFQjZzfGKpYTtOp9m60glounwX6tfGeVc/ZOl4jbquktUcyy7gYSLDWFLtKkftkY2xgMJZLQgg==", + "node_modules/@electron-forge/shared-types/node_modules/dir-compare": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-3.3.0.tgz", + "integrity": "sha512-J7/et3WlGUCxjdnD3HAAzQ6nsnc0WL6DD7WcwJb7c39iH1+AWfg+9OqzJNaI6PkBwBvm1mhZNL9iY/nRiZXlPg==", "dev": true, "dependencies": { - "@malept/cross-spawn-promise": "^2.0.0", - "chalk": "^4.0.0", - "debug": "^4.1.1", - "detect-libc": "^2.0.1", - "fs-extra": "^10.0.0", - "got": "^11.7.0", - "lzma-native": "^8.0.5", - "node-abi": "^3.0.0", - "node-api-version": "^0.1.4", - "node-gyp": "^9.0.0", - "ora": "^5.1.0", - "semver": "^7.3.5", - "tar": "^6.0.5", - "yargs": "^17.0.1" + "buffer-equal": "^1.0.0", + "minimatch": "^3.0.4" + } + }, + "node_modules/@electron-forge/shared-types/node_modules/electron-packager": { + "version": "17.1.1", + "resolved": "https://registry.npmjs.org/electron-packager/-/electron-packager-17.1.1.tgz", + "integrity": "sha512-r1NDtlajsq7gf2EXgjRfblCVPquvD2yeg+6XGErOKblvxOpDi0iulZLVhgYDP4AEF1P5/HgbX/vwjlkEv7PEIQ==", + "dev": true, + "dependencies": { + "@electron/asar": "^3.2.1", + "@electron/get": "^2.0.0", + "@electron/notarize": "^1.2.3", + "@electron/osx-sign": "^1.0.1", + "@electron/universal": "^1.3.2", + "cross-spawn-windows-exe": "^1.2.0", + "debug": "^4.0.1", + "extract-zip": "^2.0.0", + "filenamify": "^4.1.0", + "fs-extra": "^10.1.0", + "galactus": "^0.2.1", + "get-package-info": "^1.0.0", + "junk": "^3.1.0", + "parse-author": "^2.0.0", + "plist": "^3.0.0", + "rcedit": "^3.0.1", + "resolve": "^1.1.6", + "semver": "^7.1.3", + "yargs-parser": "^21.1.1" }, "bin": { - "electron-rebuild": "lib/src/cli.js" + "electron-packager": "bin/electron-packager.js" }, "engines": { - "node": ">=12.13.0" - } - }, - "node_modules/@electron/remote": { - "version": "2.0.9", - "resolved": "https://registry.npmjs.org/@electron/remote/-/remote-2.0.9.tgz", - "integrity": "sha512-LR0W0ID6WAKHaSs0x5LX9aiG+5pFBNAJL6eQAJfGkCuZPUa6nZz+czZLdlTDETG45CgF/0raSvCtYOYUpr6c+A==", - "peerDependencies": { - "electron": ">= 13.0.0" + "node": ">= 14.17.5" + }, + "funding": { + "url": "https://github.com/electron/electron-packager?sponsor=1" } }, - "node_modules/@electron/universal": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.2.1.tgz", - "integrity": "sha512-7323HyMh7KBAl/nPDppdLsC87G6RwRU02dy5FPeGB1eS7rUePh55+WNWiDPLhFQqqVPHzh77M69uhmoT8XnwMQ==", + "node_modules/@electron-forge/template-base": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.1.1.tgz", + "integrity": "sha512-i4EZHXIFTo+nJXJHPS1k9PAnWKEKGC4kMUvIsyYKEu+NrOTcGLMT4FIRM9VYe1nGarQLd486/274S3b2SaCUuw==", "dev": true, "dependencies": { - "@malept/cross-spawn-promise": "^1.1.0", - "asar": "^3.1.0", + "@electron-forge/shared-types": "6.1.1", + "@malept/cross-spawn-promise": "^2.0.0", "debug": "^4.3.1", - "dir-compare": "^2.4.0", - "fs-extra": "^9.0.1", - "minimatch": "^3.0.4", - "plist": "^3.0.4" + "fs-extra": "^10.0.0", + "username": "^5.1.0" }, "engines": { - "node": ">=8.6" + "node": ">= 14.17.5" } }, - "node_modules/@electron/universal/node_modules/@malept/cross-spawn-promise": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", - "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", + "node_modules/@electron-forge/template-vite": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@electron-forge/template-vite/-/template-vite-6.1.1.tgz", + "integrity": "sha512-/6Sv7trkfjJR9LI7i83xmddVhi32pDlDE2kwlCkRgcoE2jGoW0fJU1BNfjNWy61Rd1wNzgrpfjMTPQlMnwHb4g==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/malept" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" - } - ], "dependencies": { - "cross-spawn": "^7.0.1" + "@electron-forge/shared-types": "6.1.1", + "@electron-forge/template-base": "6.1.1", + "fs-extra": "^10.0.0" }, "engines": { - "node": ">= 10" + "node": "^14.18.0 || >=16.0.0" } }, - "node_modules/@electron/universal/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "node_modules/@electron-forge/template-webpack": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.1.1.tgz", + "integrity": "sha512-M3hTEF3iV6VYufassMilautoOYTLbqD06U1u3B6MDZVn74xAzprIZ+5EgrvQR33N+E3PyDpkgyMh+FJtWCo0/A==", "dev": true, "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "@electron-forge/shared-types": "6.1.1", + "@electron-forge/template-base": "6.1.1", + "fs-extra": "^10.0.0" }, "engines": { - "node": ">=10" + "node": ">= 14.17.5" } }, - "node_modules/@emotion/babel-plugin": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", - "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", + "node_modules/@electron-forge/template-webpack-typescript": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-6.1.1.tgz", + "integrity": "sha512-Ck7EgqoqfUL4r4NCioTsQT1/EFNCUqnsNd71MboU1RUvRbcrqpYvkoKk99+9QvxBrljMQp935gTieY7HADWQ9A==", + "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.16.7", - "@babel/runtime": "^7.18.3", - "@emotion/hash": "^0.9.1", - "@emotion/memoize": "^0.8.1", - "@emotion/serialize": "^1.1.2", - "babel-plugin-macros": "^3.1.0", - "convert-source-map": "^1.5.0", - "escape-string-regexp": "^4.0.0", - "find-root": "^1.1.0", - "source-map": "^0.5.7", - "stylis": "4.2.0" + "@electron-forge/shared-types": "6.1.1", + "@electron-forge/template-base": "6.1.1", + "fs-extra": "^10.0.0" + }, + "engines": { + "node": ">= 14.17.5" } }, - "node_modules/@emotion/babel-plugin/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "node_modules/@electron-forge/web-multi-logger": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@electron-forge/web-multi-logger/-/web-multi-logger-6.1.1.tgz", + "integrity": "sha512-/hXxjH99UT7er8obZtKfCOBuRNMHUBiUXVbwq5HnzGk8f1x05tZJeZmkbdxEqDS3MFZCtY7gf1DO1c8Cayl0bg==", + "dev": true, + "dependencies": { + "express": "^4.17.1", + "express-ws": "^5.0.2", + "xterm": "^4.9.0", + "xterm-addon-fit": "^0.5.0", + "xterm-addon-search": "^0.8.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 14.17.5" } }, - "node_modules/@emotion/cache": { - "version": "11.11.0", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", - "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", + "node_modules/@electron/asar": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/@electron/asar/-/asar-3.2.3.tgz", + "integrity": "sha512-wmOfE6szYyqZhRIiLH+eyZEp+bGcJI0OD/SCvSUrfBE0jvauyGYO2ZhpWxmNCcDojKu5DYrsVqT5BOCZZ01XIg==", + "dev": true, "dependencies": { - "@emotion/memoize": "^0.8.1", - "@emotion/sheet": "^1.2.2", - "@emotion/utils": "^1.2.1", - "@emotion/weak-memoize": "^0.3.1", - "stylis": "4.2.0" + "chromium-pickle-js": "^0.2.0", + "commander": "^5.0.0", + "glob": "^7.1.6", + "minimatch": "^3.0.4" + }, + "bin": { + "asar": "bin/asar.js" + }, + "engines": { + "node": ">=10.12.0" + }, + "optionalDependencies": { + "@types/glob": "^7.1.1" } }, - "node_modules/@emotion/hash": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", - "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" + "node_modules/@electron/asar/node_modules/commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "dev": true, + "engines": { + "node": ">= 6" + } }, - "node_modules/@emotion/is-prop-valid": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.0.tgz", - "integrity": "sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==", + "node_modules/@electron/get": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@electron/get/-/get-2.0.2.tgz", + "integrity": "sha512-eFZVFoRXb3GFGd7Ak7W4+6jBl9wBtiZ4AaYOse97ej6mKj5tkyO0dUnUChs1IhJZtx1BENo4/p4WUTXpi6vT+g==", "dependencies": { - "@emotion/memoize": "^0.8.0" + "debug": "^4.1.1", + "env-paths": "^2.2.0", + "fs-extra": "^8.1.0", + "got": "^11.8.5", + "progress": "^2.0.3", + "semver": "^6.2.0", + "sumchecker": "^3.0.1" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "global-agent": "^3.0.0" } }, - "node_modules/@emotion/memoize": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", - "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" - }, + "node_modules/@electron/get/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@electron/get/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@electron/get/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@electron/get/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@electron/notarize": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@electron/notarize/-/notarize-1.2.3.tgz", + "integrity": "sha512-9oRzT56rKh5bspk3KpAVF8lPKHYQrBnRwcgiOeR0hdilVEQmszDaAu0IPCPrwwzJN0ugNs0rRboTreHMt/6mBQ==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "fs-extra": "^9.0.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron/notarize/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@electron/osx-sign": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@electron/osx-sign/-/osx-sign-1.0.4.tgz", + "integrity": "sha512-xfhdEcIOfAZg7scZ9RQPya1G1lWo8/zMCwUXAulq0SfY7ONIW+b9qGyKdMyuMctNYwllrIS+vmxfijSfjeh97g==", + "dev": true, + "dependencies": { + "compare-version": "^0.1.2", + "debug": "^4.3.4", + "fs-extra": "^10.0.0", + "isbinaryfile": "^4.0.8", + "minimist": "^1.2.6", + "plist": "^3.0.5" + }, + "bin": { + "electron-osx-flat": "bin/electron-osx-flat.js", + "electron-osx-sign": "bin/electron-osx-sign.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@electron/rebuild": { + "version": "3.2.10", + "resolved": "https://registry.npmjs.org/@electron/rebuild/-/rebuild-3.2.10.tgz", + "integrity": "sha512-SUBM6Mwi3yZaDFQjZzfGKpYTtOp9m60glounwX6tfGeVc/ZOl4jbquktUcyy7gYSLDWFLtKkftkY2xgMJZLQgg==", + "dev": true, + "dependencies": { + "@malept/cross-spawn-promise": "^2.0.0", + "chalk": "^4.0.0", + "debug": "^4.1.1", + "detect-libc": "^2.0.1", + "fs-extra": "^10.0.0", + "got": "^11.7.0", + "lzma-native": "^8.0.5", + "node-abi": "^3.0.0", + "node-api-version": "^0.1.4", + "node-gyp": "^9.0.0", + "ora": "^5.1.0", + "semver": "^7.3.5", + "tar": "^6.0.5", + "yargs": "^17.0.1" + }, + "bin": { + "electron-rebuild": "lib/src/cli.js" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/@electron/remote": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/@electron/remote/-/remote-2.0.9.tgz", + "integrity": "sha512-LR0W0ID6WAKHaSs0x5LX9aiG+5pFBNAJL6eQAJfGkCuZPUa6nZz+czZLdlTDETG45CgF/0raSvCtYOYUpr6c+A==", + "peerDependencies": { + "electron": ">= 13.0.0" + } + }, + "node_modules/@electron/universal": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.2.1.tgz", + "integrity": "sha512-7323HyMh7KBAl/nPDppdLsC87G6RwRU02dy5FPeGB1eS7rUePh55+WNWiDPLhFQqqVPHzh77M69uhmoT8XnwMQ==", + "dev": true, + "dependencies": { + "@malept/cross-spawn-promise": "^1.1.0", + "asar": "^3.1.0", + "debug": "^4.3.1", + "dir-compare": "^2.4.0", + "fs-extra": "^9.0.1", + "minimatch": "^3.0.4", + "plist": "^3.0.4" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/@electron/universal/node_modules/@malept/cross-spawn-promise": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", + "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/malept" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" + } + ], + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@electron/universal/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@emotion/babel-plugin": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", + "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/serialize": "^1.1.2", + "babel-plugin-macros": "^3.1.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/babel-plugin/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@emotion/cache": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", + "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", + "dependencies": { + "@emotion/memoize": "^0.8.1", + "@emotion/sheet": "^1.2.2", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/hash": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", + "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" + }, + "node_modules/@emotion/is-prop-valid": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.0.tgz", + "integrity": "sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==", + "dependencies": { + "@emotion/memoize": "^0.8.0" + } + }, + "node_modules/@emotion/memoize": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", + "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" + }, "node_modules/@emotion/react": { "version": "11.11.1", "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.1.tgz", @@ -3629,59 +3937,76 @@ } }, "node_modules/@jest/console": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", - "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.6.1.tgz", + "integrity": "sha512-Aj772AYgwTSr5w8qnyoJ0eDYvN6bMsH3ORH1ivMotrInHLKdUz6BDlaEXHdM6kODaBIkNIyQGzsMvRdOv7VG7Q==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1", + "@jest/types": "^29.6.1", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^27.5.1", - "jest-util": "^27.5.1", + "jest-message-util": "^29.6.1", + "jest-util": "^29.6.1", "slash": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/core": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", - "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "node_modules/@jest/console/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", "dev": true, "dependencies": { - "@jest/console": "^27.5.1", - "@jest/reporters": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", + "@jest/types": "^29.6.1", "@types/node": "*", - "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", - "emittery": "^0.8.1", - "exit": "^0.1.2", + "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", - "jest-changed-files": "^27.5.1", - "jest-config": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-resolve-dependencies": "^27.5.1", - "jest-runner": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "jest-watcher": "^27.5.1", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.6.1.tgz", + "integrity": "sha512-CcowHypRSm5oYQ1obz1wfvkjZZ2qoQlrKKvlfPwh5jUXVU12TWr2qMeH8chLMuTFzHh5a1g2yaqlqDICbr+ukQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.6.1", + "@jest/reporters": "^29.6.1", + "@jest/test-result": "^29.6.1", + "@jest/transform": "^29.6.1", + "@jest/types": "^29.6.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.5.0", + "jest-config": "^29.6.1", + "jest-haste-map": "^29.6.1", + "jest-message-util": "^29.6.1", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.6.1", + "jest-resolve-dependencies": "^29.6.1", + "jest-runner": "^29.6.1", + "jest-runtime": "^29.6.1", + "jest-snapshot": "^29.6.1", + "jest-util": "^29.6.1", + "jest-validate": "^29.6.1", + "jest-watcher": "^29.6.1", "micromatch": "^4.0.4", - "rimraf": "^3.0.0", + "pretty-format": "^29.6.1", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" @@ -3692,5825 +4017,9448 @@ } } }, - "node_modules/@jest/environment": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", - "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "dependencies": { - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1" + "engines": { + "node": ">=10" }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/fake-timers": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", - "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "node_modules/@jest/core/node_modules/jest-haste-map": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.1.tgz", + "integrity": "sha512-0m7f9PZXxOCk1gRACiVgX85knUKPKLPg4oRCjLoqIm9brTHXaorMA0JpmtmVkQiT8nmXyIVoZd/nnH1cfC33ig==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1", - "@sinonjs/fake-timers": "^8.0.1", + "@jest/types": "^29.6.1", + "@types/graceful-fs": "^4.1.3", "@types/node": "*", - "jest-message-util": "^27.5.1", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1" + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.6.1", + "jest-worker": "^29.6.1", + "micromatch": "^4.0.4", + "walker": "^1.0.8" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/@jest/globals": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", - "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "node_modules/@jest/core/node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-resolve": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.1.tgz", + "integrity": "sha512-AeRkyS8g37UyJiP9w3mmI/VXU/q8l/IH52vj/cDAyScDcemRbSBhfX/NMYIGilQgSVwsjxrCHf3XJu4f+lxCMg==", "dev": true, "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/types": "^27.5.1", - "expect": "^27.5.1" + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.6.1", + "jest-validate": "^29.6.1", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/reporters": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", - "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "node_modules/@jest/core/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", "dev": true, "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", + "@jest/types": "^29.6.1", "@types/node": "*", "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.2", + "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-haste-map": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "slash": "^3.0.0", - "source-map": "^0.6.0", - "string-length": "^4.0.1", - "terminal-link": "^2.0.0", - "v8-to-istanbul": "^8.1.0" + "picomatch": "^2.2.3" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/schemas": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", - "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "node_modules/@jest/core/node_modules/jest-validate": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.1.tgz", + "integrity": "sha512-r3Ds69/0KCN4vx4sYAbGL1EVpZ7MSS0vLmd3gV78O+NAx3PDQQukRU5hNHPXlyqCgFY8XUk7EuTMLugh0KzahA==", "dev": true, "dependencies": { - "@sinclair/typebox": "^0.24.1" + "@jest/types": "^29.6.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "leven": "^3.1.0", + "pretty-format": "^29.6.1" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/source-map": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", - "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "node_modules/@jest/core/node_modules/jest-worker": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.1.tgz", + "integrity": "sha512-U+Wrbca7S8ZAxAe9L6nb6g8kPdia5hj32Puu5iOqBCMTMWFHXuK6dOV2IFrpedbTV8fjMFLdWNttQTBL6u2MRA==", "dev": true, "dependencies": { - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9", - "source-map": "^0.6.0" + "@types/node": "*", + "jest-util": "^29.6.1", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/test-result": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", - "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "node_modules/@jest/core/node_modules/pretty-format": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.1.tgz", + "integrity": "sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==", "dev": true, "dependencies": { - "@jest/console": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" + "@jest/schemas": "^29.6.0", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/test-sequencer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", - "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "node_modules/@jest/core/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/@jest/core/node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", "dev": true, - "dependencies": { - "@jest/test-result": "^27.5.1", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-runtime": "^27.5.1" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=10" } }, - "node_modules/@jest/transform": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", - "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "node_modules/@jest/core/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { - "@babel/core": "^7.1.0", - "@jest/types": "^27.5.1", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-util": "^27.5.1", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "node_modules/@jest/environment": { + "version": "29.6.2", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.6.2.tgz", + "integrity": "sha512-AEcW43C7huGd/vogTddNNTDRpO6vQ2zaQNrttvWV18ArBx9Z56h7BIsXkNFJVOO4/kblWEQz30ckw0+L3izc+Q==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", + "@jest/fake-timers": "^29.6.2", + "@jest/types": "^29.6.1", "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "jest-mock": "^29.6.2" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/types/node_modules/@types/yargs": { - "version": "16.0.5", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", - "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "node_modules/@jest/expect": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.6.1.tgz", + "integrity": "sha512-N5xlPrAYaRNyFgVf2s9Uyyvr795jnB6rObuPx4QFvNJz8aAjpZUDfO4bh5G/xuplMID8PrnuF1+SfSyDxhsgYg==", "dev": true, "dependencies": { - "@types/yargs-parser": "*" + "expect": "^29.6.1", + "jest-snapshot": "^29.6.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", - "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "node_modules/@jest/expect-utils": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.6.1.tgz", + "integrity": "sha512-o319vIf5pEMx0LmzSxxkYYxo4wrRLKHq9dP1yJU7FoPTB0LfAKSz8SWD6D/6U3v/O52t9cF5t+MeJiRsfk7zMw==", "dev": true, "dependencies": { - "@jridgewell/set-array": "^1.0.0", - "@jridgewell/sourcemap-codec": "^1.4.10" + "jest-get-type": "^29.4.3" }, "engines": { - "node": ">=6.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "node_modules/@jest/expect-utils/node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "dev": true, "engines": { - "node": ">=6.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "node_modules/@jest/fake-timers": { + "version": "29.6.2", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.6.2.tgz", + "integrity": "sha512-euZDmIlWjm1Z0lJ1D0f7a0/y5Kh/koLFMUBE5SUYWrmy8oNhJpbTBDAP6CxKnadcMLDoDf4waRYCe35cH6G6PA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.1", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.6.2", + "jest-mock": "^29.6.2", + "jest-util": "^29.6.2" + }, "engines": { - "node": ">=6.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "node_modules/@jest/fake-timers/node_modules/jest-util": { + "version": "29.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.2.tgz", + "integrity": "sha512-3eX1qb6L88lJNCFlEADKOkjpXJQyZRiavX1INZ4tRnrBVr2COd3RgcTLyUiEXMNBlDU/cgYq6taUS0fExrWW4w==", + "dev": true, "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "node_modules/@jest/globals": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.6.1.tgz", + "integrity": "sha512-2VjpaGy78JY9n9370H8zGRCFbYVWwjY6RdDMhoJHa1sYfwe6XM/azGN0SjY8kk7BOZApIejQ1BFPyH7FPG0w3A==", + "dev": true, "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jest/environment": "^29.6.1", + "@jest/expect": "^29.6.1", + "@jest/types": "^29.6.1", + "jest-mock": "^29.6.1" }, "engines": { - "node": ">=6.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", - "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "node_modules/@juggle/resize-observer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz", - "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==" - }, - "node_modules/@kurkle/color": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@kurkle/color/-/color-0.3.2.tgz", - "integrity": "sha512-fuscdXJ9G1qb7W8VdHi+IwRqij3lBkosAm4ydQtEmbY58OzHXqQhvlxqEkoz0yssNVn38bcpRWgA9PP+OGoisw==" - }, - "node_modules/@leichtgewicht/ip-codec": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", - "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", - "dev": true - }, - "node_modules/@malept/cross-spawn-promise": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz", - "integrity": "sha512-1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg==", + "node_modules/@jest/reporters": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.6.1.tgz", + "integrity": "sha512-9zuaI9QKr9JnoZtFQlw4GREQbxgmNYXU6QuWtmuODvk5nvPUeBYapVR/VYMyi2WSx3jXTLJTJji8rN6+Cm4+FA==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/malept" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" - } - ], "dependencies": { - "cross-spawn": "^7.0.1" + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.6.1", + "@jest/test-result": "^29.6.1", + "@jest/transform": "^29.6.1", + "@jest/types": "^29.6.1", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.6.1", + "jest-util": "^29.6.1", + "jest-worker": "^29.6.1", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" }, "engines": { - "node": ">= 12.13.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/@malept/flatpak-bundler": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz", - "integrity": "sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==", + "node_modules/@jest/reporters/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", "dev": true, "dependencies": { - "debug": "^4.1.1", - "fs-extra": "^9.0.0", - "lodash": "^4.17.15", - "tmp-promise": "^3.0.2" + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">= 10.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@malept/flatpak-bundler/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "node_modules/@jest/reporters/node_modules/jest-worker": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.1.tgz", + "integrity": "sha512-U+Wrbca7S8ZAxAe9L6nb6g8kPdia5hj32Puu5iOqBCMTMWFHXuK6dOV2IFrpedbTV8fjMFLdWNttQTBL6u2MRA==", "dev": true, "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "@types/node": "*", + "jest-util": "^29.6.1", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": ">=10" - } - }, - "node_modules/@mapbox/node-pre-gyp": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", - "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==", - "dependencies": { - "detect-libc": "^2.0.0", - "https-proxy-agent": "^5.0.0", - "make-dir": "^3.1.0", - "node-fetch": "^2.6.7", - "nopt": "^5.0.0", - "npmlog": "^5.0.1", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.11" - }, - "bin": { - "node-pre-gyp": "bin/node-pre-gyp" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@mapbox/node-pre-gyp/node_modules/are-we-there-yet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" + "has-flag": "^4.0.0" }, "engines": { "node": ">=10" - } - }, - "node_modules/@mapbox/node-pre-gyp/node_modules/gauge": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", - "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" }, - "engines": { - "node": ">=10" + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/@mapbox/node-pre-gyp/node_modules/nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "node_modules/@jest/schemas": { + "version": "29.6.0", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.0.tgz", + "integrity": "sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==", + "dev": true, "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" + "@sinclair/typebox": "^0.27.8" }, "engines": { - "node": ">=6" - } - }, - "node_modules/@mapbox/node-pre-gyp/node_modules/npmlog": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", - "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", - "dependencies": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^3.0.0", - "set-blocking": "^2.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@microlink/react-json-view": { - "version": "1.22.2", - "resolved": "https://registry.npmjs.org/@microlink/react-json-view/-/react-json-view-1.22.2.tgz", - "integrity": "sha512-liJzdlbspT5GbEuPffw4jzZfXOypKLK1Er9br03T31bAaIi/WptZqpcJaXPi7OmwC7v/YYczCkmAS7WaEfItPQ==", + "node_modules/@jest/source-map": { + "version": "29.6.0", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.0.tgz", + "integrity": "sha512-oA+I2SHHQGxDCZpbrsCQSoMLb3Bz547JnM+jUr9qEbuw0vQlWZfpPS7CO9J7XiwKicEz9OFn/IYoLkkiUD7bzA==", + "dev": true, "dependencies": { - "flux": "~4.0.1", - "react-base16-styling": "~0.6.0", - "react-lifecycles-compat": "~3.0.4", - "react-textarea-autosize": "~8.3.2" + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" }, - "peerDependencies": { - "react": ">= 15", - "react-dom": ">= 15" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@microlink/react-json-view/node_modules/flux": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.3.tgz", - "integrity": "sha512-yKAbrp7JhZhj6uiT1FTuVMlIAT1J4jqEyBpFApi1kxpGZCvacMVc/t1pMQyotqHhAgvoE3bNvAykhCo2CLjnYw==", + "node_modules/@jest/test-result": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.6.1.tgz", + "integrity": "sha512-Ynr13ZRcpX6INak0TPUukU8GWRfm/vAytE3JbJNGAvINySWYdfE7dGZMbk36oVuK4CigpbhMn8eg1dixZ7ZJOw==", + "dev": true, "dependencies": { - "fbemitter": "^3.0.0", - "fbjs": "^3.0.1" + "@jest/console": "^29.6.1", + "@jest/types": "^29.6.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" }, - "peerDependencies": { - "react": "^15.0.2 || ^16.0.0 || ^17.0.0" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { - "version": "5.1.1-v1", - "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", - "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "node_modules/@jest/test-sequencer": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.6.1.tgz", + "integrity": "sha512-oBkC36PCDf/wb6dWeQIhaviU0l5u6VCsXa119yqdUosYAt7/FbQU2M2UoziO3igj/HBDEgp57ONQ3fm0v9uyyg==", "dev": true, "dependencies": { - "eslint-scope": "5.1.1" + "@jest/test-result": "^29.6.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "node_modules/@jest/test-sequencer/node_modules/jest-haste-map": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.1.tgz", + "integrity": "sha512-0m7f9PZXxOCk1gRACiVgX85knUKPKLPg4oRCjLoqIm9brTHXaorMA0JpmtmVkQiT8nmXyIVoZd/nnH1cfC33ig==", "dev": true, "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" + "@jest/types": "^29.6.1", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.6.1", + "jest-worker": "^29.6.1", + "micromatch": "^4.0.4", + "walker": "^1.0.8" }, "engines": { - "node": ">= 8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "node_modules/@jest/test-sequencer/node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", "dev": true, "engines": { - "node": ">= 8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "node_modules/@jest/test-sequencer/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", "dev": true, "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">= 8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@npmcli/fs": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", - "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", + "node_modules/@jest/test-sequencer/node_modules/jest-worker": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.1.tgz", + "integrity": "sha512-U+Wrbca7S8ZAxAe9L6nb6g8kPdia5hj32Puu5iOqBCMTMWFHXuK6dOV2IFrpedbTV8fjMFLdWNttQTBL6u2MRA==", "dev": true, "dependencies": { - "@gar/promisify": "^1.1.3", - "semver": "^7.3.5" + "@types/node": "*", + "jest-util": "^29.6.1", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@npmcli/move-file": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz", - "integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==", - "deprecated": "This functionality has been moved to @npmcli/fs", + "node_modules/@jest/test-sequencer/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" + "has-flag": "^4.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", - "integrity": "sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==", + "node_modules/@jest/transform": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.6.1.tgz", + "integrity": "sha512-URnTneIU3ZjRSaf906cvf6Hpox3hIeJXRnz3VDSw5/X93gR8ycdfSIEy19FlVx8NFmpN7fe3Gb1xF+NjXaQLWg==", "dev": true, "dependencies": { - "ansi-html-community": "^0.0.8", - "common-path-prefix": "^3.0.0", - "core-js-pure": "^3.23.3", - "error-stack-parser": "^2.0.6", - "find-up": "^5.0.0", - "html-entities": "^2.1.0", - "loader-utils": "^2.0.4", - "schema-utils": "^3.0.0", - "source-map": "^0.7.3" + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.1", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.1", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.6.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" }, "engines": { - "node": ">= 10.13" - }, - "peerDependencies": { - "@types/webpack": "4.x || 5.x", - "react-refresh": ">=0.10.0 <1.0.0", - "sockjs-client": "^1.4.0", - "type-fest": ">=0.17.0 <4.0.0", - "webpack": ">=4.43.0 <6.0.0", - "webpack-dev-server": "3.x || 4.x", - "webpack-hot-middleware": "2.x", - "webpack-plugin-serve": "0.x || 1.x" - }, - "peerDependenciesMeta": { - "@types/webpack": { - "optional": true - }, - "sockjs-client": { - "optional": true - }, - "type-fest": { - "optional": true - }, - "webpack-dev-server": { - "optional": true - }, - "webpack-hot-middleware": { - "optional": true - }, - "webpack-plugin-serve": { - "optional": true - } + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "node_modules/@jest/transform/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/@jest/transform/node_modules/jest-haste-map": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.1.tgz", + "integrity": "sha512-0m7f9PZXxOCk1gRACiVgX85knUKPKLPg4oRCjLoqIm9brTHXaorMA0JpmtmVkQiT8nmXyIVoZd/nnH1cfC33ig==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "@jest/types": "^29.6.1", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.6.1", + "jest-worker": "^29.6.1", + "micromatch": "^4.0.4", + "walker": "^1.0.8" }, "engines": { - "node": ">= 10.13.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "node_modules/@jest/transform/node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", "dev": true, "engines": { - "node": ">= 8" - } - }, - "node_modules/@popperjs/core": { - "version": "2.11.6", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz", - "integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/popperjs" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@react-aria/ssr": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.5.0.tgz", - "integrity": "sha512-h0MJdSWOd1qObLnJ8mprU31wI8tmKFJMuwT22MpWq6psisOOZaga6Ml4u6Ee6M6duWWISjXvqO4Sb/J0PBA+nQ==", + "node_modules/@jest/transform/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", + "dev": true, "dependencies": { - "@swc/helpers": "^0.4.14" + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0" - } - }, - "node_modules/@remix-run/router": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.3.3.tgz", - "integrity": "sha512-YRHie1yQEj0kqqCTCJEfHqYSSNlZQ696QJG+MMiW4mxSl9I0ojz/eRhJS4fs88Z5i6D1SmoF9d3K99/QOhI8/w==", "engines": { - "node": ">=14" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@restart/hooks": { - "version": "0.4.9", - "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.9.tgz", - "integrity": "sha512-3BekqcwB6Umeya+16XPooARn4qEPW6vNvwYnlofIYe6h9qG1/VeD7UvShCWx11eFz5ELYmwIEshz+MkPX3wjcQ==", - "dependencies": { - "dequal": "^2.0.2" - }, - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@restart/ui": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.6.1.tgz", - "integrity": "sha512-cMI9DdqZV5VGEyANYM4alHK9/2Lh/mKZAMydztMl6PBLm6EetFbwE2RfYqliloR+EtEULlI4TiZk/XPhQAovxw==", + "node_modules/@jest/transform/node_modules/jest-worker": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.1.tgz", + "integrity": "sha512-U+Wrbca7S8ZAxAe9L6nb6g8kPdia5hj32Puu5iOqBCMTMWFHXuK6dOV2IFrpedbTV8fjMFLdWNttQTBL6u2MRA==", + "dev": true, "dependencies": { - "@babel/runtime": "^7.20.7", - "@popperjs/core": "^2.11.6", - "@react-aria/ssr": "^3.4.1", - "@restart/hooks": "^0.4.7", - "@types/warning": "^3.0.0", - "dequal": "^2.0.3", - "dom-helpers": "^5.2.0", - "uncontrollable": "^7.2.1", - "warning": "^4.0.3" + "@types/node": "*", + "jest-util": "^29.6.1", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, - "peerDependencies": { - "react": ">=16.14.0", - "react-dom": ">=16.14.0" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@rollup/plugin-babel": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", - "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", + "node_modules/@jest/transform/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.10.4", - "@rollup/pluginutils": "^3.1.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">= 10.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0", - "@types/babel__core": "^7.1.9", - "rollup": "^1.20.0||^2.0.0" + "node": ">=10" }, - "peerDependenciesMeta": { - "@types/babel__core": { - "optional": true - } + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/@rollup/plugin-node-resolve": { - "version": "11.2.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", - "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "node_modules/@jest/types": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.1.tgz", + "integrity": "sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw==", "dev": true, "dependencies": { - "@rollup/pluginutils": "^3.1.0", - "@types/resolve": "1.17.1", - "builtin-modules": "^3.1.0", - "deepmerge": "^4.2.2", - "is-module": "^1.0.0", - "resolve": "^1.19.0" + "@jest/schemas": "^29.6.0", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" }, "engines": { - "node": ">= 10.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@rollup/plugin-replace": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", - "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "node_modules/@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", "dev": true, "dependencies": { - "@rollup/pluginutils": "^3.1.0", - "magic-string": "^0.25.7" + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" }, - "peerDependencies": { - "rollup": "^1.20.0 || ^2.0.0" + "engines": { + "node": ">=6.0.0" } }, - "node_modules/@rollup/pluginutils": { + "node_modules/@jridgewell/resolve-uri": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", - "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", - "dev": true, - "dependencies": { - "@types/estree": "0.0.39", - "estree-walker": "^1.0.1", - "picomatch": "^2.2.2" - }, + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", "engines": { - "node": ">= 8.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0" + "node": ">=6.0.0" } }, - "node_modules/@rollup/pluginutils/node_modules/@types/estree": { - "version": "0.0.39", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", - "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", - "dev": true - }, - "node_modules/@rushstack/eslint-patch": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", - "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==", - "dev": true - }, - "node_modules/@sinclair/typebox": { - "version": "0.24.51", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", - "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", - "dev": true - }, - "node_modules/@sindresorhus/is": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" + "node": ">=6.0.0" } }, - "node_modules/@sinonjs/commons": { - "version": "1.8.6", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", - "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", - "dev": true, + "node_modules/@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", "dependencies": { - "type-detect": "4.0.8" + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" } }, - "node_modules/@sinonjs/fake-timers": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", - "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", - "dev": true, + "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", "dependencies": { - "@sinonjs/commons": "^1.7.0" + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" } }, - "node_modules/@surma/rollup-plugin-off-main-thread": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", - "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", - "dev": true, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "dependencies": { - "ejs": "^3.1.6", - "json5": "^2.2.0", - "magic-string": "^0.25.0", - "string.prototype.matchall": "^4.0.6" + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" } }, - "node_modules/@svgr/babel-plugin-add-jsx-attribute": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.5.1.tgz", - "integrity": "sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "node_modules/@juggle/resize-observer": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz", + "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==" }, - "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.5.0.tgz", - "integrity": "sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==", + "node_modules/@kurkle/color": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@kurkle/color/-/color-0.3.2.tgz", + "integrity": "sha512-fuscdXJ9G1qb7W8VdHi+IwRqij3lBkosAm4ydQtEmbY58OzHXqQhvlxqEkoz0yssNVn38bcpRWgA9PP+OGoisw==" + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "dev": true + }, + "node_modules/@malept/cross-spawn-promise": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz", + "integrity": "sha512-1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/malept" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" + } + ], + "dependencies": { + "cross-spawn": "^7.0.1" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">= 12.13.0" } }, - "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.5.0.tgz", - "integrity": "sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==", + "node_modules/@malept/flatpak-bundler": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz", + "integrity": "sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "dependencies": { + "debug": "^4.1.1", + "fs-extra": "^9.0.0", + "lodash": "^4.17.15", + "tmp-promise": "^3.0.2" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">= 10.0.0" } }, - "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.5.1.tgz", - "integrity": "sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==", + "node_modules/@malept/flatpak-bundler/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, "engines": { "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@svgr/babel-plugin-svg-dynamic-title": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.5.1.tgz", - "integrity": "sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "node_modules/@mapbox/node-pre-gyp": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", + "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==", + "dependencies": { + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "bin": { + "node-pre-gyp": "bin/node-pre-gyp" } }, - "node_modules/@svgr/babel-plugin-svg-em-dimensions": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.5.1.tgz", - "integrity": "sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==", - "dev": true, + "node_modules/@mapbox/node-pre-gyp/node_modules/are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, "engines": { "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@svgr/babel-plugin-transform-react-native-svg": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.5.1.tgz", - "integrity": "sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==", - "dev": true, + "node_modules/@mapbox/node-pre-gyp/node_modules/gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + }, "engines": { "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@svgr/babel-plugin-transform-svg-component": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.5.1.tgz", - "integrity": "sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==", - "dev": true, - "engines": { - "node": ">=12" + "node_modules/@mapbox/node-pre-gyp/node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dependencies": { + "abbrev": "1" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "bin": { + "nopt": "bin/nopt.js" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">=6" } }, - "node_modules/@svgr/babel-preset": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.5.1.tgz", - "integrity": "sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==", - "dev": true, + "node_modules/@mapbox/node-pre-gyp/node_modules/npmlog": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", "dependencies": { - "@svgr/babel-plugin-add-jsx-attribute": "^6.5.1", - "@svgr/babel-plugin-remove-jsx-attribute": "*", - "@svgr/babel-plugin-remove-jsx-empty-expression": "*", - "@svgr/babel-plugin-replace-jsx-attribute-value": "^6.5.1", - "@svgr/babel-plugin-svg-dynamic-title": "^6.5.1", - "@svgr/babel-plugin-svg-em-dimensions": "^6.5.1", - "@svgr/babel-plugin-transform-react-native-svg": "^6.5.1", - "@svgr/babel-plugin-transform-svg-component": "^6.5.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } + }, + "node_modules/@microlink/react-json-view": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/@microlink/react-json-view/-/react-json-view-1.22.2.tgz", + "integrity": "sha512-liJzdlbspT5GbEuPffw4jzZfXOypKLK1Er9br03T31bAaIi/WptZqpcJaXPi7OmwC7v/YYczCkmAS7WaEfItPQ==", + "dependencies": { + "flux": "~4.0.1", + "react-base16-styling": "~0.6.0", + "react-lifecycles-compat": "~3.0.4", + "react-textarea-autosize": "~8.3.2" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "react": ">= 15", + "react-dom": ">= 15" } }, - "node_modules/@svgr/core": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-6.5.1.tgz", - "integrity": "sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==", - "dev": true, + "node_modules/@microlink/react-json-view/node_modules/flux": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.3.tgz", + "integrity": "sha512-yKAbrp7JhZhj6uiT1FTuVMlIAT1J4jqEyBpFApi1kxpGZCvacMVc/t1pMQyotqHhAgvoE3bNvAykhCo2CLjnYw==", "dependencies": { - "@babel/core": "^7.19.6", - "@svgr/babel-preset": "^6.5.1", - "@svgr/plugin-jsx": "^6.5.1", - "camelcase": "^6.2.0", - "cosmiconfig": "^7.0.1" - }, - "engines": { - "node": ">=10" + "fbemitter": "^3.0.0", + "fbjs": "^3.0.1" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "peerDependencies": { + "react": "^15.0.2 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@svgr/hast-util-to-babel-ast": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.5.1.tgz", - "integrity": "sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==", + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", "dev": true, "dependencies": { - "@babel/types": "^7.20.0", - "entities": "^4.4.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "eslint-scope": "5.1.1" } }, - "node_modules/@svgr/plugin-jsx": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.5.1.tgz", - "integrity": "sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==", + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "dependencies": { - "@babel/core": "^7.19.6", - "@svgr/babel-preset": "^6.5.1", - "@svgr/hast-util-to-babel-ast": "^6.5.1", - "svg-parser": "^2.0.4" + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" }, "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@svgr/core": "^6.0.0" + "node": ">= 8" } }, - "node_modules/@svgr/plugin-svgo": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-6.5.1.tgz", - "integrity": "sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==", + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, - "dependencies": { - "cosmiconfig": "^7.0.1", - "deepmerge": "^4.2.2", - "svgo": "^2.8.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@svgr/core": "*" + "node": ">= 8" } }, - "node_modules/@svgr/webpack": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-6.5.1.tgz", - "integrity": "sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==", + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "dependencies": { - "@babel/core": "^7.19.6", - "@babel/plugin-transform-react-constant-elements": "^7.18.12", - "@babel/preset-env": "^7.19.4", - "@babel/preset-react": "^7.18.6", - "@babel/preset-typescript": "^7.18.6", - "@svgr/core": "^6.5.1", - "@svgr/plugin-jsx": "^6.5.1", - "@svgr/plugin-svgo": "^6.5.1" + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "node": ">= 8" } }, - "node_modules/@swc/helpers": { - "version": "0.4.14", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz", - "integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==", + "node_modules/@npmcli/fs": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", + "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", + "dev": true, "dependencies": { - "tslib": "^2.4.0" + "@gar/promisify": "^1.1.3", + "semver": "^7.3.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/@szmarczak/http-timer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", - "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "node_modules/@npmcli/move-file": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz", + "integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==", + "deprecated": "This functionality has been moved to @npmcli/fs", + "dev": true, "dependencies": { - "defer-to-connect": "^2.0.0" + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" }, "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", + "integrity": "sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==", "dev": true, + "dependencies": { + "ansi-html-community": "^0.0.8", + "common-path-prefix": "^3.0.0", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "find-up": "^5.0.0", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^3.0.0", + "source-map": "^0.7.3" + }, "engines": { - "node": ">= 10" + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <4.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } } }, - "node_modules/@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, "engines": { - "node": ">=10.13.0" + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/@types/babel__core": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", - "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "dev": true, - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" + "engines": { + "node": ">= 8" } }, - "node_modules/@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.0.0" + "node_modules/@popperjs/core": { + "version": "2.11.6", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz", + "integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" } }, - "node_modules/@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", - "dev": true, + "node_modules/@react-aria/ssr": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.5.0.tgz", + "integrity": "sha512-h0MJdSWOd1qObLnJ8mprU31wI8tmKFJMuwT22MpWq6psisOOZaga6Ml4u6Ee6M6duWWISjXvqO4Sb/J0PBA+nQ==", "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" + "@swc/helpers": "^0.4.14" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0" } }, - "node_modules/@types/babel__traverse": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz", - "integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==", - "dev": true, - "dependencies": { - "@babel/types": "^7.3.0" + "node_modules/@remix-run/router": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.3.3.tgz", + "integrity": "sha512-YRHie1yQEj0kqqCTCJEfHqYSSNlZQ696QJG+MMiW4mxSl9I0ojz/eRhJS4fs88Z5i6D1SmoF9d3K99/QOhI8/w==", + "engines": { + "node": ">=14" } }, - "node_modules/@types/bluebird": { - "version": "3.5.38", - "resolved": "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.38.tgz", - "integrity": "sha512-yR/Kxc0dd4FfwtEoLZMoqJbM/VE/W7hXn/MIjb+axcwag0iFmSPK7OBUZq1YWLynJUoWQkfUrI7T0HDqGApNSg==", - "dev": true - }, - "node_modules/@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", - "dev": true, + "node_modules/@restart/hooks": { + "version": "0.4.9", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.9.tgz", + "integrity": "sha512-3BekqcwB6Umeya+16XPooARn4qEPW6vNvwYnlofIYe6h9qG1/VeD7UvShCWx11eFz5ELYmwIEshz+MkPX3wjcQ==", "dependencies": { - "@types/connect": "*", - "@types/node": "*" + "dequal": "^2.0.2" + }, + "peerDependencies": { + "react": ">=16.8.0" } }, - "node_modules/@types/bonjour": { - "version": "3.5.10", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", - "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", - "dev": true, + "node_modules/@restart/ui": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.6.1.tgz", + "integrity": "sha512-cMI9DdqZV5VGEyANYM4alHK9/2Lh/mKZAMydztMl6PBLm6EetFbwE2RfYqliloR+EtEULlI4TiZk/XPhQAovxw==", "dependencies": { - "@types/node": "*" + "@babel/runtime": "^7.20.7", + "@popperjs/core": "^2.11.6", + "@react-aria/ssr": "^3.4.1", + "@restart/hooks": "^0.4.7", + "@types/warning": "^3.0.0", + "dequal": "^2.0.3", + "dom-helpers": "^5.2.0", + "uncontrollable": "^7.2.1", + "warning": "^4.0.3" + }, + "peerDependencies": { + "react": ">=16.14.0", + "react-dom": ">=16.14.0" } }, - "node_modules/@types/c3": { - "version": "0.7.8", - "resolved": "https://registry.npmjs.org/@types/c3/-/c3-0.7.8.tgz", - "integrity": "sha512-qUhbhHIa7SzpDZVHTUx51XUKPzkG3xLHKZGhwvfIs5Fy3NSc8qtH8I1u6N3Dp44Ih54qyUMw6xTIiDuOUBanxA==", + "node_modules/@rollup/plugin-babel": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", + "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", "dev": true, "dependencies": { - "@types/d3": "^4" + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "@types/babel__core": "^7.1.9", + "rollup": "^1.20.0||^2.0.0" + }, + "peerDependenciesMeta": { + "@types/babel__core": { + "optional": true + } } }, - "node_modules/@types/c3/node_modules/@types/d3": { - "version": "4.13.12", - "resolved": "https://registry.npmjs.org/@types/d3/-/d3-4.13.12.tgz", - "integrity": "sha512-/bbFtkOBc04gGGN8N9rMG5ps3T0eIj5I8bnYe9iIyeM5qoOrydPCbFYlEPUnj2h9ibc2i+QZfDam9jY5XTrTxQ==", + "node_modules/@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", "dev": true, "dependencies": { - "@types/d3-array": "^1", - "@types/d3-axis": "^1", - "@types/d3-brush": "^1", - "@types/d3-chord": "^1", - "@types/d3-collection": "*", - "@types/d3-color": "^1", - "@types/d3-dispatch": "^1", - "@types/d3-drag": "^1", - "@types/d3-dsv": "^1", - "@types/d3-ease": "^1", - "@types/d3-force": "^1", - "@types/d3-format": "^1", - "@types/d3-geo": "^1", - "@types/d3-hierarchy": "^1", - "@types/d3-interpolate": "^1", - "@types/d3-path": "^1", - "@types/d3-polygon": "^1", - "@types/d3-quadtree": "^1", - "@types/d3-queue": "*", - "@types/d3-random": "^1", - "@types/d3-request": "*", - "@types/d3-scale": "^1", - "@types/d3-selection": "^1", - "@types/d3-shape": "^1", - "@types/d3-time": "^1", - "@types/d3-time-format": "^2", - "@types/d3-timer": "^1", - "@types/d3-transition": "^1", - "@types/d3-voronoi": "*", - "@types/d3-zoom": "^1" + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">= 10.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" } }, - "node_modules/@types/c3/node_modules/@types/d3-array": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-1.2.9.tgz", - "integrity": "sha512-E/7RgPr2ylT5dWG0CswMi9NpFcjIEDqLcUSBgNHe/EMahfqYaTx4zhcggG3khqoEB/leY4Vl6nTSbwLUPjXceA==", - "dev": true - }, - "node_modules/@types/c3/node_modules/@types/d3-axis": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/@types/d3-axis/-/d3-axis-1.0.16.tgz", - "integrity": "sha512-p7085weOmo4W+DzlRRVC/7OI/jugaKbVa6WMQGCQscaMylcbuaVEGk7abJLNyGVFLeCBNrHTdDiqRGnzvL0nXQ==", + "node_modules/@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", "dev": true, "dependencies": { - "@types/d3-selection": "^1" + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" } }, - "node_modules/@types/c3/node_modules/@types/d3-brush": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/@types/d3-brush/-/d3-brush-1.1.5.tgz", - "integrity": "sha512-4zGkBafJf5zCsBtLtvDj/pNMo5X9+Ii/1hUz0GvQ+wEwelUBm2AbIDAzJnp2hLDFF307o0fhxmmocHclhXC+tw==", + "node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", "dev": true, "dependencies": { - "@types/d3-selection": "^1" + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" } }, - "node_modules/@types/c3/node_modules/@types/d3-chord": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@types/d3-chord/-/d3-chord-1.0.11.tgz", - "integrity": "sha512-0DdfJ//bxyW3G9Nefwq/LDgazSKNN8NU0lBT3Cza6uVuInC2awMNsAcv1oKyRFLn9z7kXClH5XjwpveZjuz2eg==", + "node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", "dev": true }, - "node_modules/@types/c3/node_modules/@types/d3-color": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-1.4.2.tgz", - "integrity": "sha512-fYtiVLBYy7VQX+Kx7wU/uOIkGQn8aAEY8oWMoyja3N4dLd8Yf6XgSIR/4yWvMuveNOH5VShnqCgRqqh/UNanBA==", + "node_modules/@rushstack/eslint-patch": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", + "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==", "dev": true }, - "node_modules/@types/c3/node_modules/@types/d3-dispatch": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-1.0.9.tgz", - "integrity": "sha512-zJ44YgjqALmyps+II7b1mZLhrtfV/FOxw9owT87mrweGWcg+WK5oiJX2M3SYJ0XUAExBduarysfgbR11YxzojQ==", + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", "dev": true }, - "node_modules/@types/c3/node_modules/@types/d3-drag": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-1.2.5.tgz", - "integrity": "sha512-7NeTnfolst1Js3Vs7myctBkmJWu6DMI3k597AaHUX98saHjHWJ6vouT83UrpE+xfbSceHV+8A0JgxuwgqgmqWw==", + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", "dev": true, "dependencies": { - "@types/d3-selection": "^1" + "type-detect": "4.0.8" } }, - "node_modules/@types/c3/node_modules/@types/d3-dsv": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-1.2.2.tgz", - "integrity": "sha512-GRnz9z8ypqb7OsQ/xw/BmFAp0/k3pgM1s19FTZZSlCMY0EvyVTkU8xzZKKDXzytGXPpTNC4R5pGl9oxEvVSnHQ==", - "dev": true - }, - "node_modules/@types/c3/node_modules/@types/d3-ease": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-1.0.11.tgz", - "integrity": "sha512-wUigPL0kleGZ9u3RhzBP07lxxkMcUjL5IODP42mN/05UNL+JJCDnpEPpFbJiPvLcTeRKGIRpBBJyP/1BNwYsVA==", - "dev": true + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } }, - "node_modules/@types/c3/node_modules/@types/d3-force": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-1.2.4.tgz", - "integrity": "sha512-fkorLTKvt6AQbFBQwn4aq7h9rJ4c7ZVcPMGB8X6eFFveAyMZcv7t7m6wgF4Eg93rkPgPORU7sAho1QSHNcZu6w==", - "dev": true - }, - "node_modules/@types/c3/node_modules/@types/d3-format": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-1.4.2.tgz", - "integrity": "sha512-WeGCHAs7PHdZYq6lwl/+jsl+Nfc1J2W1kNcMeIMYzQsT6mtBDBgtJ/rcdjZ0k0rVIvqEZqhhuD5TK/v3P2gFHQ==", - "dev": true - }, - "node_modules/@types/c3/node_modules/@types/d3-geo": { - "version": "1.12.4", - "resolved": "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-1.12.4.tgz", - "integrity": "sha512-lNDaAuOaML6w2d1XE0Txr5YOXLBQSF1q2IU6eXh/u1TTPQSm2Ah+TMIub1+CIMq8J/7DOzi5Cr8/yHqjNvqLKA==", + "node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", "dev": true, "dependencies": { - "@types/geojson": "*" + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" } }, - "node_modules/@types/c3/node_modules/@types/d3-hierarchy": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/@types/d3-hierarchy/-/d3-hierarchy-1.1.8.tgz", - "integrity": "sha512-AbStKxNyWiMDQPGDguG2Kuhlq1Sv539pZSxYbx4UZeYkutpPwXCcgyiRrlV4YH64nIOsKx7XVnOMy9O7rJsXkg==", - "dev": true - }, - "node_modules/@types/c3/node_modules/@types/d3-interpolate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-1.4.2.tgz", - "integrity": "sha512-ylycts6llFf8yAEs1tXzx2loxxzDZHseuhPokrqKprTQSTcD3JbJI1omZP1rphsELZO3Q+of3ff0ZS7+O6yVzg==", + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.5.1.tgz", + "integrity": "sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==", "dev": true, - "dependencies": { - "@types/d3-color": "^1" + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/c3/node_modules/@types/d3-path": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-1.0.9.tgz", - "integrity": "sha512-NaIeSIBiFgSC6IGUBjZWcscUJEq7vpVu7KthHN8eieTV9d9MqkSOZLH4chq1PmcKy06PNe3axLeKmRIyxJ+PZQ==", - "dev": true - }, - "node_modules/@types/c3/node_modules/@types/d3-polygon": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/@types/d3-polygon/-/d3-polygon-1.0.8.tgz", - "integrity": "sha512-1TOJPXCBJC9V3+K3tGbTqD/CsqLyv/YkTXAcwdsZzxqw5cvpdnCuDl42M4Dvi8XzMxZNCT9pL4ibrK2n4VmAcw==", - "dev": true - }, - "node_modules/@types/c3/node_modules/@types/d3-quadtree": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@types/d3-quadtree/-/d3-quadtree-1.0.9.tgz", - "integrity": "sha512-5E0OJJn2QVavITFEc1AQlI8gLcIoDZcTKOD3feKFckQVmFV4CXhqRFt83tYNVNIN4ZzRkjlAMavJa1ldMhf5rA==", - "dev": true - }, - "node_modules/@types/c3/node_modules/@types/d3-random": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-1.1.3.tgz", - "integrity": "sha512-XXR+ZbFCoOd4peXSMYJzwk0/elP37WWAzS/DG+90eilzVbUSsgKhBcWqylGWe+lA2ubgr7afWAOBaBxRgMUrBQ==", - "dev": true - }, - "node_modules/@types/c3/node_modules/@types/d3-scale": { - "version": "1.0.17", - "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-1.0.17.tgz", - "integrity": "sha512-baIP5/gw+PS8Axs1lfZCeIjcOXen/jxQmgFEjbYThwaj2drvivOIrJMh2Ig4MeenrogCH6zkhiOxCPRkvN1scA==", + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.5.0.tgz", + "integrity": "sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==", "dev": true, - "dependencies": { - "@types/d3-time": "^1" + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/c3/node_modules/@types/d3-selection": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-1.4.3.tgz", - "integrity": "sha512-GjKQWVZO6Sa96HiKO6R93VBE8DUW+DDkFpIMf9vpY5S78qZTlRRSNUsHr/afDpF7TvLDV7VxrUFOWW7vdIlYkA==", - "dev": true - }, - "node_modules/@types/c3/node_modules/@types/d3-shape": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-1.3.8.tgz", - "integrity": "sha512-gqfnMz6Fd5H6GOLYixOZP/xlrMtJms9BaS+6oWxTKHNqPGZ93BkWWupQSCYm6YHqx6h9wjRupuJb90bun6ZaYg==", + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.5.0.tgz", + "integrity": "sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==", "dev": true, - "dependencies": { - "@types/d3-path": "^1" + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/c3/node_modules/@types/d3-time": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-1.1.1.tgz", - "integrity": "sha512-ULX7LoqXTCYtM+tLYOaeAJK7IwCT+4Gxlm2MaH0ErKLi07R5lh8NHCAyWcDkCCmx1AfRcBEV6H9QE9R25uP7jw==", - "dev": true - }, - "node_modules/@types/c3/node_modules/@types/d3-time-format": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@types/d3-time-format/-/d3-time-format-2.3.1.tgz", - "integrity": "sha512-fck0Z9RGfIQn3GJIEKVrp15h9m6Vlg0d5XXeiE/6+CQiBmMDZxfR21XtjEPuDeg7gC3bBM0SdieA5XF3GW1wKA==", - "dev": true - }, - "node_modules/@types/c3/node_modules/@types/d3-timer": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-1.0.10.tgz", - "integrity": "sha512-ZnAbquVqy+4ZjdW0cY6URp+qF/AzTVNda2jYyOzpR2cPT35FTXl78s15Bomph9+ckOiI1TtkljnWkwbIGAb6rg==", - "dev": true - }, - "node_modules/@types/c3/node_modules/@types/d3-transition": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-1.3.2.tgz", - "integrity": "sha512-J+a3SuF/E7wXbOSN19p8ZieQSFIm5hU2Egqtndbc54LXaAEOpLfDx4sBu/PKAKzHOdgKK1wkMhINKqNh4aoZAg==", + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.5.1.tgz", + "integrity": "sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==", "dev": true, - "dependencies": { - "@types/d3-selection": "^1" + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/c3/node_modules/@types/d3-zoom": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-1.8.3.tgz", - "integrity": "sha512-3kHkL6sPiDdbfGhzlp5gIHyu3kULhtnHTTAl3UBZVtWB1PzcLL8vdmz5mTx7plLiUqOA2Y+yT2GKjt/TdA2p7Q==", + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.5.1.tgz", + "integrity": "sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==", "dev": true, - "dependencies": { - "@types/d3-interpolate": "^1", - "@types/d3-selection": "^1" - } - }, - "node_modules/@types/cacheable-request": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", - "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", - "dependencies": { - "@types/http-cache-semantics": "*", - "@types/keyv": "^3.1.4", - "@types/node": "*", - "@types/responselike": "^1.0.0" + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.5.1.tgz", + "integrity": "sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==", "dev": true, - "dependencies": { - "@types/node": "*" + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/connect-history-api-fallback": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", - "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.5.1.tgz", + "integrity": "sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==", "dev": true, - "dependencies": { - "@types/express-serve-static-core": "*", - "@types/node": "*" + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/continuation-local-storage": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/@types/continuation-local-storage/-/continuation-local-storage-3.2.4.tgz", - "integrity": "sha512-OT32vCVMymU1JMPKDeY0lX3cduAr0Pm/VwIbxygMeDS4lRcv57qYXn9bMwBRcRnEpXKBb/r4xYaZCARTZllP0A==", + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.5.1.tgz", + "integrity": "sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==", "dev": true, - "dependencies": { - "@types/node": "*" + "engines": { + "node": ">=12" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/d3": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@types/d3/-/d3-7.4.0.tgz", - "integrity": "sha512-jIfNVK0ZlxcuRDKtRS/SypEyOQ6UHaFQBKv032X45VvxSJ6Yi5G9behy9h6tNTHTDGh5Vq+KbmBjUWLgY4meCA==", + "node_modules/@svgr/babel-preset": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.5.1.tgz", + "integrity": "sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==", "dev": true, "dependencies": { - "@types/d3-array": "*", - "@types/d3-axis": "*", - "@types/d3-brush": "*", - "@types/d3-chord": "*", - "@types/d3-color": "*", - "@types/d3-contour": "*", - "@types/d3-delaunay": "*", - "@types/d3-dispatch": "*", - "@types/d3-drag": "*", - "@types/d3-dsv": "*", - "@types/d3-ease": "*", - "@types/d3-fetch": "*", - "@types/d3-force": "*", - "@types/d3-format": "*", - "@types/d3-geo": "*", - "@types/d3-hierarchy": "*", - "@types/d3-interpolate": "*", - "@types/d3-path": "*", - "@types/d3-polygon": "*", - "@types/d3-quadtree": "*", - "@types/d3-random": "*", - "@types/d3-scale": "*", - "@types/d3-scale-chromatic": "*", - "@types/d3-selection": "*", - "@types/d3-shape": "*", - "@types/d3-time": "*", - "@types/d3-time-format": "*", - "@types/d3-timer": "*", - "@types/d3-transition": "*", - "@types/d3-zoom": "*" + "@svgr/babel-plugin-add-jsx-attribute": "^6.5.1", + "@svgr/babel-plugin-remove-jsx-attribute": "*", + "@svgr/babel-plugin-remove-jsx-empty-expression": "*", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^6.5.1", + "@svgr/babel-plugin-svg-dynamic-title": "^6.5.1", + "@svgr/babel-plugin-svg-em-dimensions": "^6.5.1", + "@svgr/babel-plugin-transform-react-native-svg": "^6.5.1", + "@svgr/babel-plugin-transform-svg-component": "^6.5.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/d3-array": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.0.4.tgz", - "integrity": "sha512-nwvEkG9vYOc0Ic7G7kwgviY4AQlTfYGIZ0fqB7CQHXGyYM6nO7kJh5EguSNA3jfh4rq7Sb7eMVq8isuvg2/miQ==", - "dev": true - }, - "node_modules/@types/d3-axis": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-axis/-/d3-axis-3.0.2.tgz", - "integrity": "sha512-uGC7DBh0TZrU/LY43Fd8Qr+2ja1FKmH07q2FoZFHo1eYl8aj87GhfVoY1saJVJiq24rp1+wpI6BvQJMKgQm8oA==", + "node_modules/@svgr/core": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-6.5.1.tgz", + "integrity": "sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==", "dev": true, "dependencies": { - "@types/d3-selection": "*" + "@babel/core": "^7.19.6", + "@svgr/babel-preset": "^6.5.1", + "@svgr/plugin-jsx": "^6.5.1", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@types/d3-brush": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-brush/-/d3-brush-3.0.2.tgz", - "integrity": "sha512-2TEm8KzUG3N7z0TrSKPmbxByBx54M+S9lHoP2J55QuLU0VSQ9mE96EJSAOVNEqd1bbynMjeTS9VHmz8/bSw8rA==", + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.5.1.tgz", + "integrity": "sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==", "dev": true, "dependencies": { - "@types/d3-selection": "*" + "@babel/types": "^7.20.0", + "entities": "^4.4.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@types/d3-chord": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-chord/-/d3-chord-3.0.2.tgz", - "integrity": "sha512-abT/iLHD3sGZwqMTX1TYCMEulr+wBd0SzyOQnjYNLp7sngdOHYtNkMRI5v3w5thoN+BWtlHVDx2Osvq6fxhZWw==", - "dev": true - }, - "node_modules/@types/d3-collection": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@types/d3-collection/-/d3-collection-1.0.10.tgz", - "integrity": "sha512-54Fdv8u5JbuXymtmXm2SYzi1x/Svt+jfWBU5junkhrCewL92VjqtCBDn97coBRVwVFmYNnVTNDyV8gQyPYfm+A==", - "dev": true - }, - "node_modules/@types/d3-color": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.0.tgz", - "integrity": "sha512-HKuicPHJuvPgCD+np6Se9MQvS6OCbJmOjGvylzMJRlDwUXjKTTXs6Pwgk79O09Vj/ho3u1ofXnhFOaEWWPrlwA==", - "dev": true - }, - "node_modules/@types/d3-contour": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-contour/-/d3-contour-3.0.2.tgz", - "integrity": "sha512-k6/bGDoAGJZnZWaKzeB+9glgXCYGvh6YlluxzBREiVo8f/X2vpTEdgPy9DN7Z2i42PZOZ4JDhVdlTSTSkLDPlQ==", + "node_modules/@svgr/plugin-jsx": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.5.1.tgz", + "integrity": "sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==", "dev": true, "dependencies": { - "@types/d3-array": "*", - "@types/geojson": "*" + "@babel/core": "^7.19.6", + "@svgr/babel-preset": "^6.5.1", + "@svgr/hast-util-to-babel-ast": "^6.5.1", + "svg-parser": "^2.0.4" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@svgr/core": "^6.0.0" } }, - "node_modules/@types/d3-delaunay": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@types/d3-delaunay/-/d3-delaunay-6.0.1.tgz", - "integrity": "sha512-tLxQ2sfT0p6sxdG75c6f/ekqxjyYR0+LwPrsO1mbC9YDBzPJhs2HbJJRrn8Ez1DBoHRo2yx7YEATI+8V1nGMnQ==", - "dev": true - }, - "node_modules/@types/d3-dispatch": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-3.0.2.tgz", - "integrity": "sha512-rxN6sHUXEZYCKV05MEh4z4WpPSqIw+aP7n9ZN6WYAAvZoEAghEK1WeVZMZcHRBwyaKflU43PCUAJNjFxCzPDjg==", - "dev": true + "node_modules/@svgr/plugin-svgo": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-6.5.1.tgz", + "integrity": "sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==", + "dev": true, + "dependencies": { + "cosmiconfig": "^7.0.1", + "deepmerge": "^4.2.2", + "svgo": "^2.8.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@svgr/core": "*" + } }, - "node_modules/@types/d3-drag": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.2.tgz", - "integrity": "sha512-qmODKEDvyKWVHcWWCOVcuVcOwikLVsyc4q4EBJMREsoQnR2Qoc2cZQUyFUPgO9q4S3qdSqJKBsuefv+h0Qy+tw==", + "node_modules/@svgr/webpack": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-6.5.1.tgz", + "integrity": "sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==", "dev": true, "dependencies": { - "@types/d3-selection": "*" + "@babel/core": "^7.19.6", + "@babel/plugin-transform-react-constant-elements": "^7.18.12", + "@babel/preset-env": "^7.19.4", + "@babel/preset-react": "^7.18.6", + "@babel/preset-typescript": "^7.18.6", + "@svgr/core": "^6.5.1", + "@svgr/plugin-jsx": "^6.5.1", + "@svgr/plugin-svgo": "^6.5.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@types/d3-dsv": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-3.0.1.tgz", - "integrity": "sha512-76pBHCMTvPLt44wFOieouXcGXWOF0AJCceUvaFkxSZEu4VDUdv93JfpMa6VGNFs01FHfuP4a5Ou68eRG1KBfTw==", - "dev": true + "node_modules/@swc/helpers": { + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz", + "integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==", + "dependencies": { + "tslib": "^2.4.0" + } }, - "node_modules/@types/d3-ease": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.0.tgz", - "integrity": "sha512-aMo4eaAOijJjA6uU+GIeW018dvy9+oH5Y2VPPzjjfxevvGQ/oRDs+tfYC9b50Q4BygRR8yE2QCLsrT0WtAVseA==", - "dev": true + "node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "dependencies": { + "defer-to-connect": "^2.0.0" + }, + "engines": { + "node": ">=10" + } }, - "node_modules/@types/d3-fetch": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-fetch/-/d3-fetch-3.0.2.tgz", - "integrity": "sha512-gllwYWozWfbep16N9fByNBDTkJW/SyhH6SGRlXloR7WdtAaBui4plTP+gbUgiEot7vGw/ZZop1yDZlgXXSuzjA==", + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", "dev": true, - "dependencies": { - "@types/d3-dsv": "*" + "engines": { + "node": ">= 10" } }, - "node_modules/@types/d3-force": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.4.tgz", - "integrity": "sha512-q7xbVLrWcXvSBBEoadowIUJ7sRpS1yvgMWnzHJggFy5cUZBq2HZL5k/pBSm0GdYWS1vs5/EDwMjSKF55PDY4Aw==", + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", "dev": true }, - "node_modules/@types/d3-format": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-3.0.1.tgz", - "integrity": "sha512-5KY70ifCCzorkLuIkDe0Z9YTf9RR2CjBX1iaJG+rgM/cPP+sO+q9YdQ9WdhQcgPj1EQiJ2/0+yUkkziTG6Lubg==", + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", "dev": true }, - "node_modules/@types/d3-geo": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-3.0.3.tgz", - "integrity": "sha512-bK9uZJS3vuDCNeeXQ4z3u0E7OeJZXjUgzFdSOtNtMCJCLvDtWDwfpRVWlyt3y8EvRzI0ccOu9xlMVirawolSCw==", - "dev": true, - "dependencies": { - "@types/geojson": "*" - } + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true }, - "node_modules/@types/d3-hierarchy": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@types/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", - "integrity": "sha512-9hjRTVoZjRFR6xo8igAJyNXQyPX6Aq++Nhb5ebrUF414dv4jr2MitM2fWiOY475wa3Za7TOS2Gh9fmqEhLTt0A==", + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", "dev": true }, - "node_modules/@types/d3-interpolate": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.1.tgz", - "integrity": "sha512-jx5leotSeac3jr0RePOH1KdR9rISG91QIE4Q2PYTu4OymLTZfA3SrnURSLzKH48HmXVUru50b8nje4E79oQSQw==", + "node_modules/@types/babel__core": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", + "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", "dev": true, "dependencies": { - "@types/d3-color": "*" + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" } }, - "node_modules/@types/d3-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.0.0.tgz", - "integrity": "sha512-0g/A+mZXgFkQxN3HniRDbXMN79K3CdTpLsevj+PXiTcb2hVyvkZUBg37StmgCQkaD84cUJ4uaDAWq7UJOQy2Tg==", - "dev": true + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } }, - "node_modules/@types/d3-polygon": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/d3-polygon/-/d3-polygon-3.0.0.tgz", - "integrity": "sha512-D49z4DyzTKXM0sGKVqiTDTYr+DHg/uxsiWDAkNrwXYuiZVd9o9wXZIo+YsHkifOiyBkmSWlEngHCQme54/hnHw==", - "dev": true + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } }, - "node_modules/@types/d3-quadtree": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-quadtree/-/d3-quadtree-3.0.2.tgz", - "integrity": "sha512-QNcK8Jguvc8lU+4OfeNx+qnVy7c0VrDJ+CCVFS9srBo2GL9Y18CnIxBdTF3v38flrGy5s1YggcoAiu6s4fLQIw==", - "dev": true + "node_modules/@types/babel__traverse": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz", + "integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.3.0" + } }, - "node_modules/@types/d3-queue": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@types/d3-queue/-/d3-queue-3.0.8.tgz", - "integrity": "sha512-1FWOiI/MYwS5Z1Sa9EvS1Xet3isiVIIX5ozD6iGnwHonGcqL+RcC1eThXN5VfDmAiYt9Me9EWNEv/9J9k9RIKQ==", + "node_modules/@types/bluebird": { + "version": "3.5.38", + "resolved": "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.38.tgz", + "integrity": "sha512-yR/Kxc0dd4FfwtEoLZMoqJbM/VE/W7hXn/MIjb+axcwag0iFmSPK7OBUZq1YWLynJUoWQkfUrI7T0HDqGApNSg==", "dev": true }, - "node_modules/@types/d3-random": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.1.tgz", - "integrity": "sha512-IIE6YTekGczpLYo/HehAy3JGF1ty7+usI97LqraNa8IiDur+L44d0VOjAvFQWJVdZOJHukUJw+ZdZBlgeUsHOQ==", - "dev": true + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dev": true, + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } }, - "node_modules/@types/d3-request": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/d3-request/-/d3-request-1.0.6.tgz", - "integrity": "sha512-4nRKDUBg3EBx8VowpMvM3NAVMiMMI1qFUOYv3OJsclGjHX6xjtu09nsWhRQ0fvSUla3MEjb5Ch4IeaYarMEi1w==", + "node_modules/@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", "dev": true, "dependencies": { - "@types/d3-dsv": "^1" + "@types/node": "*" } }, - "node_modules/@types/d3-request/node_modules/@types/d3-dsv": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-1.2.2.tgz", - "integrity": "sha512-GRnz9z8ypqb7OsQ/xw/BmFAp0/k3pgM1s19FTZZSlCMY0EvyVTkU8xzZKKDXzytGXPpTNC4R5pGl9oxEvVSnHQ==", - "dev": true + "node_modules/@types/c3": { + "version": "0.7.8", + "resolved": "https://registry.npmjs.org/@types/c3/-/c3-0.7.8.tgz", + "integrity": "sha512-qUhbhHIa7SzpDZVHTUx51XUKPzkG3xLHKZGhwvfIs5Fy3NSc8qtH8I1u6N3Dp44Ih54qyUMw6xTIiDuOUBanxA==", + "dev": true, + "dependencies": { + "@types/d3": "^4" + } }, - "node_modules/@types/d3-scale": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.3.tgz", - "integrity": "sha512-PATBiMCpvHJSMtZAMEhc2WyL+hnzarKzI6wAHYjhsonjWJYGq5BXTzQjv4l8m2jO183/4wZ90rKvSeT7o72xNQ==", + "node_modules/@types/c3/node_modules/@types/d3": { + "version": "4.13.12", + "resolved": "https://registry.npmjs.org/@types/d3/-/d3-4.13.12.tgz", + "integrity": "sha512-/bbFtkOBc04gGGN8N9rMG5ps3T0eIj5I8bnYe9iIyeM5qoOrydPCbFYlEPUnj2h9ibc2i+QZfDam9jY5XTrTxQ==", "dev": true, "dependencies": { - "@types/d3-time": "*" + "@types/d3-array": "^1", + "@types/d3-axis": "^1", + "@types/d3-brush": "^1", + "@types/d3-chord": "^1", + "@types/d3-collection": "*", + "@types/d3-color": "^1", + "@types/d3-dispatch": "^1", + "@types/d3-drag": "^1", + "@types/d3-dsv": "^1", + "@types/d3-ease": "^1", + "@types/d3-force": "^1", + "@types/d3-format": "^1", + "@types/d3-geo": "^1", + "@types/d3-hierarchy": "^1", + "@types/d3-interpolate": "^1", + "@types/d3-path": "^1", + "@types/d3-polygon": "^1", + "@types/d3-quadtree": "^1", + "@types/d3-queue": "*", + "@types/d3-random": "^1", + "@types/d3-request": "*", + "@types/d3-scale": "^1", + "@types/d3-selection": "^1", + "@types/d3-shape": "^1", + "@types/d3-time": "^1", + "@types/d3-time-format": "^2", + "@types/d3-timer": "^1", + "@types/d3-transition": "^1", + "@types/d3-voronoi": "*", + "@types/d3-zoom": "^1" } }, - "node_modules/@types/d3-scale-chromatic": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz", - "integrity": "sha512-dsoJGEIShosKVRBZB0Vo3C8nqSDqVGujJU6tPznsBJxNJNwMF8utmS83nvCBKQYPpjCzaaHcrf66iTRpZosLPw==", + "node_modules/@types/c3/node_modules/@types/d3-array": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-1.2.9.tgz", + "integrity": "sha512-E/7RgPr2ylT5dWG0CswMi9NpFcjIEDqLcUSBgNHe/EMahfqYaTx4zhcggG3khqoEB/leY4Vl6nTSbwLUPjXceA==", "dev": true }, - "node_modules/@types/d3-selection": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.4.tgz", - "integrity": "sha512-ZeykX7286BCyMg9sH5fIAORyCB6hcATPSRQpN47jwBA2bMbAT0s+EvtDP5r1FZYJ95R8QoEE1CKJX+n0/M5Vhg==", - "dev": true + "node_modules/@types/c3/node_modules/@types/d3-axis": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/@types/d3-axis/-/d3-axis-1.0.16.tgz", + "integrity": "sha512-p7085weOmo4W+DzlRRVC/7OI/jugaKbVa6WMQGCQscaMylcbuaVEGk7abJLNyGVFLeCBNrHTdDiqRGnzvL0nXQ==", + "dev": true, + "dependencies": { + "@types/d3-selection": "^1" + } }, - "node_modules/@types/d3-shape": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.1.tgz", - "integrity": "sha512-6Uh86YFF7LGg4PQkuO2oG6EMBRLuW9cbavUW46zkIO5kuS2PfTqo2o9SkgtQzguBHbLgNnU90UNsITpsX1My+A==", + "node_modules/@types/c3/node_modules/@types/d3-brush": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/@types/d3-brush/-/d3-brush-1.1.5.tgz", + "integrity": "sha512-4zGkBafJf5zCsBtLtvDj/pNMo5X9+Ii/1hUz0GvQ+wEwelUBm2AbIDAzJnp2hLDFF307o0fhxmmocHclhXC+tw==", "dev": true, "dependencies": { - "@types/d3-path": "*" + "@types/d3-selection": "^1" } }, - "node_modules/@types/d3-time": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.0.tgz", - "integrity": "sha512-sZLCdHvBUcNby1cB6Fd3ZBrABbjz3v1Vm90nysCQ6Vt7vd6e/h9Lt7SiJUoEX0l4Dzc7P5llKyhqSi1ycSf1Hg==", + "node_modules/@types/c3/node_modules/@types/d3-chord": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@types/d3-chord/-/d3-chord-1.0.11.tgz", + "integrity": "sha512-0DdfJ//bxyW3G9Nefwq/LDgazSKNN8NU0lBT3Cza6uVuInC2awMNsAcv1oKyRFLn9z7kXClH5XjwpveZjuz2eg==", "dev": true }, - "node_modules/@types/d3-time-format": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/d3-time-format/-/d3-time-format-4.0.0.tgz", - "integrity": "sha512-yjfBUe6DJBsDin2BMIulhSHmr5qNR5Pxs17+oW4DoVPyVIXZ+m6bs7j1UVKP08Emv6jRmYrYqxYzO63mQxy1rw==", + "node_modules/@types/c3/node_modules/@types/d3-color": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-1.4.2.tgz", + "integrity": "sha512-fYtiVLBYy7VQX+Kx7wU/uOIkGQn8aAEY8oWMoyja3N4dLd8Yf6XgSIR/4yWvMuveNOH5VShnqCgRqqh/UNanBA==", "dev": true }, - "node_modules/@types/d3-timer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.0.tgz", - "integrity": "sha512-HNB/9GHqu7Fo8AQiugyJbv6ZxYz58wef0esl4Mv828w1ZKpAshw/uFWVDUcIB9KKFeFKoxS3cHY07FFgtTRZ1g==", + "node_modules/@types/c3/node_modules/@types/d3-dispatch": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-1.0.9.tgz", + "integrity": "sha512-zJ44YgjqALmyps+II7b1mZLhrtfV/FOxw9owT87mrweGWcg+WK5oiJX2M3SYJ0XUAExBduarysfgbR11YxzojQ==", "dev": true }, - "node_modules/@types/d3-transition": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.3.tgz", - "integrity": "sha512-/S90Od8Id1wgQNvIA8iFv9jRhCiZcGhPd2qX0bKF/PS+y0W5CrXKgIiELd2CvG1mlQrWK/qlYh3VxicqG1ZvgA==", + "node_modules/@types/c3/node_modules/@types/d3-drag": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-1.2.5.tgz", + "integrity": "sha512-7NeTnfolst1Js3Vs7myctBkmJWu6DMI3k597AaHUX98saHjHWJ6vouT83UrpE+xfbSceHV+8A0JgxuwgqgmqWw==", "dev": true, "dependencies": { - "@types/d3-selection": "*" + "@types/d3-selection": "^1" } }, - "node_modules/@types/d3-voronoi": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/@types/d3-voronoi/-/d3-voronoi-1.1.9.tgz", - "integrity": "sha512-DExNQkaHd1F3dFPvGA/Aw2NGyjMln6E9QzsiqOcBgnE+VInYnFBHBBySbZQts6z6xD+5jTfKCP7M4OqMyVjdwQ==", + "node_modules/@types/c3/node_modules/@types/d3-dsv": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-1.2.2.tgz", + "integrity": "sha512-GRnz9z8ypqb7OsQ/xw/BmFAp0/k3pgM1s19FTZZSlCMY0EvyVTkU8xzZKKDXzytGXPpTNC4R5pGl9oxEvVSnHQ==", "dev": true }, - "node_modules/@types/d3-zoom": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.2.tgz", - "integrity": "sha512-t09DDJVBI6AkM7N8kuPsnq/3d/ehtRKBN1xSiYjjMCgbiw6HM6Ged5VhvswmhprfKyGvzeTEL/4WBaK9llWvlA==", - "dev": true, - "dependencies": { - "@types/d3-interpolate": "*", - "@types/d3-selection": "*" - } + "node_modules/@types/c3/node_modules/@types/d3-ease": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-1.0.11.tgz", + "integrity": "sha512-wUigPL0kleGZ9u3RhzBP07lxxkMcUjL5IODP42mN/05UNL+JJCDnpEPpFbJiPvLcTeRKGIRpBBJyP/1BNwYsVA==", + "dev": true }, - "node_modules/@types/debug": { - "version": "4.1.7", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", - "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", - "dependencies": { - "@types/ms": "*" - } + "node_modules/@types/c3/node_modules/@types/d3-force": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-1.2.4.tgz", + "integrity": "sha512-fkorLTKvt6AQbFBQwn4aq7h9rJ4c7ZVcPMGB8X6eFFveAyMZcv7t7m6wgF4Eg93rkPgPORU7sAho1QSHNcZu6w==", + "dev": true }, - "node_modules/@types/diff-match-patch": { - "version": "1.0.32", - "resolved": "https://registry.npmjs.org/@types/diff-match-patch/-/diff-match-patch-1.0.32.tgz", - "integrity": "sha512-bPYT5ECFiblzsVzyURaNhljBH2Gh1t9LowgUwciMrNAhFewLkHT2H0Mto07Y4/3KCOGZHRQll3CTtQZ0X11D/A==", + "node_modules/@types/c3/node_modules/@types/d3-format": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-1.4.2.tgz", + "integrity": "sha512-WeGCHAs7PHdZYq6lwl/+jsl+Nfc1J2W1kNcMeIMYzQsT6mtBDBgtJ/rcdjZ0k0rVIvqEZqhhuD5TK/v3P2gFHQ==", "dev": true }, - "node_modules/@types/eslint": { - "version": "8.21.1", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.21.1.tgz", - "integrity": "sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==", + "node_modules/@types/c3/node_modules/@types/d3-geo": { + "version": "1.12.4", + "resolved": "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-1.12.4.tgz", + "integrity": "sha512-lNDaAuOaML6w2d1XE0Txr5YOXLBQSF1q2IU6eXh/u1TTPQSm2Ah+TMIub1+CIMq8J/7DOzi5Cr8/yHqjNvqLKA==", + "dev": true, "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" + "@types/geojson": "*" } }, - "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "node_modules/@types/c3/node_modules/@types/d3-hierarchy": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/@types/d3-hierarchy/-/d3-hierarchy-1.1.8.tgz", + "integrity": "sha512-AbStKxNyWiMDQPGDguG2Kuhlq1Sv539pZSxYbx4UZeYkutpPwXCcgyiRrlV4YH64nIOsKx7XVnOMy9O7rJsXkg==", + "dev": true + }, + "node_modules/@types/c3/node_modules/@types/d3-interpolate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-1.4.2.tgz", + "integrity": "sha512-ylycts6llFf8yAEs1tXzx2loxxzDZHseuhPokrqKprTQSTcD3JbJI1omZP1rphsELZO3Q+of3ff0ZS7+O6yVzg==", + "dev": true, "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" + "@types/d3-color": "^1" } }, - "node_modules/@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" + "node_modules/@types/c3/node_modules/@types/d3-path": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-1.0.9.tgz", + "integrity": "sha512-NaIeSIBiFgSC6IGUBjZWcscUJEq7vpVu7KthHN8eieTV9d9MqkSOZLH4chq1PmcKy06PNe3axLeKmRIyxJ+PZQ==", + "dev": true }, - "node_modules/@types/express": { - "version": "4.17.17", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", - "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", + "node_modules/@types/c3/node_modules/@types/d3-polygon": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-polygon/-/d3-polygon-1.0.8.tgz", + "integrity": "sha512-1TOJPXCBJC9V3+K3tGbTqD/CsqLyv/YkTXAcwdsZzxqw5cvpdnCuDl42M4Dvi8XzMxZNCT9pL4ibrK2n4VmAcw==", + "dev": true + }, + "node_modules/@types/c3/node_modules/@types/d3-quadtree": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-quadtree/-/d3-quadtree-1.0.9.tgz", + "integrity": "sha512-5E0OJJn2QVavITFEc1AQlI8gLcIoDZcTKOD3feKFckQVmFV4CXhqRFt83tYNVNIN4ZzRkjlAMavJa1ldMhf5rA==", + "dev": true + }, + "node_modules/@types/c3/node_modules/@types/d3-random": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-1.1.3.tgz", + "integrity": "sha512-XXR+ZbFCoOd4peXSMYJzwk0/elP37WWAzS/DG+90eilzVbUSsgKhBcWqylGWe+lA2ubgr7afWAOBaBxRgMUrBQ==", + "dev": true + }, + "node_modules/@types/c3/node_modules/@types/d3-scale": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-1.0.17.tgz", + "integrity": "sha512-baIP5/gw+PS8Axs1lfZCeIjcOXen/jxQmgFEjbYThwaj2drvivOIrJMh2Ig4MeenrogCH6zkhiOxCPRkvN1scA==", "dev": true, "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" + "@types/d3-time": "^1" } }, - "node_modules/@types/express-serve-static-core": { - "version": "4.17.33", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz", - "integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==", + "node_modules/@types/c3/node_modules/@types/d3-selection": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-1.4.3.tgz", + "integrity": "sha512-GjKQWVZO6Sa96HiKO6R93VBE8DUW+DDkFpIMf9vpY5S78qZTlRRSNUsHr/afDpF7TvLDV7VxrUFOWW7vdIlYkA==", + "dev": true + }, + "node_modules/@types/c3/node_modules/@types/d3-shape": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-1.3.8.tgz", + "integrity": "sha512-gqfnMz6Fd5H6GOLYixOZP/xlrMtJms9BaS+6oWxTKHNqPGZ93BkWWupQSCYm6YHqx6h9wjRupuJb90bun6ZaYg==", "dev": true, "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*" + "@types/d3-path": "^1" } }, - "node_modules/@types/fs-extra": { - "version": "9.0.13", - "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz", - "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==", + "node_modules/@types/c3/node_modules/@types/d3-time": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-1.1.1.tgz", + "integrity": "sha512-ULX7LoqXTCYtM+tLYOaeAJK7IwCT+4Gxlm2MaH0ErKLi07R5lh8NHCAyWcDkCCmx1AfRcBEV6H9QE9R25uP7jw==", + "dev": true + }, + "node_modules/@types/c3/node_modules/@types/d3-time-format": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@types/d3-time-format/-/d3-time-format-2.3.1.tgz", + "integrity": "sha512-fck0Z9RGfIQn3GJIEKVrp15h9m6Vlg0d5XXeiE/6+CQiBmMDZxfR21XtjEPuDeg7gC3bBM0SdieA5XF3GW1wKA==", + "dev": true + }, + "node_modules/@types/c3/node_modules/@types/d3-timer": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-1.0.10.tgz", + "integrity": "sha512-ZnAbquVqy+4ZjdW0cY6URp+qF/AzTVNda2jYyOzpR2cPT35FTXl78s15Bomph9+ckOiI1TtkljnWkwbIGAb6rg==", + "dev": true + }, + "node_modules/@types/c3/node_modules/@types/d3-transition": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-1.3.2.tgz", + "integrity": "sha512-J+a3SuF/E7wXbOSN19p8ZieQSFIm5hU2Egqtndbc54LXaAEOpLfDx4sBu/PKAKzHOdgKK1wkMhINKqNh4aoZAg==", "dev": true, "dependencies": { - "@types/node": "*" + "@types/d3-selection": "^1" } }, - "node_modules/@types/geojson": { - "version": "7946.0.10", - "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz", - "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==", - "dev": true + "node_modules/@types/c3/node_modules/@types/d3-zoom": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-1.8.3.tgz", + "integrity": "sha512-3kHkL6sPiDdbfGhzlp5gIHyu3kULhtnHTTAl3UBZVtWB1PzcLL8vdmz5mTx7plLiUqOA2Y+yT2GKjt/TdA2p7Q==", + "dev": true, + "dependencies": { + "@types/d3-interpolate": "^1", + "@types/d3-selection": "^1" + } }, - "node_modules/@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", + "node_modules/@types/cacheable-request": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", + "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "dependencies": { + "@types/http-cache-semantics": "*", + "@types/keyv": "^3.1.4", + "@types/node": "*", + "@types/responselike": "^1.0.0" + } + }, + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", "dev": true, - "optional": true, "dependencies": { - "@types/minimatch": "*", "@types/node": "*" } }, - "node_modules/@types/graceful-fs": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", - "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "node_modules/@types/connect-history-api-fallback": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", "dev": true, "dependencies": { + "@types/express-serve-static-core": "*", "@types/node": "*" } }, - "node_modules/@types/html-minifier-terser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", - "dev": true - }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" - }, - "node_modules/@types/http-proxy": { - "version": "1.17.10", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.10.tgz", - "integrity": "sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==", + "node_modules/@types/continuation-local-storage": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@types/continuation-local-storage/-/continuation-local-storage-3.2.4.tgz", + "integrity": "sha512-OT32vCVMymU1JMPKDeY0lX3cduAr0Pm/VwIbxygMeDS4lRcv57qYXn9bMwBRcRnEpXKBb/r4xYaZCARTZllP0A==", "dev": true, "dependencies": { "@types/node": "*" } }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - "dev": true - }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "node_modules/@types/d3": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@types/d3/-/d3-7.4.0.tgz", + "integrity": "sha512-jIfNVK0ZlxcuRDKtRS/SypEyOQ6UHaFQBKv032X45VvxSJ6Yi5G9behy9h6tNTHTDGh5Vq+KbmBjUWLgY4meCA==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "*" + "@types/d3-array": "*", + "@types/d3-axis": "*", + "@types/d3-brush": "*", + "@types/d3-chord": "*", + "@types/d3-color": "*", + "@types/d3-contour": "*", + "@types/d3-delaunay": "*", + "@types/d3-dispatch": "*", + "@types/d3-drag": "*", + "@types/d3-dsv": "*", + "@types/d3-ease": "*", + "@types/d3-fetch": "*", + "@types/d3-force": "*", + "@types/d3-format": "*", + "@types/d3-geo": "*", + "@types/d3-hierarchy": "*", + "@types/d3-interpolate": "*", + "@types/d3-path": "*", + "@types/d3-polygon": "*", + "@types/d3-quadtree": "*", + "@types/d3-random": "*", + "@types/d3-scale": "*", + "@types/d3-scale-chromatic": "*", + "@types/d3-selection": "*", + "@types/d3-shape": "*", + "@types/d3-time": "*", + "@types/d3-time-format": "*", + "@types/d3-timer": "*", + "@types/d3-transition": "*", + "@types/d3-zoom": "*" } }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "node_modules/@types/d3-array": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.0.4.tgz", + "integrity": "sha512-nwvEkG9vYOc0Ic7G7kwgviY4AQlTfYGIZ0fqB7CQHXGyYM6nO7kJh5EguSNA3jfh4rq7Sb7eMVq8isuvg2/miQ==", + "dev": true + }, + "node_modules/@types/d3-axis": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-axis/-/d3-axis-3.0.2.tgz", + "integrity": "sha512-uGC7DBh0TZrU/LY43Fd8Qr+2ja1FKmH07q2FoZFHo1eYl8aj87GhfVoY1saJVJiq24rp1+wpI6BvQJMKgQm8oA==", "dev": true, "dependencies": { - "@types/istanbul-lib-report": "*" + "@types/d3-selection": "*" } }, - "node_modules/@types/jquery": { - "version": "3.5.16", - "resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.16.tgz", - "integrity": "sha512-bsI7y4ZgeMkmpG9OM710RRzDFp+w4P1RGiIt30C1mSBT+ExCleeh4HObwgArnDFELmRrOpXgSYN9VF1hj+f1lw==", + "node_modules/@types/d3-brush": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-brush/-/d3-brush-3.0.2.tgz", + "integrity": "sha512-2TEm8KzUG3N7z0TrSKPmbxByBx54M+S9lHoP2J55QuLU0VSQ9mE96EJSAOVNEqd1bbynMjeTS9VHmz8/bSw8rA==", "dev": true, "dependencies": { - "@types/sizzle": "*" + "@types/d3-selection": "*" } }, - "node_modules/@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" + "node_modules/@types/d3-chord": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-chord/-/d3-chord-3.0.2.tgz", + "integrity": "sha512-abT/iLHD3sGZwqMTX1TYCMEulr+wBd0SzyOQnjYNLp7sngdOHYtNkMRI5v3w5thoN+BWtlHVDx2Osvq6fxhZWw==", + "dev": true }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "node_modules/@types/d3-collection": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@types/d3-collection/-/d3-collection-1.0.10.tgz", + "integrity": "sha512-54Fdv8u5JbuXymtmXm2SYzi1x/Svt+jfWBU5junkhrCewL92VjqtCBDn97coBRVwVFmYNnVTNDyV8gQyPYfm+A==", "dev": true }, - "node_modules/@types/keyv": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", - "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "node_modules/@types/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-HKuicPHJuvPgCD+np6Se9MQvS6OCbJmOjGvylzMJRlDwUXjKTTXs6Pwgk79O09Vj/ho3u1ofXnhFOaEWWPrlwA==", + "dev": true + }, + "node_modules/@types/d3-contour": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-contour/-/d3-contour-3.0.2.tgz", + "integrity": "sha512-k6/bGDoAGJZnZWaKzeB+9glgXCYGvh6YlluxzBREiVo8f/X2vpTEdgPy9DN7Z2i42PZOZ4JDhVdlTSTSkLDPlQ==", + "dev": true, "dependencies": { - "@types/node": "*" + "@types/d3-array": "*", + "@types/geojson": "*" } }, - "node_modules/@types/lodash": { - "version": "4.14.191", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.191.tgz", - "integrity": "sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==", + "node_modules/@types/d3-delaunay": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@types/d3-delaunay/-/d3-delaunay-6.0.1.tgz", + "integrity": "sha512-tLxQ2sfT0p6sxdG75c6f/ekqxjyYR0+LwPrsO1mbC9YDBzPJhs2HbJJRrn8Ez1DBoHRo2yx7YEATI+8V1nGMnQ==", "dev": true }, - "node_modules/@types/mime": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", - "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", + "node_modules/@types/d3-dispatch": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-3.0.2.tgz", + "integrity": "sha512-rxN6sHUXEZYCKV05MEh4z4WpPSqIw+aP7n9ZN6WYAAvZoEAghEK1WeVZMZcHRBwyaKflU43PCUAJNjFxCzPDjg==", "dev": true }, - "node_modules/@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true, - "optional": true - }, - "node_modules/@types/ms": { - "version": "0.7.31", - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", - "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" - }, - "node_modules/@types/node": { - "version": "18.14.6", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.14.6.tgz", - "integrity": "sha512-93+VvleD3mXwlLI/xASjw0FzKcwzl3OdTCzm1LaRfqgS21gfFtK3zDXM5Op9TeeMsJVOaJ2VRDpT9q4Y3d0AvA==" - }, - "node_modules/@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" - }, - "node_modules/@types/plist": { + "node_modules/@types/d3-drag": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/plist/-/plist-3.0.2.tgz", - "integrity": "sha512-ULqvZNGMv0zRFvqn8/4LSPtnmN4MfhlPNtJCTpKuIIxGVGZ2rYWzFXrvEBoh9CVyqSE7D6YFRJ1hydLHI6kbWw==", + "resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.2.tgz", + "integrity": "sha512-qmODKEDvyKWVHcWWCOVcuVcOwikLVsyc4q4EBJMREsoQnR2Qoc2cZQUyFUPgO9q4S3qdSqJKBsuefv+h0Qy+tw==", "dev": true, - "optional": true, "dependencies": { - "@types/node": "*", - "xmlbuilder": ">=11.0.1" + "@types/d3-selection": "*" } }, - "node_modules/@types/prettier": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", - "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==", - "dev": true - }, - "node_modules/@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" - }, - "node_modules/@types/q": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", - "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==", - "dev": true - }, - "node_modules/@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "node_modules/@types/d3-dsv": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-3.0.1.tgz", + "integrity": "sha512-76pBHCMTvPLt44wFOieouXcGXWOF0AJCceUvaFkxSZEu4VDUdv93JfpMa6VGNFs01FHfuP4a5Ou68eRG1KBfTw==", "dev": true }, - "node_modules/@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "node_modules/@types/d3-ease": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.0.tgz", + "integrity": "sha512-aMo4eaAOijJjA6uU+GIeW018dvy9+oH5Y2VPPzjjfxevvGQ/oRDs+tfYC9b50Q4BygRR8yE2QCLsrT0WtAVseA==", "dev": true }, - "node_modules/@types/react": { - "version": "18.0.28", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.28.tgz", - "integrity": "sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==", - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-dom": { - "version": "18.0.11", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.11.tgz", - "integrity": "sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==", + "node_modules/@types/d3-fetch": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-fetch/-/d3-fetch-3.0.2.tgz", + "integrity": "sha512-gllwYWozWfbep16N9fByNBDTkJW/SyhH6SGRlXloR7WdtAaBui4plTP+gbUgiEot7vGw/ZZop1yDZlgXXSuzjA==", "dev": true, "dependencies": { - "@types/react": "*" + "@types/d3-dsv": "*" } }, - "node_modules/@types/react-scroll": { - "version": "1.8.7", - "resolved": "https://registry.npmjs.org/@types/react-scroll/-/react-scroll-1.8.7.tgz", - "integrity": "sha512-BB8g+hQL7OtBPWg/NcES6p5u6vduZonGl1BxrsGUwcefE53pfI0pFDd1lRFndgEUE6whYdFfhD+j0sZZT/6brQ==", - "dev": true, - "dependencies": { - "@types/react": "*" - } + "node_modules/@types/d3-force": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.4.tgz", + "integrity": "sha512-q7xbVLrWcXvSBBEoadowIUJ7sRpS1yvgMWnzHJggFy5cUZBq2HZL5k/pBSm0GdYWS1vs5/EDwMjSKF55PDY4Aw==", + "dev": true }, - "node_modules/@types/react-toastify": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@types/react-toastify/-/react-toastify-4.1.0.tgz", - "integrity": "sha512-u7Ie/7LHBsPVz/iJxi/WlRDS7Gh9csCJACTDXx+pSLuZCm94xpkwzhM3jV1L5ZxP/in0Gp2tFbJ91VrSGr1gyQ==", - "deprecated": "This is a stub types definition. react-toastify provides its own type definitions, so you do not need this installed.", + "node_modules/@types/d3-format": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-3.0.1.tgz", + "integrity": "sha512-5KY70ifCCzorkLuIkDe0Z9YTf9RR2CjBX1iaJG+rgM/cPP+sO+q9YdQ9WdhQcgPj1EQiJ2/0+yUkkziTG6Lubg==", + "dev": true + }, + "node_modules/@types/d3-geo": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-3.0.3.tgz", + "integrity": "sha512-bK9uZJS3vuDCNeeXQ4z3u0E7OeJZXjUgzFdSOtNtMCJCLvDtWDwfpRVWlyt3y8EvRzI0ccOu9xlMVirawolSCw==", "dev": true, "dependencies": { - "react-toastify": "*" + "@types/geojson": "*" } }, - "node_modules/@types/react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==", - "dependencies": { - "@types/react": "*" - } + "node_modules/@types/d3-hierarchy": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@types/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", + "integrity": "sha512-9hjRTVoZjRFR6xo8igAJyNXQyPX6Aq++Nhb5ebrUF414dv4jr2MitM2fWiOY475wa3Za7TOS2Gh9fmqEhLTt0A==", + "dev": true }, - "node_modules/@types/resolve": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", - "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "node_modules/@types/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-jx5leotSeac3jr0RePOH1KdR9rISG91QIE4Q2PYTu4OymLTZfA3SrnURSLzKH48HmXVUru50b8nje4E79oQSQw==", "dev": true, "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/responselike": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", - "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", - "dependencies": { - "@types/node": "*" + "@types/d3-color": "*" } }, - "node_modules/@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "node_modules/@types/d3-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.0.0.tgz", + "integrity": "sha512-0g/A+mZXgFkQxN3HniRDbXMN79K3CdTpLsevj+PXiTcb2hVyvkZUBg37StmgCQkaD84cUJ4uaDAWq7UJOQy2Tg==", "dev": true }, - "node_modules/@types/scheduler": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + "node_modules/@types/d3-polygon": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/d3-polygon/-/d3-polygon-3.0.0.tgz", + "integrity": "sha512-D49z4DyzTKXM0sGKVqiTDTYr+DHg/uxsiWDAkNrwXYuiZVd9o9wXZIo+YsHkifOiyBkmSWlEngHCQme54/hnHw==", + "dev": true }, - "node_modules/@types/semver": { - "version": "7.3.13", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", - "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", + "node_modules/@types/d3-quadtree": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-quadtree/-/d3-quadtree-3.0.2.tgz", + "integrity": "sha512-QNcK8Jguvc8lU+4OfeNx+qnVy7c0VrDJ+CCVFS9srBo2GL9Y18CnIxBdTF3v38flrGy5s1YggcoAiu6s4fLQIw==", "dev": true }, - "node_modules/@types/sequelize": { - "version": "4.28.14", - "resolved": "https://registry.npmjs.org/@types/sequelize/-/sequelize-4.28.14.tgz", - "integrity": "sha512-O8lTJ8YPVVaoY9xjduchDlo0MOS3w262pro2H1QMuFIo/kc/p1elP/UxLOTP2wcVO2cFd6Gvghg9ZSAiJi0GLA==", - "dev": true, - "dependencies": { - "@types/bluebird": "*", - "@types/continuation-local-storage": "*", - "@types/lodash": "*", - "@types/validator": "*" - } + "node_modules/@types/d3-queue": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-queue/-/d3-queue-3.0.8.tgz", + "integrity": "sha512-1FWOiI/MYwS5Z1Sa9EvS1Xet3isiVIIX5ozD6iGnwHonGcqL+RcC1eThXN5VfDmAiYt9Me9EWNEv/9J9k9RIKQ==", + "dev": true }, - "node_modules/@types/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", - "dev": true, - "dependencies": { - "@types/express": "*" - } + "node_modules/@types/d3-random": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.1.tgz", + "integrity": "sha512-IIE6YTekGczpLYo/HehAy3JGF1ty7+usI97LqraNa8IiDur+L44d0VOjAvFQWJVdZOJHukUJw+ZdZBlgeUsHOQ==", + "dev": true }, - "node_modules/@types/serve-static": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz", - "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==", + "node_modules/@types/d3-request": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-request/-/d3-request-1.0.6.tgz", + "integrity": "sha512-4nRKDUBg3EBx8VowpMvM3NAVMiMMI1qFUOYv3OJsclGjHX6xjtu09nsWhRQ0fvSUla3MEjb5Ch4IeaYarMEi1w==", "dev": true, "dependencies": { - "@types/mime": "*", - "@types/node": "*" + "@types/d3-dsv": "^1" } }, - "node_modules/@types/sizzle": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", - "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", + "node_modules/@types/d3-request/node_modules/@types/d3-dsv": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-1.2.2.tgz", + "integrity": "sha512-GRnz9z8ypqb7OsQ/xw/BmFAp0/k3pgM1s19FTZZSlCMY0EvyVTkU8xzZKKDXzytGXPpTNC4R5pGl9oxEvVSnHQ==", "dev": true }, - "node_modules/@types/sockjs": { - "version": "0.3.33", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", - "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "node_modules/@types/d3-scale": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.3.tgz", + "integrity": "sha512-PATBiMCpvHJSMtZAMEhc2WyL+hnzarKzI6wAHYjhsonjWJYGq5BXTzQjv4l8m2jO183/4wZ90rKvSeT7o72xNQ==", "dev": true, "dependencies": { - "@types/node": "*" + "@types/d3-time": "*" } }, - "node_modules/@types/sqlite3": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/@types/sqlite3/-/sqlite3-3.1.8.tgz", - "integrity": "sha512-sQMt/qnyUWnqiTcJXm5ZfNPIBeJ/DVvJDwxw+0tAxPJvadzfiP1QhryO1JOR6t1yfb8NpzQb/Rud06mob5laIA==", + "node_modules/@types/d3-scale-chromatic": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz", + "integrity": "sha512-dsoJGEIShosKVRBZB0Vo3C8nqSDqVGujJU6tPznsBJxNJNwMF8utmS83nvCBKQYPpjCzaaHcrf66iTRpZosLPw==", + "dev": true + }, + "node_modules/@types/d3-selection": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.4.tgz", + "integrity": "sha512-ZeykX7286BCyMg9sH5fIAORyCB6hcATPSRQpN47jwBA2bMbAT0s+EvtDP5r1FZYJ95R8QoEE1CKJX+n0/M5Vhg==", + "dev": true + }, + "node_modules/@types/d3-shape": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.1.tgz", + "integrity": "sha512-6Uh86YFF7LGg4PQkuO2oG6EMBRLuW9cbavUW46zkIO5kuS2PfTqo2o9SkgtQzguBHbLgNnU90UNsITpsX1My+A==", "dev": true, "dependencies": { - "@types/node": "*" + "@types/d3-path": "*" } }, - "node_modules/@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "node_modules/@types/d3-time": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.0.tgz", + "integrity": "sha512-sZLCdHvBUcNby1cB6Fd3ZBrABbjz3v1Vm90nysCQ6Vt7vd6e/h9Lt7SiJUoEX0l4Dzc7P5llKyhqSi1ycSf1Hg==", "dev": true }, - "node_modules/@types/trusted-types": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz", - "integrity": "sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==", + "node_modules/@types/d3-time-format": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/d3-time-format/-/d3-time-format-4.0.0.tgz", + "integrity": "sha512-yjfBUe6DJBsDin2BMIulhSHmr5qNR5Pxs17+oW4DoVPyVIXZ+m6bs7j1UVKP08Emv6jRmYrYqxYzO63mQxy1rw==", "dev": true }, - "node_modules/@types/validator": { - "version": "13.7.13", - "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.7.13.tgz", - "integrity": "sha512-EMfHccxNKXaSxTK6DN0En9WsXa7uR4w3LQtx31f6Z2JjG5hJQeVX5zUYMZoatjZgnoQmRcT94WnNWwi0BzQW6Q==" + "node_modules/@types/d3-timer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.0.tgz", + "integrity": "sha512-HNB/9GHqu7Fo8AQiugyJbv6ZxYz58wef0esl4Mv828w1ZKpAshw/uFWVDUcIB9KKFeFKoxS3cHY07FFgtTRZ1g==", + "dev": true }, - "node_modules/@types/verror": { - "version": "1.10.6", - "resolved": "https://registry.npmjs.org/@types/verror/-/verror-1.10.6.tgz", - "integrity": "sha512-NNm+gdePAX1VGvPcGZCDKQZKYSiAWigKhKaz5KF94hG6f2s8de9Ow5+7AbXoeKxL8gavZfk4UquSAygOF2duEQ==", + "node_modules/@types/d3-transition": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.3.tgz", + "integrity": "sha512-/S90Od8Id1wgQNvIA8iFv9jRhCiZcGhPd2qX0bKF/PS+y0W5CrXKgIiELd2CvG1mlQrWK/qlYh3VxicqG1ZvgA==", "dev": true, - "optional": true + "dependencies": { + "@types/d3-selection": "*" + } }, - "node_modules/@types/warning": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", - "integrity": "sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==" + "node_modules/@types/d3-voronoi": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/@types/d3-voronoi/-/d3-voronoi-1.1.9.tgz", + "integrity": "sha512-DExNQkaHd1F3dFPvGA/Aw2NGyjMln6E9QzsiqOcBgnE+VInYnFBHBBySbZQts6z6xD+5jTfKCP7M4OqMyVjdwQ==", + "dev": true }, - "node_modules/@types/ws": { - "version": "8.5.4", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz", - "integrity": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==", + "node_modules/@types/d3-zoom": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.2.tgz", + "integrity": "sha512-t09DDJVBI6AkM7N8kuPsnq/3d/ehtRKBN1xSiYjjMCgbiw6HM6Ged5VhvswmhprfKyGvzeTEL/4WBaK9llWvlA==", "dev": true, "dependencies": { - "@types/node": "*" + "@types/d3-interpolate": "*", + "@types/d3-selection": "*" } }, - "node_modules/@types/yargs": { - "version": "17.0.22", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.22.tgz", - "integrity": "sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==", - "dev": true, + "node_modules/@types/debug": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", + "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", "dependencies": { - "@types/yargs-parser": "*" + "@types/ms": "*" } }, - "node_modules/@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "node_modules/@types/diff-match-patch": { + "version": "1.0.32", + "resolved": "https://registry.npmjs.org/@types/diff-match-patch/-/diff-match-patch-1.0.32.tgz", + "integrity": "sha512-bPYT5ECFiblzsVzyURaNhljBH2Gh1t9LowgUwciMrNAhFewLkHT2H0Mto07Y4/3KCOGZHRQll3CTtQZ0X11D/A==", "dev": true }, - "node_modules/@types/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", - "optional": true, + "node_modules/@types/eslint": { + "version": "8.21.1", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.21.1.tgz", + "integrity": "sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==", "dependencies": { - "@types/node": "*" + "@types/estree": "*", + "@types/json-schema": "*" } }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.54.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.54.1.tgz", - "integrity": "sha512-a2RQAkosH3d3ZIV08s3DcL/mcGc2M/UC528VkPULFxR9VnVPT8pBu0IyBAJJmVsCmhVfwQX1v6q+QGnmSe1bew==", + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" + }, + "node_modules/@types/express": { + "version": "4.17.17", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", + "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "5.54.1", - "@typescript-eslint/type-utils": "5.54.1", - "@typescript-eslint/utils": "5.54.1", - "debug": "^4.3.4", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "regexpp": "^3.2.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" } }, - "node_modules/@typescript-eslint/experimental-utils": { - "version": "5.54.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.54.1.tgz", - "integrity": "sha512-oqSc2Gr4TL/2M0XRJ9abA1o3Wf1cFJTNqWq0kjdStIIvgMQGZ3TSaFFJ2Cvy3Fgqi9UfDZ8u5idbACssIIyHaw==", + "node_modules/@types/express-serve-static-core": { + "version": "4.17.33", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz", + "integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==", "dev": true, "dependencies": { - "@typescript-eslint/utils": "5.54.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" } }, - "node_modules/@typescript-eslint/parser": { - "version": "5.54.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.54.1.tgz", - "integrity": "sha512-8zaIXJp/nG9Ff9vQNh7TI+C3nA6q6iIsGJ4B4L6MhZ7mHnTMR4YP5vp2xydmFXIy8rpyIVbNAG44871LMt6ujg==", + "node_modules/@types/fs-extra": { + "version": "9.0.13", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz", + "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "5.54.1", - "@typescript-eslint/types": "5.54.1", - "@typescript-eslint/typescript-estree": "5.54.1", - "debug": "^4.3.4" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "@types/node": "*" } }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "5.54.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.54.1.tgz", - "integrity": "sha512-zWKuGliXxvuxyM71UA/EcPxaviw39dB2504LqAmFDjmkpO8qNLHcmzlh6pbHs1h/7YQ9bnsO8CCcYCSA8sykUg==", + "node_modules/@types/geojson": { + "version": "7946.0.10", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz", + "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==", + "dev": true + }, + "node_modules/@types/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", "dev": true, + "optional": true, "dependencies": { - "@typescript-eslint/types": "5.54.1", - "@typescript-eslint/visitor-keys": "5.54.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "@types/minimatch": "*", + "@types/node": "*" } }, - "node_modules/@typescript-eslint/type-utils": { - "version": "5.54.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.54.1.tgz", - "integrity": "sha512-WREHsTz0GqVYLIbzIZYbmUUr95DKEKIXZNH57W3s+4bVnuF1TKe2jH8ZNH8rO1CeMY3U4j4UQeqPNkHMiGem3g==", + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "5.54.1", - "@typescript-eslint/utils": "5.54.1", - "debug": "^4.3.4", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "@types/node": "*" } }, - "node_modules/@typescript-eslint/types": { - "version": "5.54.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.54.1.tgz", - "integrity": "sha512-G9+1vVazrfAfbtmCapJX8jRo2E4MDXxgm/IMOF4oGh3kq7XuK3JRkOg6y2Qu1VsTRmWETyTkWt1wxy7X7/yLkw==", + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "dev": true + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", + "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.10", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.10.tgz", + "integrity": "sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==", "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "dependencies": { + "@types/node": "*" } }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.54.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.54.1.tgz", - "integrity": "sha512-bjK5t+S6ffHnVwA0qRPTZrxKSaFYocwFIkZx5k7pvWfsB1I57pO/0M0Skatzzw1sCkjJ83AfGTL0oFIFiDX3bg==", + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.54.1", - "@typescript-eslint/visitor-keys": "5.54.1", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "@types/istanbul-lib-coverage": "*" } }, - "node_modules/@typescript-eslint/utils": { - "version": "5.54.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.54.1.tgz", - "integrity": "sha512-IY5dyQM8XD1zfDe5X8jegX6r2EVU5o/WJnLu/znLPWCBF7KNGC+adacXnt5jEYS9JixDcoccI6CvE4RCjHMzCQ==", + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.54.1", - "@typescript-eslint/types": "5.54.1", - "@typescript-eslint/typescript-estree": "5.54.1", - "eslint-scope": "^5.1.1", - "eslint-utils": "^3.0.0", - "semver": "^7.3.7" - }, + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "29.5.3", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.3.tgz", + "integrity": "sha512-1Nq7YrO/vJE/FYnqYyw0FS8LdrjExSgIiHyKg7xPpn+yi8Q4huZryKnkJatN1ZRH89Kw2v33/8ZMB7DuZeSLlA==", + "dev": true, + "dependencies": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } + }, + "node_modules/@types/jest/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.54.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.54.1.tgz", - "integrity": "sha512-q8iSoHTgwCfgcRJ2l2x+xCbu8nBlRAlsQ33k24Adj8eoVBE0f8dUeI+bAa8F84Mv05UGbAx57g2zrRsYIooqQg==", + "node_modules/@types/jest/node_modules/pretty-format": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.1.tgz", + "integrity": "sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.54.1", - "eslint-visitor-keys": "^3.3.0" + "@jest/schemas": "^29.6.0", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@vercel/webpack-asset-relocator-loader": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.3.tgz", - "integrity": "sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==", + "node_modules/@types/jest/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/@types/jquery": { + "version": "3.5.16", + "resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.16.tgz", + "integrity": "sha512-bsI7y4ZgeMkmpG9OM710RRzDFp+w4P1RGiIt30C1mSBT+ExCleeh4HObwgArnDFELmRrOpXgSYN9VF1hj+f1lw==", "dev": true, "dependencies": { - "resolve": "^1.10.0" + "@types/sizzle": "*" } }, - "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "node_modules/@types/jsdom": { + "version": "20.0.1", + "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", + "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", + "dev": true, "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^7.0.0" } }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "node_modules/@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "node_modules/@types/keyv": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", + "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@xtuc/long": "4.2.2" + "@types/node": "*" } }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "node_modules/@types/lodash": { + "version": "4.14.191", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.191.tgz", + "integrity": "sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==", + "dev": true }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" - } + "node_modules/@types/mime": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", + "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", + "dev": true }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } + "node_modules/@types/minimatch": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", + "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "dev": true, + "optional": true }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", - "dependencies": { - "@xtuc/long": "4.2.2" - } + "node_modules/@types/ms": { + "version": "0.7.31", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", + "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "node_modules/@types/node": { + "version": "18.16.19", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.19.tgz", + "integrity": "sha512-IXl7o+R9iti9eBW4Wg2hx1xQDig183jj7YLn8F7udNceyfkbn1ZxmzZXuak20gR40D7pIkIY1kYGx5VIGbaHKA==" }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + }, + "node_modules/@types/plist": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/plist/-/plist-3.0.2.tgz", + "integrity": "sha512-ULqvZNGMv0zRFvqn8/4LSPtnmN4MfhlPNtJCTpKuIIxGVGZ2rYWzFXrvEBoh9CVyqSE7D6YFRJ1hydLHI6kbWw==", + "dev": true, + "optional": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@types/node": "*", + "xmlbuilder": ">=11.0.1" } }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "dev": true }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" }, - "node_modules/7zip-bin": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/7zip-bin/-/7zip-bin-5.1.1.tgz", - "integrity": "sha512-sAP4LldeWNz0lNzmTird3uWfFDWWTeg6V/MsmyyLR9X1idwKBWIgt/ZvinqQldJm3LecKEs1emkbquO6PCiLVQ==", + "node_modules/@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==", "dev": true }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", "dev": true }, - "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dev": true, + "node_modules/@types/react": { + "version": "18.0.28", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.28.tgz", + "integrity": "sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==", "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" } }, - "node_modules/acorn": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", - "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" + "node_modules/@types/react-dom": { + "version": "18.0.11", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.11.tgz", + "integrity": "sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==", + "dev": true, + "dependencies": { + "@types/react": "*" } }, - "node_modules/acorn-globals": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "node_modules/@types/react-scroll": { + "version": "1.8.7", + "resolved": "https://registry.npmjs.org/@types/react-scroll/-/react-scroll-1.8.7.tgz", + "integrity": "sha512-BB8g+hQL7OtBPWg/NcES6p5u6vduZonGl1BxrsGUwcefE53pfI0pFDd1lRFndgEUE6whYdFfhD+j0sZZT/6brQ==", "dev": true, "dependencies": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" + "@types/react": "*" } }, - "node_modules/acorn-globals/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "node_modules/@types/react-toastify": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@types/react-toastify/-/react-toastify-4.1.0.tgz", + "integrity": "sha512-u7Ie/7LHBsPVz/iJxi/WlRDS7Gh9csCJACTDXx+pSLuZCm94xpkwzhM3jV1L5ZxP/in0Gp2tFbJ91VrSGr1gyQ==", + "deprecated": "This is a stub types definition. react-toastify provides its own type definitions, so you do not need this installed.", "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" + "dependencies": { + "react-toastify": "*" } }, - "node_modules/acorn-import-assertions": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", - "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", - "peerDependencies": { - "acorn": "^8" + "node_modules/@types/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==", + "dependencies": { + "@types/react": "*" } }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "node_modules/@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + "dependencies": { + "@types/node": "*" } }, - "node_modules/acorn-node": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", - "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", - "dev": true, + "node_modules/@types/responselike": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", + "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", "dependencies": { - "acorn": "^7.0.0", - "acorn-walk": "^7.0.0", - "xtend": "^4.0.2" + "@types/node": "*" } }, - "node_modules/acorn-node/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "dev": true }, - "node_modules/acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "node_modules/@types/scheduler": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + }, + "node_modules/@types/semver": { + "version": "7.3.13", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", + "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", + "dev": true + }, + "node_modules/@types/sequelize": { + "version": "4.28.14", + "resolved": "https://registry.npmjs.org/@types/sequelize/-/sequelize-4.28.14.tgz", + "integrity": "sha512-O8lTJ8YPVVaoY9xjduchDlo0MOS3w262pro2H1QMuFIo/kc/p1elP/UxLOTP2wcVO2cFd6Gvghg9ZSAiJi0GLA==", "dev": true, - "engines": { - "node": ">=0.4.0" + "dependencies": { + "@types/bluebird": "*", + "@types/continuation-local-storage": "*", + "@types/lodash": "*", + "@types/validator": "*" } }, - "node_modules/address": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", - "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "node_modules/@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", "dev": true, - "engines": { - "node": ">= 10.0.0" + "dependencies": { + "@types/express": "*" } }, - "node_modules/adjust-sourcemap-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", - "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "node_modules/@types/serve-static": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz", + "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==", "dev": true, "dependencies": { - "loader-utils": "^2.0.0", - "regex-parser": "^2.2.11" - }, - "engines": { - "node": ">=8.9" + "@types/mime": "*", + "@types/node": "*" } }, - "node_modules/ag-grid-community": { - "version": "28.2.1", - "resolved": "https://registry.npmjs.org/ag-grid-community/-/ag-grid-community-28.2.1.tgz", - "integrity": "sha512-DMZh/xD/FqYP17qJ1M92PolTYe+hrKuEaf+A4h13O6qn2x/xZQrTRGW5DgnQLR/uLMe1XXZQPKR3UKgAlKo69A==" - }, - "node_modules/ag-grid-react": { - "version": "28.2.1", - "resolved": "https://registry.npmjs.org/ag-grid-react/-/ag-grid-react-28.2.1.tgz", - "integrity": "sha512-3vbw+B77uWwAyiOJxQA5U+PQFRCCccUx7L5PIwrnA4Y7c1yAu8sB65hAZdBc9kuW26iltwv7asq0UzP7UAQUpg==", + "node_modules/@types/sizzle": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", + "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", + "dev": true + }, + "node_modules/@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "dev": true, "dependencies": { - "prop-types": "^15.8.1" - }, - "peerDependencies": { - "ag-grid-community": "~28.2.1", - "react": "^16.3.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.3.0 || ^17.0.0 || ^18.0.0" + "@types/node": "*" } }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "node_modules/@types/sqlite3": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/@types/sqlite3/-/sqlite3-3.1.8.tgz", + "integrity": "sha512-sQMt/qnyUWnqiTcJXm5ZfNPIBeJ/DVvJDwxw+0tAxPJvadzfiP1QhryO1JOR6t1yfb8NpzQb/Rud06mob5laIA==", + "dev": true, "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" + "@types/node": "*" } }, - "node_modules/agentkeepalive": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz", - "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==", - "devOptional": true, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/tough-cookie": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.2.tgz", + "integrity": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==", + "dev": true + }, + "node_modules/@types/trusted-types": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz", + "integrity": "sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==", + "dev": true + }, + "node_modules/@types/validator": { + "version": "13.7.13", + "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.7.13.tgz", + "integrity": "sha512-EMfHccxNKXaSxTK6DN0En9WsXa7uR4w3LQtx31f6Z2JjG5hJQeVX5zUYMZoatjZgnoQmRcT94WnNWwi0BzQW6Q==" + }, + "node_modules/@types/verror": { + "version": "1.10.6", + "resolved": "https://registry.npmjs.org/@types/verror/-/verror-1.10.6.tgz", + "integrity": "sha512-NNm+gdePAX1VGvPcGZCDKQZKYSiAWigKhKaz5KF94hG6f2s8de9Ow5+7AbXoeKxL8gavZfk4UquSAygOF2duEQ==", + "dev": true, + "optional": true + }, + "node_modules/@types/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==" + }, + "node_modules/@types/ws": { + "version": "8.5.4", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz", + "integrity": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==", + "dev": true, "dependencies": { - "debug": "^4.1.0", - "depd": "^2.0.0", - "humanize-ms": "^1.2.1" - }, - "engines": { - "node": ">= 8.0.0" + "@types/node": "*" } }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "devOptional": true, + "node_modules/@types/yargs": { + "version": "17.0.22", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.22.tgz", + "integrity": "sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==", + "dev": true, "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" + "@types/yargs-parser": "*" } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "node_modules/@types/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", + "optional": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "@types/node": "*" } }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.54.1.tgz", + "integrity": "sha512-a2RQAkosH3d3ZIV08s3DcL/mcGc2M/UC528VkPULFxR9VnVPT8pBu0IyBAJJmVsCmhVfwQX1v6q+QGnmSe1bew==", "dev": true, "dependencies": { - "ajv": "^8.0.0" + "@typescript-eslint/scope-manager": "5.54.1", + "@typescript-eslint/type-utils": "5.54.1", + "@typescript-eslint/utils": "5.54.1", + "debug": "^4.3.4", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "regexpp": "^3.2.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "ajv": "^8.0.0" + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" }, "peerDependenciesMeta": { - "ajv": { + "typescript": { "optional": true } } }, - "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "node_modules/@typescript-eslint/experimental-utils": { + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.54.1.tgz", + "integrity": "sha512-oqSc2Gr4TL/2M0XRJ9abA1o3Wf1cFJTNqWq0kjdStIIvgMQGZ3TSaFFJ2Cvy3Fgqi9UfDZ8u5idbACssIIyHaw==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "@typescript-eslint/utils": "5.54.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-formats/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, "peerDependencies": { - "ajv": "^6.9.1" + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/allotment": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/allotment/-/allotment-1.18.1.tgz", - "integrity": "sha512-ZhmpHoSvxHyPT5XjzTHeCBjzCMIFn1aGdNAzBCZhj1CcRMp31CaJCi+lfweoOLDbbjJqbFZqUk3xf+p7Mb0x5A==", + "node_modules/@typescript-eslint/parser": { + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.54.1.tgz", + "integrity": "sha512-8zaIXJp/nG9Ff9vQNh7TI+C3nA6q6iIsGJ4B4L6MhZ7mHnTMR4YP5vp2xydmFXIy8rpyIVbNAG44871LMt6ujg==", + "dev": true, "dependencies": { - "classnames": "^2.3.0", - "eventemitter3": "^5.0.0", - "lodash.clamp": "^4.0.0", - "lodash.debounce": "^4.0.0", - "lodash.isequal": "^4.5.0", - "use-resize-observer": "^9.0.0" + "@typescript-eslint/scope-manager": "5.54.1", + "@typescript-eslint/types": "5.54.1", + "@typescript-eslint/typescript-estree": "5.54.1", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0" + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.54.1.tgz", + "integrity": "sha512-zWKuGliXxvuxyM71UA/EcPxaviw39dB2504LqAmFDjmkpO8qNLHcmzlh6pbHs1h/7YQ9bnsO8CCcYCSA8sykUg==", "dev": true, "dependencies": { - "type-fest": "^0.21.3" + "@typescript-eslint/types": "5.54.1", + "@typescript-eslint/visitor-keys": "5.54.1" }, "engines": { - "node": ">=8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "node_modules/@typescript-eslint/type-utils": { + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.54.1.tgz", + "integrity": "sha512-WREHsTz0GqVYLIbzIZYbmUUr95DKEKIXZNH57W3s+4bVnuF1TKe2jH8ZNH8rO1CeMY3U4j4UQeqPNkHMiGem3g==", "dev": true, - "engines": [ - "node >= 0.8.0" - ], - "bin": { - "ansi-html": "bin/ansi-html" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dependencies": { + "@typescript-eslint/typescript-estree": "5.54.1", + "@typescript-eslint/utils": "5.54.1", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, "engines": { - "node": ">=8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@typescript-eslint/types": { + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.54.1.tgz", + "integrity": "sha512-G9+1vVazrfAfbtmCapJX8jRo2E4MDXxgm/IMOF4oGh3kq7XuK3JRkOg6y2Qu1VsTRmWETyTkWt1wxy7X7/yLkw==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.54.1.tgz", + "integrity": "sha512-bjK5t+S6ffHnVwA0qRPTZrxKSaFYocwFIkZx5k7pvWfsB1I57pO/0M0Skatzzw1sCkjJ83AfGTL0oFIFiDX3bg==", + "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "@typescript-eslint/types": "5.54.1", + "@typescript-eslint/visitor-keys": "5.54.1", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" }, "engines": { - "node": ">=8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "node_modules/@typescript-eslint/utils": { + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.54.1.tgz", + "integrity": "sha512-IY5dyQM8XD1zfDe5X8jegX6r2EVU5o/WJnLu/znLPWCBF7KNGC+adacXnt5jEYS9JixDcoccI6CvE4RCjHMzCQ==", "dev": true, "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.54.1", + "@typescript-eslint/types": "5.54.1", + "@typescript-eslint/typescript-estree": "5.54.1", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0", + "semver": "^7.3.7" }, "engines": { - "node": ">= 8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/app-builder-bin": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/app-builder-bin/-/app-builder-bin-4.0.0.tgz", - "integrity": "sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA==", - "dev": true - }, - "node_modules/app-builder-lib": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/app-builder-lib/-/app-builder-lib-23.6.0.tgz", - "integrity": "sha512-dQYDuqm/rmy8GSCE6Xl/3ShJg6Ab4bZJMT8KaTKGzT436gl1DN4REP3FCWfXoh75qGTJ+u+WsdnnpO9Jl8nyMA==", + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.54.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.54.1.tgz", + "integrity": "sha512-q8iSoHTgwCfgcRJ2l2x+xCbu8nBlRAlsQ33k24Adj8eoVBE0f8dUeI+bAa8F84Mv05UGbAx57g2zrRsYIooqQg==", "dev": true, "dependencies": { - "@develar/schema-utils": "~2.6.5", - "@electron/universal": "1.2.1", - "@malept/flatpak-bundler": "^0.4.0", - "7zip-bin": "~5.1.1", - "async-exit-hook": "^2.0.1", - "bluebird-lst": "^1.0.9", - "builder-util": "23.6.0", - "builder-util-runtime": "9.1.1", - "chromium-pickle-js": "^0.2.0", - "debug": "^4.3.4", - "ejs": "^3.1.7", - "electron-osx-sign": "^0.6.0", - "electron-publish": "23.6.0", - "form-data": "^4.0.0", - "fs-extra": "^10.1.0", - "hosted-git-info": "^4.1.0", - "is-ci": "^3.0.0", - "isbinaryfile": "^4.0.10", - "js-yaml": "^4.1.0", - "lazy-val": "^1.0.5", - "minimatch": "^3.1.2", - "read-config-file": "6.2.0", - "sanitize-filename": "^1.6.3", - "semver": "^7.3.7", - "tar": "^6.1.11", - "temp-file": "^3.4.0" + "@typescript-eslint/types": "5.54.1", + "eslint-visitor-keys": "^3.3.0" }, "engines": { - "node": ">=14.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vercel/webpack-asset-relocator-loader": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/@vercel/webpack-asset-relocator-loader/-/webpack-asset-relocator-loader-1.7.3.tgz", + "integrity": "sha512-vizrI18v8Lcb1PmNNUBz7yxPxxXoOeuaVEjTG9MjvDrphjiSxFZrRJ5tIghk+qdLFRCXI5HBCshgobftbmrC5g==", + "dev": true, + "dependencies": { + "resolve": "^1.10.0" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/7zip-bin": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/7zip-bin/-/7zip-bin-5.1.1.tgz", + "integrity": "sha512-sAP4LldeWNz0lNzmTird3uWfFDWWTeg6V/MsmyyLR9X1idwKBWIgt/ZvinqQldJm3LecKEs1emkbquO6PCiLVQ==", + "dev": true + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "dev": true, + "dependencies": { + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" + } + }, + "node_modules/acorn-globals/node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-node": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", + "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", + "dev": true, + "dependencies": { + "acorn": "^7.0.0", + "acorn-walk": "^7.0.0", + "xtend": "^4.0.2" + } + }, + "node_modules/acorn-node/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/ag-grid-community": { + "version": "28.2.1", + "resolved": "https://registry.npmjs.org/ag-grid-community/-/ag-grid-community-28.2.1.tgz", + "integrity": "sha512-DMZh/xD/FqYP17qJ1M92PolTYe+hrKuEaf+A4h13O6qn2x/xZQrTRGW5DgnQLR/uLMe1XXZQPKR3UKgAlKo69A==" + }, + "node_modules/ag-grid-react": { + "version": "28.2.1", + "resolved": "https://registry.npmjs.org/ag-grid-react/-/ag-grid-react-28.2.1.tgz", + "integrity": "sha512-3vbw+B77uWwAyiOJxQA5U+PQFRCCccUx7L5PIwrnA4Y7c1yAu8sB65hAZdBc9kuW26iltwv7asq0UzP7UAQUpg==", + "dependencies": { + "prop-types": "^15.8.1" + }, + "peerDependencies": { + "ag-grid-community": "~28.2.1", + "react": "^16.3.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.3.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/agentkeepalive": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz", + "integrity": "sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==", + "devOptional": true, + "dependencies": { + "debug": "^4.1.0", + "depd": "^2.0.0", + "humanize-ms": "^1.2.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "devOptional": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/allotment": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/allotment/-/allotment-1.18.1.tgz", + "integrity": "sha512-ZhmpHoSvxHyPT5XjzTHeCBjzCMIFn1aGdNAzBCZhj1CcRMp31CaJCi+lfweoOLDbbjJqbFZqUk3xf+p7Mb0x5A==", + "dependencies": { + "classnames": "^2.3.0", + "eventemitter3": "^5.0.0", + "lodash.clamp": "^4.0.0", + "lodash.debounce": "^4.0.0", + "lodash.isequal": "^4.5.0", + "use-resize-observer": "^9.0.0" + }, + "peerDependencies": { + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/app-builder-bin": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/app-builder-bin/-/app-builder-bin-4.0.0.tgz", + "integrity": "sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA==", + "dev": true + }, + "node_modules/app-builder-lib": { + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/app-builder-lib/-/app-builder-lib-23.6.0.tgz", + "integrity": "sha512-dQYDuqm/rmy8GSCE6Xl/3ShJg6Ab4bZJMT8KaTKGzT436gl1DN4REP3FCWfXoh75qGTJ+u+WsdnnpO9Jl8nyMA==", + "dev": true, + "dependencies": { + "@develar/schema-utils": "~2.6.5", + "@electron/universal": "1.2.1", + "@malept/flatpak-bundler": "^0.4.0", + "7zip-bin": "~5.1.1", + "async-exit-hook": "^2.0.1", + "bluebird-lst": "^1.0.9", + "builder-util": "23.6.0", + "builder-util-runtime": "9.1.1", + "chromium-pickle-js": "^0.2.0", + "debug": "^4.3.4", + "ejs": "^3.1.7", + "electron-osx-sign": "^0.6.0", + "electron-publish": "23.6.0", + "form-data": "^4.0.0", + "fs-extra": "^10.1.0", + "hosted-git-info": "^4.1.0", + "is-ci": "^3.0.0", + "isbinaryfile": "^4.0.10", + "js-yaml": "^4.1.0", + "lazy-val": "^1.0.5", + "minimatch": "^3.1.2", + "read-config-file": "6.2.0", + "sanitize-filename": "^1.6.3", + "semver": "^7.3.7", + "tar": "^6.1.11", + "temp-file": "^3.4.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" + }, + "node_modules/are-we-there-yet": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", + "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", + "devOptional": true, + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "dev": true, + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "node_modules/array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.reduce": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz", + "integrity": "sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, + "node_modules/asar": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/asar/-/asar-3.2.0.tgz", + "integrity": "sha512-COdw2ZQvKdFGFxXwX3oYh2/sOsJWJegrdJCGxnN4MZ7IULgRBp9P6665aqj9z1v9VwP4oP1hRBojRDQ//IGgAg==", + "deprecated": "Please use @electron/asar moving forward. There is no API change, just a package name change", + "dev": true, + "dependencies": { + "chromium-pickle-js": "^0.2.0", + "commander": "^5.0.0", + "glob": "^7.1.6", + "minimatch": "^3.0.4" + }, + "bin": { + "asar": "bin/asar.js" + }, + "engines": { + "node": ">=10.12.0" + }, + "optionalDependencies": { + "@types/glob": "^7.1.1" + } + }, + "node_modules/asar/node_modules/commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", + "dev": true + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "dev": true + }, + "node_modules/async-exit-hook": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/async-exit-hook/-/async-exit-hook-2.0.1.tgz", + "integrity": "sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/author-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/author-regex/-/author-regex-1.0.0.tgz", + "integrity": "sha512-KbWgR8wOYRAPekEmMXrYYdc7BRyhn2Ftk7KWfMUnQ43hFdojWEFRxhhRUm3/OFEdPa1r0KAvTTg9YQK57xTe0g==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.13", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", + "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-lite": "^1.0.30001426", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/aws-sdk": { + "version": "2.1358.0", + "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1358.0.tgz", + "integrity": "sha512-ZolqFlnm0mDNgub7FGrVi7r5A1rw+58zZziKhlis3IxOtIpHdx4BQU5pH4htAMuD0Ct557p/dC/wmnZH/1Rc9Q==", + "dependencies": { + "buffer": "4.9.2", + "events": "1.1.1", + "ieee754": "1.1.13", + "jmespath": "0.16.0", + "querystring": "0.2.0", + "sax": "1.2.1", + "url": "0.10.3", + "util": "^0.12.4", + "uuid": "8.0.0", + "xml2js": "0.5.0" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/aws-sdk/node_modules/buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/aws-sdk/node_modules/events": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", + "integrity": "sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/aws-sdk/node_modules/ieee754": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", + "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==" + }, + "node_modules/aws-sdk/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/aws-sdk/node_modules/punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==" + }, + "node_modules/aws-sdk/node_modules/sax": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz", + "integrity": "sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==" + }, + "node_modules/aws-sdk/node_modules/url": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/url/-/url-0.10.3.tgz", + "integrity": "sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ==", + "dependencies": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "node_modules/aws-sdk/node_modules/uuid": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.0.0.tgz", + "integrity": "sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/axe-core": { + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz", + "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", + "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "dev": true, + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/babel-jest": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.6.1.tgz", + "integrity": "sha512-qu+3bdPEQC6KZSPz+4Fyjbga5OODNcp49j6GKzG1EKbkfyJBxEYGVUmVGpwCSeGouG52R4EgYMLb6p9YeEEQ4A==", + "dev": true, + "dependencies": { + "@jest/transform": "^29.6.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.5.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "dev": true, + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz", + "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "dev": true, + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", + "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.3", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", + "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.3", + "core-js-compat": "^3.25.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", + "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-styled-components": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.7.tgz", + "integrity": "sha512-i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.16.0", + "@babel/helper-module-imports": "^7.16.0", + "babel-plugin-syntax-jsx": "^6.18.0", + "lodash": "^4.17.11", + "picomatch": "^2.3.0" + }, + "peerDependencies": { + "styled-components": ">= 2" + } + }, + "node_modules/babel-plugin-syntax-jsx": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", + "integrity": "sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==" + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==", + "dev": true + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz", + "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.5.0", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-react-app": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", + "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base16": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz", + "integrity": "sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "node_modules/bfj": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", + "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", + "dev": true, + "dependencies": { + "bluebird": "^3.5.5", + "check-types": "^11.1.1", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/bluebird-lst": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/bluebird-lst/-/bluebird-lst-1.0.9.tgz", + "integrity": "sha512-7B1Rtx82hjnSD4PGLAjVWeYH3tHAcVUmChh85a3lltKQm6FresXh9ErQo6oAv6CqxttczC3/kEg8SY5NluPuUw==", + "dev": true, + "dependencies": { + "bluebird": "^3.5.5" + } + }, + "node_modules/body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/bonjour-service": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.0.tgz", + "integrity": "sha512-LVRinRB3k1/K0XzZ2p58COnWvkQknIY6sf0zF2rpErvcJXpMBttEPQSxK+HEXSS9VmpZlDoDnQWv8ftJT20B0Q==", + "dev": true, + "dependencies": { + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/bonjour-service/node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/boolean": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", + "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==", + "optional": true + }, + "node_modules/bootstrap": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.2.3.tgz", + "integrity": "sha512-cEKPM+fwb3cT8NzQZYEu4HilJ3anCrWqh3CHAok1p9jXqMPsPTBhU25fBckEJHJ/p+tTxTFTsFQGM+gaHpi3QQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "peerDependencies": { + "@popperjs/core": "^2.11.6" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true + }, + "node_modules/browserslist": { + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "dev": true, + "dependencies": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "node_modules/buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "dev": true + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "engines": { + "node": "*" + } + }, + "node_modules/buffer-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", + "integrity": "sha512-tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", + "dev": true + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/buffer-writer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/buffer-writer/-/buffer-writer-2.0.0.tgz", + "integrity": "sha512-a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/builder-util": { + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/builder-util/-/builder-util-23.6.0.tgz", + "integrity": "sha512-QiQHweYsh8o+U/KNCZFSvISRnvRctb8m/2rB2I1JdByzvNKxPeFLlHFRPQRXab6aYeXc18j9LpsDLJ3sGQmWTQ==", + "dev": true, + "dependencies": { + "@types/debug": "^4.1.6", + "@types/fs-extra": "^9.0.11", + "7zip-bin": "~5.1.1", + "app-builder-bin": "4.0.0", + "bluebird-lst": "^1.0.9", + "builder-util-runtime": "9.1.1", + "chalk": "^4.1.1", + "cross-spawn": "^7.0.3", + "debug": "^4.3.4", + "fs-extra": "^10.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-ci": "^3.0.0", + "js-yaml": "^4.1.0", + "source-map-support": "^0.5.19", + "stat-mode": "^1.0.0", + "temp-file": "^3.4.0" + } + }, + "node_modules/builder-util-runtime": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/builder-util-runtime/-/builder-util-runtime-9.1.1.tgz", + "integrity": "sha512-azRhYLEoDvRDR8Dhis4JatELC/jUvYjm4cVSj7n9dauGTOM2eeNn9KS0z6YA6oDsjI1xphjNbY6PZZeHPzzqaw==", + "dev": true, + "dependencies": { + "debug": "^4.3.4", + "sax": "^1.2.4" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/c3": { + "version": "0.7.20", + "resolved": "https://registry.npmjs.org/c3/-/c3-0.7.20.tgz", + "integrity": "sha512-QZg4q5M32x2TEgoiQPgc+G+rAuDErTjtG2AeLxS8s0ZLxHBoqsaRcraVvLBG8Zbmj8hOefz2DCWSlX3gaV/11g==", + "dependencies": { + "d3": "^5.8.0" + } + }, + "node_modules/cacache": { + "version": "16.1.3", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", + "integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==", + "dev": true, + "dependencies": { + "@npmcli/fs": "^2.1.0", + "@npmcli/move-file": "^2.0.0", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "glob": "^8.0.1", + "infer-owner": "^1.0.4", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "mkdirp": "^1.0.4", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^9.0.0", + "tar": "^6.1.11", + "unique-filename": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/cacache/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/cacache/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/cacache/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/cacache/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "engines": { + "node": ">=10.6.0" + } + }, + "node_modules/cacheable-request": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz", + "integrity": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==", + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/camelize": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz", + "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001464", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001464.tgz", + "integrity": "sha512-oww27MtUmusatpRpCGSOneQk2/l5czXANDSFvsc7VuOQ86s3ANhZetpwXNf1zY/zdfP63Xvjz325DAdAoES13g==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ] + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/chart.js": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.3.0.tgz", + "integrity": "sha512-ynG0E79xGfMaV2xAHdbhwiPLczxnNNnasrmPEXriXsPJGjmhOBYzFVEsB65w2qMDz+CaBJJuJD0inE/ab/h36g==", + "dependencies": { + "@kurkle/color": "^0.3.0" + }, + "engines": { + "pnpm": ">=7" + } + }, + "node_modules/check-types": { + "version": "11.2.2", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.2.tgz", + "integrity": "sha512-HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA==", + "dev": true + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/chromium-pickle-js": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz", + "integrity": "sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==", + "dev": true + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "node_modules/classnames": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", + "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" + }, + "node_modules/clean-css": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz", + "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "devOptional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-color": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/cli-color/-/cli-color-2.0.3.tgz", + "integrity": "sha512-OkoZnxyC4ERN3zLzZaY9Emb7f/MhBOIpePv0Ycok0fJYT+Ouo00UBEIwsVsr0yoow++n5YWlSUgST9GKhNHiRQ==", + "dependencies": { + "d": "^1.0.1", + "es5-ext": "^0.10.61", + "es6-iterator": "^2.0.3", + "memoizee": "^0.4.15", + "timers-ext": "^0.1.7" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz", + "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "dev": true, + "dependencies": { + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone-response": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", + "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "dependencies": { + "mimic-response": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", + "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dev": true, + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/coa/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/coa/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/coa/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/coa/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", + "dev": true + }, + "node_modules/colors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", + "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==", + "dev": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", + "dev": true + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "node_modules/compare-version": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz", + "integrity": "sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/compute-scroll-into-view": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.1.0.tgz", + "integrity": "sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", + "dev": true + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/copy-webpack-plugin": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", + "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", + "dev": true, + "dependencies": { + "fast-glob": "^3.2.11", + "glob-parent": "^6.0.1", + "globby": "^13.1.1", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/globby": { + "version": "13.1.3", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz", + "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==", + "dev": true, + "dependencies": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/copy-webpack-plugin/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/core-js": { + "version": "3.29.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.29.0.tgz", + "integrity": "sha512-VG23vuEisJNkGl6XQmFJd3rEG/so/CNatqeE+7uZAwTSwFeB/qaO0be8xZYUNWprJ/GIwL8aMt9cj1kvbpTZhg==", + "dev": true, + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.29.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.29.0.tgz", + "integrity": "sha512-ScMn3uZNAFhK2DGoEfErguoiAHhV2Ju+oJo/jK08p7B3f3UhocUrCCkTvnZaiS+edl5nlIoiBXKcwMc6elv4KQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-pure": { + "version": "3.29.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.29.0.tgz", + "integrity": "sha512-v94gUjN5UTe1n0yN/opTihJ8QBWD2O8i19RfTZR7foONPWArnjB96QA/wk5ozu1mm6ja3udQCzOzwQXTxi3xOQ==", + "dev": true, + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", + "dev": true + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/crc": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", + "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", + "dev": true, + "optional": true, + "dependencies": { + "buffer": "^5.1.0" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "node_modules/cross-fetch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", + "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "dependencies": { + "node-fetch": "2.6.7" + } + }, + "node_modules/cross-fetch/node_modules/node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cross-spawn-windows-exe": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/cross-spawn-windows-exe/-/cross-spawn-windows-exe-1.2.0.tgz", + "integrity": "sha512-mkLtJJcYbDCxEG7Js6eUnUNndWjyUZwJ3H7bErmmtOYU/Zb99DyUkpamuIZE0b3bhmJyZ7D90uS6f+CGxRRjOw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/malept" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-cross-spawn-windows-exe?utm_medium=referral&utm_source=npm_fund" + } + ], + "dependencies": { + "@malept/cross-spawn-promise": "^1.1.0", + "is-wsl": "^2.2.0", + "which": "^2.0.2" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/cross-spawn-windows-exe/node_modules/@malept/cross-spawn-promise": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", + "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/malept" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" + } + ], + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/cross-zip": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cross-zip/-/cross-zip-4.0.0.tgz", + "integrity": "sha512-MEzGfZo0rqE10O/B+AEcCSJLZsrWuRUvmqJTqHNqBtALhaJc3E3ixLGLJNTRzEA2K34wbmOHC4fwYs9sVsdcCA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=12.10" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/css-blank-pseudo": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", + "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-blank-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-color-keywords": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", + "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz", + "integrity": "sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-has-pseudo": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", + "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-has-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-loader": { + "version": "6.7.3", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz", + "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.19", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.8" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "dev": true, + "dependencies": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/css-prefers-color-scheme": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", + "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "dev": true, + "bin": { + "css-prefers-color-scheme": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", + "dev": true + }, + "node_modules/css-to-react-native": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz", + "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==", + "dependencies": { + "camelize": "^1.0.0", + "css-color-keywords": "^1.0.0", + "postcss-value-parser": "^4.0.2" + } + }, + "node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssdb": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.4.1.tgz", + "integrity": "sha512-0Q8NOMpXJ3iTDDbUv9grcmQAfdDx4qz+fN/+Md2FGbevT+6+bJNQ2LjB2YIUlLbpBTM32idU1Sb+tb/uGt6/XQ==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", + "dev": true, + "dependencies": { + "cssnano-preset-default": "^5.2.14", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "dev": true, + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/cssom": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", + "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", + "dev": true + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/csstype": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", + "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==" + }, + "node_modules/d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "dependencies": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "node_modules/d3": { + "version": "5.16.0", + "resolved": "https://registry.npmjs.org/d3/-/d3-5.16.0.tgz", + "integrity": "sha512-4PL5hHaHwX4m7Zr1UapXW23apo6pexCgdetdJ5kTmADpG/7T9Gkxw0M0tf/pjoB63ezCCm0u5UaFYy2aMt0Mcw==", + "dependencies": { + "d3-array": "1", + "d3-axis": "1", + "d3-brush": "1", + "d3-chord": "1", + "d3-collection": "1", + "d3-color": "1", + "d3-contour": "1", + "d3-dispatch": "1", + "d3-drag": "1", + "d3-dsv": "1", + "d3-ease": "1", + "d3-fetch": "1", + "d3-force": "1", + "d3-format": "1", + "d3-geo": "1", + "d3-hierarchy": "1", + "d3-interpolate": "1", + "d3-path": "1", + "d3-polygon": "1", + "d3-quadtree": "1", + "d3-random": "1", + "d3-scale": "2", + "d3-scale-chromatic": "1", + "d3-selection": "1", + "d3-shape": "1", + "d3-time": "1", + "d3-time-format": "2", + "d3-timer": "1", + "d3-transition": "1", + "d3-voronoi": "1", + "d3-zoom": "1" + } + }, + "node_modules/d3-array": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", + "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" + }, + "node_modules/d3-axis": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-1.0.12.tgz", + "integrity": "sha512-ejINPfPSNdGFKEOAtnBtdkpr24c4d4jsei6Lg98mxf424ivoDP2956/5HDpIAtmHo85lqT4pruy+zEgvRUBqaQ==" + }, + "node_modules/d3-brush": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-1.1.6.tgz", + "integrity": "sha512-7RW+w7HfMCPyZLifTz/UnJmI5kdkXtpCbombUSs8xniAyo0vIbrDzDwUJB6eJOgl9u5DQOt2TQlYumxzD1SvYA==", + "dependencies": { + "d3-dispatch": "1", + "d3-drag": "1", + "d3-interpolate": "1", + "d3-selection": "1", + "d3-transition": "1" + } + }, + "node_modules/d3-chord": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-1.0.6.tgz", + "integrity": "sha512-JXA2Dro1Fxw9rJe33Uv+Ckr5IrAa74TlfDEhE/jfLOaXegMQFQTAgAw9WnZL8+HxVBRXaRGCkrNU7pJeylRIuA==", + "dependencies": { + "d3-array": "1", + "d3-path": "1" + } + }, + "node_modules/d3-collection": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz", + "integrity": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==" + }, + "node_modules/d3-color": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-1.4.1.tgz", + "integrity": "sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==" + }, + "node_modules/d3-contour": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-1.3.2.tgz", + "integrity": "sha512-hoPp4K/rJCu0ladiH6zmJUEz6+u3lgR+GSm/QdM2BBvDraU39Vr7YdDCicJcxP1z8i9B/2dJLgDC1NcvlF8WCg==", + "dependencies": { + "d3-array": "^1.1.1" + } + }, + "node_modules/d3-dispatch": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.6.tgz", + "integrity": "sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA==" + }, + "node_modules/d3-drag": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-1.2.5.tgz", + "integrity": "sha512-rD1ohlkKQwMZYkQlYVCrSFxsWPzI97+W+PaEIBNTMxRuxz9RF0Hi5nJWHGVJ3Om9d2fRTe1yOBINJyy/ahV95w==", + "dependencies": { + "d3-dispatch": "1", + "d3-selection": "1" + } + }, + "node_modules/d3-dsv": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.2.0.tgz", + "integrity": "sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g==", + "dependencies": { + "commander": "2", + "iconv-lite": "0.4", + "rw": "1" + }, + "bin": { + "csv2json": "bin/dsv2json", + "csv2tsv": "bin/dsv2dsv", + "dsv2dsv": "bin/dsv2dsv", + "dsv2json": "bin/dsv2json", + "json2csv": "bin/json2dsv", + "json2dsv": "bin/json2dsv", + "json2tsv": "bin/json2dsv", + "tsv2csv": "bin/dsv2dsv", + "tsv2json": "bin/dsv2json" + } + }, + "node_modules/d3-dsv/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/d3-ease": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-1.0.7.tgz", + "integrity": "sha512-lx14ZPYkhNx0s/2HX5sLFUI3mbasHjSSpwO/KaaNACweVwxUruKyWVcb293wMv1RqTPZyZ8kSZ2NogUZNcLOFQ==" + }, + "node_modules/d3-fetch": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-1.2.0.tgz", + "integrity": "sha512-yC78NBVcd2zFAyR/HnUiBS7Lf6inSCoWcSxFfw8FYL7ydiqe80SazNwoffcqOfs95XaLo7yebsmQqDKSsXUtvA==", + "dependencies": { + "d3-dsv": "1" + } + }, + "node_modules/d3-force": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-1.2.1.tgz", + "integrity": "sha512-HHvehyaiUlVo5CxBJ0yF/xny4xoaxFxDnBXNvNcfW9adORGZfyNF1dj6DGLKyk4Yh3brP/1h3rnDzdIAwL08zg==", + "dependencies": { + "d3-collection": "1", + "d3-dispatch": "1", + "d3-quadtree": "1", + "d3-timer": "1" + } + }, + "node_modules/d3-format": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-1.4.5.tgz", + "integrity": "sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==" + }, + "node_modules/d3-geo": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-1.12.1.tgz", + "integrity": "sha512-XG4d1c/UJSEX9NfU02KwBL6BYPj8YKHxgBEw5om2ZnTRSbIcego6dhHwcxuSR3clxh0EpE38os1DVPOmnYtTPg==", + "dependencies": { + "d3-array": "1" + } + }, + "node_modules/d3-hierarchy": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-1.1.9.tgz", + "integrity": "sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ==" + }, + "node_modules/d3-interpolate": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.4.0.tgz", + "integrity": "sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==", + "dependencies": { + "d3-color": "1" + } + }, + "node_modules/d3-path": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.9.tgz", + "integrity": "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==" + }, + "node_modules/d3-polygon": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-1.0.6.tgz", + "integrity": "sha512-k+RF7WvI08PC8reEoXa/w2nSg5AUMTi+peBD9cmFc+0ixHfbs4QmxxkarVal1IkVkgxVuk9JSHhJURHiyHKAuQ==" + }, + "node_modules/d3-quadtree": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-1.0.7.tgz", + "integrity": "sha512-RKPAeXnkC59IDGD0Wu5mANy0Q2V28L+fNe65pOCXVdVuTJS3WPKaJlFHer32Rbh9gIo9qMuJXio8ra4+YmIymA==" + }, + "node_modules/d3-random": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-1.1.2.tgz", + "integrity": "sha512-6AK5BNpIFqP+cx/sreKzNjWbwZQCSUatxq+pPRmFIQaWuoD+NrbVWw7YWpHiXpCQ/NanKdtGDuB+VQcZDaEmYQ==" + }, + "node_modules/d3-scale": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz", + "integrity": "sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==", + "dependencies": { + "d3-array": "^1.2.0", + "d3-collection": "1", + "d3-format": "1", + "d3-interpolate": "1", + "d3-time": "1", + "d3-time-format": "2" + } + }, + "node_modules/d3-scale-chromatic": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-1.5.0.tgz", + "integrity": "sha512-ACcL46DYImpRFMBcpk9HhtIyC7bTBR4fNOPxwVSl0LfulDAwyiHyPOTqcDG1+t5d4P9W7t/2NAuWu59aKko/cg==", + "dependencies": { + "d3-color": "1", + "d3-interpolate": "1" + } + }, + "node_modules/d3-selection": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-1.4.2.tgz", + "integrity": "sha512-SJ0BqYihzOjDnnlfyeHT0e30k0K1+5sR3d5fNueCNeuhZTnGw4M4o8mqJchSwgKMXCNFo+e2VTChiSJ0vYtXkg==" + }, + "node_modules/d3-shape": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.7.tgz", + "integrity": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==", + "dependencies": { + "d3-path": "1" + } + }, + "node_modules/d3-time": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-1.1.0.tgz", + "integrity": "sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==" + }, + "node_modules/d3-time-format": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.3.0.tgz", + "integrity": "sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ==", + "dependencies": { + "d3-time": "1" } }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" + "node_modules/d3-timer": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.10.tgz", + "integrity": "sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw==" }, - "node_modules/are-we-there-yet": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", - "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", - "devOptional": true, + "node_modules/d3-transition": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-1.3.2.tgz", + "integrity": "sha512-sc0gRU4PFqZ47lPVHloMn9tlPcv8jxgOQg+0zjhfZXMQuvppjG6YuwdMBE0TuqCZjeJkLecku/l9R0JPcRhaDA==", "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "d3-color": "1", + "d3-dispatch": "1", + "d3-ease": "1", + "d3-interpolate": "1", + "d3-selection": "^1.1.0", + "d3-timer": "1" } }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "dev": true - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "node_modules/d3-voronoi": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.4.tgz", + "integrity": "sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg==" }, - "node_modules/aria-query": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", - "dev": true, + "node_modules/d3-zoom": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-1.8.3.tgz", + "integrity": "sha512-VoLXTK4wvy1a0JpH2Il+F2CiOhVu7VRXWF5M/LroMIh3/zBAC3WAt7QoIvPibOavVo20hN6/37vwAsdBejLyKQ==", "dependencies": { - "deep-equal": "^2.0.5" + "d3-dispatch": "1", + "d3-drag": "1", + "d3-interpolate": "1", + "d3-selection": "1", + "d3-transition": "1" } }, - "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", "dev": true }, - "node_modules/array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "node_modules/data-urls": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", + "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" + "abab": "^2.0.6", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "node_modules/data-urls/node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" + "punycode": "^2.1.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12" } }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", - "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "node_modules/data-urls/node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12" } }, - "node_modules/array.prototype.reduce": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz", - "integrity": "sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==", - "dev": true, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-array-method-boxes-properly": "^1.0.0", - "is-string": "^1.0.7" + "ms": "2.1.2" }, "engines": { - "node": ">= 0.4" + "node": ">=6.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", - "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.1.3" + "optional": true, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "dev": true }, - "node_modules/asar": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/asar/-/asar-3.2.0.tgz", - "integrity": "sha512-COdw2ZQvKdFGFxXwX3oYh2/sOsJWJegrdJCGxnN4MZ7IULgRBp9P6665aqj9z1v9VwP4oP1hRBojRDQ//IGgAg==", - "deprecated": "Please use @electron/asar moving forward. There is no API change, just a package name change", - "dev": true, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", "dependencies": { - "chromium-pickle-js": "^0.2.0", - "commander": "^5.0.0", - "glob": "^7.1.6", - "minimatch": "^3.0.4" - }, - "bin": { - "asar": "bin/asar.js" + "mimic-response": "^3.1.0" }, "engines": { - "node": ">=10.12.0" + "node": ">=10" }, - "optionalDependencies": { - "@types/glob": "^7.1.1" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/asar/node_modules/commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", - "dev": true, + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", "engines": { - "node": ">= 6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.8" - } + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true }, - "node_modules/ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", + "node_modules/deep-equal": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", + "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "es-get-iterator": "^1.1.2", + "get-intrinsic": "^1.1.3", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.1", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "node_modules/deepmerge": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", + "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==", "dev": true, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", - "dev": true - }, - "node_modules/async-exit-hook": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/async-exit-hook/-/async-exit-hook-2.0.1.tgz", - "integrity": "sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==", + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", "dev": true, + "dependencies": { + "execa": "^5.0.0" + }, "engines": { - "node": ">=0.12.0" + "node": ">= 10" } }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", "engines": { - "node": ">= 4.0.0" + "node": ">=10" } }, - "node_modules/author-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/author-regex/-/author-regex-1.0.0.tgz", - "integrity": "sha512-KbWgR8wOYRAPekEmMXrYYdc7BRyhn2Ftk7KWfMUnQ43hFdojWEFRxhhRUm3/OFEdPa1r0KAvTTg9YQK57xTe0g==", + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", "dev": true, "engines": { - "node": ">=0.8" + "node": ">=8" } }, - "node_modules/autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - } - ], + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "devOptional": true, "dependencies": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" }, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">= 0.4" }, - "peerDependencies": { - "postcss": "^8.1.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "engines": { - "node": ">= 0.4" - }, + "node_modules/defined": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz", + "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==", + "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/aws-sdk": { - "version": "2.1358.0", - "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1358.0.tgz", - "integrity": "sha512-ZolqFlnm0mDNgub7FGrVi7r5A1rw+58zZziKhlis3IxOtIpHdx4BQU5pH4htAMuD0Ct557p/dC/wmnZH/1Rc9Q==", - "dependencies": { - "buffer": "4.9.2", - "events": "1.1.1", - "ieee754": "1.1.13", - "jmespath": "0.16.0", - "querystring": "0.2.0", - "sax": "1.2.1", - "url": "0.10.3", - "util": "^0.12.4", - "uuid": "8.0.0", - "xml2js": "0.5.0" - }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, "engines": { - "node": ">= 10.0.0" + "node": ">=0.4.0" } }, - "node_modules/aws-sdk/node_modules/buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", - "dependencies": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" }, - "node_modules/aws-sdk/node_modules/events": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", - "integrity": "sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==", + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "devOptional": true, "engines": { - "node": ">=0.4.x" + "node": ">= 0.8" } }, - "node_modules/aws-sdk/node_modules/ieee754": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", - "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==" - }, - "node_modules/aws-sdk/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "node_modules/aws-sdk/node_modules/punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==" + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } }, - "node_modules/aws-sdk/node_modules/sax": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz", - "integrity": "sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==" + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } }, - "node_modules/aws-sdk/node_modules/url": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/url/-/url-0.10.3.tgz", - "integrity": "sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ==", - "dependencies": { - "punycode": "1.3.2", - "querystring": "0.2.0" + "node_modules/detect-libc": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", + "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", + "engines": { + "node": ">=8" } }, - "node_modules/aws-sdk/node_modules/uuid": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.0.0.tgz", - "integrity": "sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==", - "bin": { - "uuid": "dist/bin/uuid" + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" } }, - "node_modules/axe-core": { - "version": "4.6.3", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz", - "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==", + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "devOptional": true + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", "dev": true, + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, "engines": { - "node": ">=4" + "node": ">= 4.2.1" } }, - "node_modules/axobject-query": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", - "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "deep-equal": "^2.0.5" + "ms": "2.0.0" } }, - "node_modules/babel-jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", - "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/detective": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", + "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", "dev": true, "dependencies": { - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^27.5.1", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" + "acorn-node": "^1.8.2", + "defined": "^1.0.0", + "minimist": "^1.2.6" }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "bin": { + "detective": "bin/detective.js" }, - "peerDependencies": { - "@babel/core": "^7.8.0" + "engines": { + "node": ">=0.8.0" } }, - "node_modules/babel-loader": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", - "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true, - "dependencies": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^2.0.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - }, "engines": { - "node": ">= 8.9" - }, - "peerDependencies": { - "@babel/core": "^7.0.0", - "webpack": ">=2" + "node": ">=0.3.1" } }, - "node_modules/babel-loader/node_modules/schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "node_modules/diff-match-patch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz", + "integrity": "sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==" + }, + "node_modules/diff-sequences": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz", + "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==", "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - }, "engines": { - "node": ">= 8.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "node_modules/dir-compare": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-2.4.0.tgz", + "integrity": "sha512-l9hmu8x/rjVC9Z2zmGzkhOEowZvW7pmYws5CWHutg8u1JgvsKWMx7Q/UODeu4djLZ4FgW5besw5yvMQnBHzuCA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" + "buffer-equal": "1.0.0", + "colors": "1.0.3", + "commander": "2.9.0", + "minimatch": "3.0.4" }, - "engines": { - "node": ">=8" + "bin": { + "dircompare": "src/cli/dircompare.js" } }, - "node_modules/babel-plugin-jest-hoist": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", - "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "node_modules/dir-compare/node_modules/commander": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", + "integrity": "sha512-bmkUukX8wAOjHdN26xj5c4ctEV22TQ7dQYhSmuckKhToXrkUn0iIaolHdIxYYqD55nhpSPA9zPQ1yP57GdXP2A==", "dev": true, "dependencies": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.0.0", - "@types/babel__traverse": "^7.0.6" + "graceful-readlink": ">= 1.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.6.x" } }, - "node_modules/babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "node_modules/dir-compare/node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, "dependencies": { - "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=10", - "npm": ">=6" - } - }, - "node_modules/babel-plugin-named-asset-import": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", - "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", - "dev": true, - "peerDependencies": { - "@babel/core": "^7.1.0" + "node": "*" } }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" + "path-type": "^4.0.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">=8" } }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "node_modules/dmg-builder": { + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/dmg-builder/-/dmg-builder-23.6.0.tgz", + "integrity": "sha512-jFZvY1JohyHarIAlTbfQOk+HnceGjjAdFjVn3n8xlDWKsYNqbO4muca6qXEZTfGXeQMG7TYim6CeS5XKSfSsGA==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" + "app-builder-lib": "23.6.0", + "builder-util": "23.6.0", + "builder-util-runtime": "9.1.1", + "fs-extra": "^10.0.0", + "iconv-lite": "^0.6.2", + "js-yaml": "^4.1.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "optionalDependencies": { + "dmg-license": "^1.0.11" } }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "node_modules/dmg-builder/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/babel-plugin-styled-components": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.7.tgz", - "integrity": "sha512-i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA==", + "node_modules/dmg-license": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/dmg-license/-/dmg-license-1.0.11.tgz", + "integrity": "sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], "dependencies": { - "@babel/helper-annotate-as-pure": "^7.16.0", - "@babel/helper-module-imports": "^7.16.0", - "babel-plugin-syntax-jsx": "^6.18.0", - "lodash": "^4.17.11", - "picomatch": "^2.3.0" + "@types/plist": "^3.0.1", + "@types/verror": "^1.10.3", + "ajv": "^6.10.0", + "crc": "^3.8.0", + "iconv-corefoundation": "^1.1.7", + "plist": "^3.0.4", + "smart-buffer": "^4.0.2", + "verror": "^1.10.0" }, - "peerDependencies": { - "styled-components": ">= 2" + "bin": { + "dmg-license": "bin/dmg-license.js" + }, + "engines": { + "node": ">=8" } }, - "node_modules/babel-plugin-syntax-jsx": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", - "integrity": "sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==" - }, - "node_modules/babel-plugin-transform-react-remove-prop-types": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", - "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==", + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", "dev": true }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "node_modules/dns-packet": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz", + "integrity": "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==", "dev": true, "dependencies": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" + "@leichtgewicht/ip-codec": "^2.0.1" }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "engines": { + "node": ">=6" } }, - "node_modules/babel-preset-jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", - "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "dependencies": { - "babel-plugin-jest-hoist": "^27.5.1", - "babel-preset-current-node-syntax": "^1.0.0" + "esutils": "^2.0.2" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "node": ">=6.0.0" } }, - "node_modules/babel-preset-react-app": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", - "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", "dev": true, "dependencies": { - "@babel/core": "^7.16.0", - "@babel/plugin-proposal-class-properties": "^7.16.0", - "@babel/plugin-proposal-decorators": "^7.16.4", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", - "@babel/plugin-proposal-numeric-separator": "^7.16.0", - "@babel/plugin-proposal-optional-chaining": "^7.16.0", - "@babel/plugin-proposal-private-methods": "^7.16.0", - "@babel/plugin-transform-flow-strip-types": "^7.16.0", - "@babel/plugin-transform-react-display-name": "^7.16.0", - "@babel/plugin-transform-runtime": "^7.16.4", - "@babel/preset-env": "^7.16.4", - "@babel/preset-react": "^7.16.0", - "@babel/preset-typescript": "^7.16.0", - "@babel/runtime": "^7.16.3", - "babel-plugin-macros": "^3.1.0", - "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + "utila": "~0.4" } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } }, - "node_modules/base16": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz", - "integrity": "sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==" + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "node_modules/dom-serializer/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, "funding": [ { "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" + "url": "https://github.com/sponsors/fb55" } ] }, - "node_modules/batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", - "dev": true - }, - "node_modules/bfj": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", - "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", + "node_modules/domexception": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", + "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", "dev": true, "dependencies": { - "bluebird": "^3.5.5", - "check-types": "^11.1.1", - "hoopy": "^0.1.4", - "tryer": "^1.0.1" + "webidl-conversions": "^7.0.0" }, "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "engines": { - "node": "*" + "node": ">=12" } }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dev": true, + "dependencies": { + "domelementtype": "^2.2.0" + }, "engines": { - "node": ">=8" + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dev": true, "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "node_modules/bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - }, - "node_modules/bluebird-lst": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/bluebird-lst/-/bluebird-lst-1.0.9.tgz", - "integrity": "sha512-7B1Rtx82hjnSD4PGLAjVWeYH3tHAcVUmChh85a3lltKQm6FresXh9ErQo6oAv6CqxttczC3/kEg8SY5NluPuUw==", + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dev": true, "dependencies": { - "bluebird": "^3.5.5" + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "node_modules/body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", + "dev": true + }, + "node_modules/dottie": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/dottie/-/dottie-2.0.6.tgz", + "integrity": "sha512-iGCHkfUc5kFekGiqhe8B/mdaurD+lakO9txNnTvKtA6PISrw86LgqHvRzWYPyoE2Ph5aMIrCw9/uko6XHTKCwA==" + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, + "node_modules/editorconfig": { + "version": "0.15.3", + "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-0.15.3.tgz", + "integrity": "sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==", "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" + "commander": "^2.19.0", + "lru-cache": "^4.1.5", + "semver": "^5.6.0", + "sigmund": "^1.0.1" }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "bin": { + "editorconfig": "bin/editorconfig" } }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, + "node_modules/editorconfig/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/editorconfig/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", "dependencies": { - "ms": "2.0.0" + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" } }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/bonjour-service": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.0.tgz", - "integrity": "sha512-LVRinRB3k1/K0XzZ2p58COnWvkQknIY6sf0zF2rpErvcJXpMBttEPQSxK+HEXSS9VmpZlDoDnQWv8ftJT20B0Q==", - "dev": true, - "dependencies": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" + "node_modules/editorconfig/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" } }, - "node_modules/bonjour-service/node_modules/array-flatten": { + "node_modules/editorconfig/node_modules/yallist": { "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", - "dev": true + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "dev": true }, - "node_modules/boolean": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", - "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==", - "optional": true - }, - "node_modules/bootstrap": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.2.3.tgz", - "integrity": "sha512-cEKPM+fwb3cT8NzQZYEu4HilJ3anCrWqh3CHAok1p9jXqMPsPTBhU25fBckEJHJ/p+tTxTFTsFQGM+gaHpi3QQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/twbs" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/bootstrap" - } - ], - "peerDependencies": { - "@popperjs/core": "^2.11.6" + "node_modules/ejs": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", + "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", + "dev": true, + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/electron": { + "version": "24.1.1", + "resolved": "https://registry.npmjs.org/electron/-/electron-24.1.1.tgz", + "integrity": "sha512-ymjUMe6Pvh9ytpM4lOvr+Qxd6NG5AELRtR6tw54bK3FXfKtTTKKAtZw/NbwHwkRAlWu8FNAGOuvCoap6/bm9LQ==", + "hasInstallScript": true, "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "@electron/get": "^2.0.0", + "@types/node": "^18.11.18", + "extract-zip": "^2.0.1" + }, + "bin": { + "electron": "cli.js" + }, + "engines": { + "node": ">= 12.20.55" } }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "node_modules/electron-builder": { + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/electron-builder/-/electron-builder-23.6.0.tgz", + "integrity": "sha512-y8D4zO+HXGCNxFBV/JlyhFnoQ0Y0K7/sFH+XwIbj47pqaW8S6PGYQbjoObolKBR1ddQFPt4rwp4CnwMJrW3HAw==", "dev": true, "dependencies": { - "fill-range": "^7.0.1" + "@types/yargs": "^17.0.1", + "app-builder-lib": "23.6.0", + "builder-util": "23.6.0", + "builder-util-runtime": "9.1.1", + "chalk": "^4.1.1", + "dmg-builder": "23.6.0", + "fs-extra": "^10.0.0", + "is-ci": "^3.0.0", + "lazy-val": "^1.0.5", + "read-config-file": "6.2.0", + "simple-update-notifier": "^1.0.7", + "yargs": "^17.5.1" + }, + "bin": { + "electron-builder": "cli.js", + "install-app-deps": "install-app-deps.js" }, "engines": { - "node": ">=8" + "node": ">=14.0.0" } }, - "node_modules/browser-process-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", - "dev": true + "node_modules/electron-installer-common": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/electron-installer-common/-/electron-installer-common-0.10.3.tgz", + "integrity": "sha512-mYbP+6i+nHMIm0WZHXgGdmmXMe+KXncl6jZYQNcCF9C1WsNA9C5SZ2VP4TLQMSIoFO+X4ugkMEA5uld1bmyEvA==", + "dev": true, + "optional": true, + "dependencies": { + "@malept/cross-spawn-promise": "^1.0.0", + "asar": "^3.0.0", + "debug": "^4.1.1", + "fs-extra": "^9.0.0", + "glob": "^7.1.4", + "lodash": "^4.17.15", + "parse-author": "^2.0.0", + "semver": "^7.1.1", + "tmp-promise": "^3.0.2" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "url": "https://github.com/electron-userland/electron-installer-common?sponsor=1" + }, + "optionalDependencies": { + "@types/fs-extra": "^9.0.1" + } }, - "node_modules/browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "node_modules/electron-installer-common/node_modules/@malept/cross-spawn-promise": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", + "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", + "dev": true, "funding": [ { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" + "type": "individual", + "url": "https://github.com/sponsors/malept" }, { "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" + "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" } ], + "optional": true, "dependencies": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" + "cross-spawn": "^7.0.1" }, - "bin": { - "browserslist": "cli.js" + "engines": { + "node": ">= 10" + } + }, + "node_modules/electron-installer-common/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "optional": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "node": ">=10" } }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "node_modules/electron-installer-debian": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/electron-installer-debian/-/electron-installer-debian-3.1.0.tgz", + "integrity": "sha512-k6KChvx0Fw8XTlCqwwbBfh19yGQaKjGdbugokmr1IpzINOm4QFyACKMTHAYFHW5LCBUZQShZD96hwxUZ+8Kx+w==", "dev": true, + "optional": true, + "os": [ + "darwin", + "linux" + ], "dependencies": { - "node-int64": "^0.4.0" + "@malept/cross-spawn-promise": "^1.0.0", + "debug": "^4.1.1", + "electron-installer-common": "^0.10.2", + "fs-extra": "^9.0.0", + "get-folder-size": "^2.0.1", + "lodash": "^4.17.4", + "word-wrap": "^1.2.3", + "yargs": "^15.0.1" + }, + "bin": { + "electron-installer-debian": "src/cli.js" + }, + "engines": { + "node": ">= 10.0.0" } }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "node_modules/electron-installer-debian/node_modules/@malept/cross-spawn-promise": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", + "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", "dev": true, "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" + "type": "individual", + "url": "https://github.com/sponsors/malept" }, { - "type": "consulting", - "url": "https://feross.org/support" + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" } ], + "optional": true, "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "cross-spawn": "^7.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/electron-installer-debian/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=6" } }, - "node_modules/buffer-alloc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", - "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "node_modules/electron-installer-debian/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", "dev": true, + "optional": true, "dependencies": { - "buffer-alloc-unsafe": "^1.1.0", - "buffer-fill": "^1.0.0" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" } }, - "node_modules/buffer-alloc-unsafe": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", - "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", - "dev": true - }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "node_modules/electron-installer-debian/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "optional": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, "engines": { - "node": "*" + "node": ">=8" } }, - "node_modules/buffer-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", - "integrity": "sha512-tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ==", + "node_modules/electron-installer-debian/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, + "optional": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, "engines": { - "node": ">=0.4.0" + "node": ">=10" } }, - "node_modules/buffer-fill": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", - "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", - "dev": true - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - }, - "node_modules/buffer-writer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/buffer-writer/-/buffer-writer-2.0.0.tgz", - "integrity": "sha512-a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw==", + "node_modules/electron-installer-debian/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "optional": true, + "dependencies": { + "p-locate": "^4.1.0" + }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/builder-util": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/builder-util/-/builder-util-23.6.0.tgz", - "integrity": "sha512-QiQHweYsh8o+U/KNCZFSvISRnvRctb8m/2rB2I1JdByzvNKxPeFLlHFRPQRXab6aYeXc18j9LpsDLJ3sGQmWTQ==", + "node_modules/electron-installer-debian/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, + "optional": true, "dependencies": { - "@types/debug": "^4.1.6", - "@types/fs-extra": "^9.0.11", - "7zip-bin": "~5.1.1", - "app-builder-bin": "4.0.0", - "bluebird-lst": "^1.0.9", - "builder-util-runtime": "9.1.1", - "chalk": "^4.1.1", - "cross-spawn": "^7.0.3", - "debug": "^4.3.4", - "fs-extra": "^10.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-ci": "^3.0.0", - "js-yaml": "^4.1.0", - "source-map-support": "^0.5.19", - "stat-mode": "^1.0.0", - "temp-file": "^3.4.0" + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/builder-util-runtime": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/builder-util-runtime/-/builder-util-runtime-9.1.1.tgz", - "integrity": "sha512-azRhYLEoDvRDR8Dhis4JatELC/jUvYjm4cVSj7n9dauGTOM2eeNn9KS0z6YA6oDsjI1xphjNbY6PZZeHPzzqaw==", + "node_modules/electron-installer-debian/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, + "optional": true, "dependencies": { - "debug": "^4.3.4", - "sax": "^1.2.4" + "p-limit": "^2.2.0" }, "engines": { - "node": ">=12.0.0" + "node": ">=8" } }, - "node_modules/builtin-modules": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", - "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "node_modules/electron-installer-debian/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, - "engines": { - "node": ">=6" + "optional": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=8" } }, - "node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "node_modules/electron-installer-debian/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "dev": true, + "optional": true + }, + "node_modules/electron-installer-debian/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", "dev": true, + "optional": true, + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, "engines": { - "node": ">= 0.8" + "node": ">=8" } }, - "node_modules/c3": { - "version": "0.7.20", - "resolved": "https://registry.npmjs.org/c3/-/c3-0.7.20.tgz", - "integrity": "sha512-QZg4q5M32x2TEgoiQPgc+G+rAuDErTjtG2AeLxS8s0ZLxHBoqsaRcraVvLBG8Zbmj8hOefz2DCWSlX3gaV/11g==", + "node_modules/electron-installer-debian/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "optional": true, "dependencies": { - "d3": "^5.8.0" + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" } }, - "node_modules/cacache": { - "version": "16.1.3", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", - "integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==", + "node_modules/electron-installer-redhat": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/electron-installer-redhat/-/electron-installer-redhat-3.4.0.tgz", + "integrity": "sha512-gEISr3U32Sgtj+fjxUAlSDo3wyGGq6OBx7rF5UdpIgbnpUvMN4W5uYb0ThpnAZ42VEJh/3aODQXHbFS4f5J3Iw==", "dev": true, + "optional": true, + "os": [ + "darwin", + "linux" + ], "dependencies": { - "@npmcli/fs": "^2.1.0", - "@npmcli/move-file": "^2.0.0", - "chownr": "^2.0.0", - "fs-minipass": "^2.1.0", - "glob": "^8.0.1", - "infer-owner": "^1.0.4", - "lru-cache": "^7.7.1", - "minipass": "^3.1.6", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "mkdirp": "^1.0.4", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^9.0.0", - "tar": "^6.1.11", - "unique-filename": "^2.0.0" + "@malept/cross-spawn-promise": "^1.0.0", + "debug": "^4.1.1", + "electron-installer-common": "^0.10.2", + "fs-extra": "^9.0.0", + "lodash": "^4.17.15", + "word-wrap": "^1.2.3", + "yargs": "^16.0.2" + }, + "bin": { + "electron-installer-redhat": "src/cli.js" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 10.0.0" } }, - "node_modules/cacache/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/electron-installer-redhat/node_modules/@malept/cross-spawn-promise": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", + "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/malept" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" + } + ], + "optional": true, "dependencies": { - "balanced-match": "^1.0.0" + "cross-spawn": "^7.0.1" + }, + "engines": { + "node": ">= 10" } }, - "node_modules/cacache/node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "node_modules/electron-installer-redhat/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, + "optional": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, - "node_modules/cacache/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "node_modules/electron-installer-redhat/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, + "optional": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, "engines": { - "node": ">=12" + "node": ">=10" } }, - "node_modules/cacache/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "node_modules/electron-installer-redhat/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, + "optional": true, "dependencies": { - "brace-expansion": "^2.0.1" + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" }, "engines": { "node": ">=10" } }, - "node_modules/cacheable-lookup": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "node_modules/electron-installer-redhat/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "optional": true, "engines": { - "node": ">=10.6.0" + "node": ">=10" } }, - "node_modules/cacheable-request": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz", - "integrity": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==", + "node_modules/electron-notarize": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/electron-notarize/-/electron-notarize-1.2.2.tgz", + "integrity": "sha512-ZStVWYcWI7g87/PgjPJSIIhwQXOaw4/XeXU+pWqMMktSLHaGMLHdyPPN7Cmao7+Cr7fYufA16npdtMndYciHNw==", + "deprecated": "Please use @electron/notarize moving forward. There is no API change, just a package name change", + "dev": true, "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" + "debug": "^4.1.1", + "fs-extra": "^9.0.1" }, "engines": { - "node": ">=8" + "node": ">= 10.0.0" } }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "node_modules/electron-notarize/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "engines": { - "node": ">=6" + "node": ">=10" } }, - "node_modules/camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "node_modules/electron-osx-sign": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/electron-osx-sign/-/electron-osx-sign-0.6.0.tgz", + "integrity": "sha512-+hiIEb2Xxk6eDKJ2FFlpofCnemCbjbT5jz+BKGpVBrRNT3kWTGs4DfNX6IzGwgi33hUcXF+kFs9JW+r6Wc1LRg==", + "deprecated": "Please use @electron/osx-sign moving forward. Be aware the API is slightly different", "dev": true, "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" + "bluebird": "^3.5.0", + "compare-version": "^0.1.2", + "debug": "^2.6.8", + "isbinaryfile": "^3.0.2", + "minimist": "^1.2.0", + "plist": "^3.0.1" + }, + "bin": { + "electron-osx-flat": "bin/electron-osx-flat.js", + "electron-osx-sign": "bin/electron-osx-sign.js" + }, + "engines": { + "node": ">=4.0.0" } }, - "node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "node_modules/electron-osx-sign/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "ms": "2.0.0" } }, - "node_modules/camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "node_modules/electron-osx-sign/node_modules/isbinaryfile": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz", + "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==", "dev": true, + "dependencies": { + "buffer-alloc": "^1.2.0" + }, "engines": { - "node": ">= 6" + "node": ">=0.6.0" } }, - "node_modules/camelize": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz", - "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/electron-osx-sign/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, - "node_modules/caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "node_modules/electron-packager": { + "version": "16.0.0", + "resolved": "https://registry.npmjs.org/electron-packager/-/electron-packager-16.0.0.tgz", + "integrity": "sha512-7Ey4UUaHg3FYhA7ktsAvCWP8srp9+iPljGdeJBsNaZBakU6HWhvRC+Pc7LWXGCgAVIN5BQsUwR3xrCbFno91VA==", "dev": true, "dependencies": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" + "@electron/get": "^2.0.0", + "@electron/universal": "^1.2.1", + "asar": "^3.1.0", + "cross-spawn-windows-exe": "^1.2.0", + "debug": "^4.0.1", + "electron-notarize": "^1.1.1", + "electron-osx-sign": "^0.5.0", + "extract-zip": "^2.0.0", + "filenamify": "^4.1.0", + "fs-extra": "^10.1.0", + "galactus": "^0.2.1", + "get-package-info": "^1.0.0", + "junk": "^3.1.0", + "parse-author": "^2.0.0", + "plist": "^3.0.0", + "rcedit": "^3.0.1", + "resolve": "^1.1.6", + "semver": "^7.1.3", + "yargs-parser": "^21.1.1" + }, + "bin": { + "electron-packager": "bin/electron-packager.js" + }, + "engines": { + "node": ">= 14.17.5" + }, + "funding": { + "url": "https://github.com/electron/electron-packager?sponsor=1" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001464", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001464.tgz", - "integrity": "sha512-oww27MtUmusatpRpCGSOneQk2/l5czXANDSFvsc7VuOQ86s3ANhZetpwXNf1zY/zdfP63Xvjz325DAdAoES13g==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - } - ] - }, - "node_modules/case-sensitive-paths-webpack-plugin": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", - "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "node_modules/electron-packager/node_modules/electron-osx-sign": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/electron-osx-sign/-/electron-osx-sign-0.5.0.tgz", + "integrity": "sha512-icoRLHzFz/qxzDh/N4Pi2z4yVHurlsCAYQvsCSG7fCedJ4UJXBS6PoQyGH71IfcqKupcKeK7HX/NkyfG+v6vlQ==", + "deprecated": "Please use @electron/osx-sign moving forward. Be aware the API is slightly different", "dev": true, + "dependencies": { + "bluebird": "^3.5.0", + "compare-version": "^0.1.2", + "debug": "^2.6.8", + "isbinaryfile": "^3.0.2", + "minimist": "^1.2.0", + "plist": "^3.0.1" + }, + "bin": { + "electron-osx-flat": "bin/electron-osx-flat.js", + "electron-osx-sign": "bin/electron-osx-sign.js" + }, "engines": { - "node": ">=4" + "node": ">=4.0.0" } }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/electron-packager/node_modules/electron-osx-sign/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "ms": "2.0.0" } }, - "node_modules/char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "node_modules/electron-packager/node_modules/isbinaryfile": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz", + "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==", "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/chart.js": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.3.0.tgz", - "integrity": "sha512-ynG0E79xGfMaV2xAHdbhwiPLczxnNNnasrmPEXriXsPJGjmhOBYzFVEsB65w2qMDz+CaBJJuJD0inE/ab/h36g==", "dependencies": { - "@kurkle/color": "^0.3.0" + "buffer-alloc": "^1.2.0" }, "engines": { - "pnpm": ">=7" + "node": ">=0.6.0" } }, - "node_modules/check-types": { - "version": "11.2.2", - "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.2.2.tgz", - "integrity": "sha512-HBiYvXvn9Z70Z88XKjz3AEKd4HJhBXsa3j7xFnITAzoS8+q6eIGi8qDB8FKPBAjtuxjI/zFpwuiCb8oDtKOYrA==", + "node_modules/electron-packager/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "node_modules/electron-publish": { + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/electron-publish/-/electron-publish-23.6.0.tgz", + "integrity": "sha512-jPj3y+eIZQJF/+t5SLvsI5eS4mazCbNYqatv5JihbqOstIM13k0d1Z3vAWntvtt13Itl61SO6seicWdioOU5dg==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "@types/fs-extra": "^9.0.11", + "builder-util": "23.6.0", + "builder-util-runtime": "9.1.1", + "chalk": "^4.1.1", + "fs-extra": "^10.0.0", + "lazy-val": "^1.0.5", + "mime": "^2.5.2" } }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/electron-rebuild": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/electron-rebuild/-/electron-rebuild-3.2.9.tgz", + "integrity": "sha512-FkEZNFViUem3P0RLYbZkUjC8LUFIK+wKq09GHoOITSJjfDAVQv964hwaNseTTWt58sITQX3/5fHNYcTefqaCWw==", + "deprecated": "Please use @electron/rebuild moving forward. There is no API change, just a package name change", "dev": true, "dependencies": { - "is-glob": "^4.0.1" + "@malept/cross-spawn-promise": "^2.0.0", + "chalk": "^4.0.0", + "debug": "^4.1.1", + "detect-libc": "^2.0.1", + "fs-extra": "^10.0.0", + "got": "^11.7.0", + "lzma-native": "^8.0.5", + "node-abi": "^3.0.0", + "node-api-version": "^0.1.4", + "node-gyp": "^9.0.0", + "ora": "^5.1.0", + "semver": "^7.3.5", + "tar": "^6.0.5", + "yargs": "^17.0.1" + }, + "bin": { + "electron-rebuild": "lib/src/cli.js" }, "engines": { - "node": ">= 6" + "node": ">=12.13.0" } }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "engines": { - "node": ">=10" + "node_modules/electron-squirrel-startup": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/electron-squirrel-startup/-/electron-squirrel-startup-1.0.0.tgz", + "integrity": "sha512-Oce8mvgGdFmwr+DsAcXBmFK8jFfN6yaFAP9IvyhTfupM3nFkBku/7VS/mdtJteWumImkC6P+BKGsxScoDDkv9Q==", + "dependencies": { + "debug": "^2.2.0" } }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "engines": { - "node": ">=6.0" + "node_modules/electron-squirrel-startup/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" } }, - "node_modules/chromium-pickle-js": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz", - "integrity": "sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==", - "dev": true + "node_modules/electron-squirrel-startup/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "node_modules/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "node_modules/electron-to-chromium": { + "version": "1.4.325", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.325.tgz", + "integrity": "sha512-K1C03NT4I7BuzsRdCU5RWkgZxtswnKDYM6/eMhkEXqKu4e5T+ck610x3FPzu1y7HVFSiQKZqP16gnJzPpji1TQ==" + }, + "node_modules/electron-winstaller": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/electron-winstaller/-/electron-winstaller-5.1.0.tgz", + "integrity": "sha512-4wlZzkUm5cJNiOtp5wL804+QpygdKTKkrZJXA3sSDEI2XnCVPv0kxmxUvVw4KHBwbNS+Yox89agEr+VkR7kxww==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], + "hasInstallScript": true, + "optional": true, + "dependencies": { + "@electron/asar": "^3.2.1", + "debug": "^4.1.1", + "fs-extra": "^7.0.1", + "lodash.template": "^4.2.2", + "temp": "^0.9.0" + }, "engines": { - "node": ">=8" + "node": ">=8.0.0" } }, - "node_modules/cjs-module-lexer": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", - "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", - "dev": true - }, - "node_modules/classnames": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", - "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" - }, - "node_modules/clean-css": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.2.tgz", - "integrity": "sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==", + "node_modules/electron-winstaller/node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", "dev": true, + "optional": true, "dependencies": { - "source-map": "~0.6.0" + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" }, "engines": { - "node": ">= 10.0" + "node": ">=6 <7 || >=8" } }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "devOptional": true, - "engines": { - "node": ">=6" + "node_modules/electron-winstaller/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "optional": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/cli-color": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/cli-color/-/cli-color-2.0.3.tgz", - "integrity": "sha512-OkoZnxyC4ERN3zLzZaY9Emb7f/MhBOIpePv0Ycok0fJYT+Ouo00UBEIwsVsr0yoow++n5YWlSUgST9GKhNHiRQ==", - "dependencies": { - "d": "^1.0.1", - "es5-ext": "^0.10.61", - "es6-iterator": "^2.0.3", - "memoizee": "^0.4.15", - "timers-ext": "^0.1.7" - }, + "node_modules/electron-winstaller/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "optional": true, "engines": { - "node": ">=0.10" + "node": ">= 4.0.0" } }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", "dev": true, - "dependencies": { - "restore-cursor": "^3.1.0" + "engines": { + "node": ">=12" }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "engines": { - "node": ">=8" + "node": ">= 4" } }, - "node_modules/cli-spinners": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz", - "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==", + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "dev": true, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.8" } }, - "node_modules/cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", - "dev": true, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "optional": true, "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "iconv-lite": "^0.6.2" } }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dev": true, + "node_modules/encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "optional": true, "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { - "node": ">=12" + "node": ">=0.10.0" } }, - "node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true, - "engines": { - "node": ">=0.8" + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" } }, - "node_modules/clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", - "dev": true, + "node_modules/enhanced-resolve": { + "version": "5.12.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", + "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" }, "engines": { - "node": ">=6" + "node": ">=10.13.0" } }, - "node_modules/clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", - "dependencies": { - "mimic-response": "^1.0.0" + "node_modules/entities": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", + "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", + "dev": true, + "engines": { + "node": ">=0.12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/clsx": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", "engines": { "node": ">=6" } }, - "node_modules/co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "dev": true, - "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" - } + "node_modules/err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "devOptional": true }, - "node_modules/coa": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", - "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", - "dev": true, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dependencies": { - "@types/q": "^1.5.1", - "chalk": "^2.4.1", - "q": "^1.1.2" - }, - "engines": { - "node": ">= 4.0" + "is-arrayish": "^0.2.1" } }, - "node_modules/coa/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", "dev": true, "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" + "stackframe": "^1.3.4" } }, - "node_modules/coa/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/es-abstract": { + "version": "1.21.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz", + "integrity": "sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==", "dev": true, "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.3", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.4", + "is-array-buffer": "^3.0.1", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.2", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "safe-regex-test": "^1.0.0", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" }, "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/coa/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "dev": true + }, + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", "dev": true, "dependencies": { - "color-name": "1.1.3" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/coa/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true + "node_modules/es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" }, - "node_modules/coa/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, "engines": { - "node": ">=0.8.0" + "node": ">= 0.4" } }, - "node_modules/coa/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", "dev": true, - "engines": { - "node": ">=4" + "dependencies": { + "has": "^1.0.3" } }, - "node_modules/coa/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, "dependencies": { - "has-flag": "^3.0.0" + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" }, "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", - "dev": true - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/es5-ext": { + "version": "0.10.62", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", + "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "hasInstallScript": true, "dependencies": { - "color-name": "~1.1.4" + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "next-tick": "^1.1.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10" } }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "node_modules/es6-error": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", + "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", + "optional": true }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "bin": { - "color-support": "bin.js" + "node_modules/es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "dependencies": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" } }, - "node_modules/colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true + "node_modules/es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "dependencies": { + "d": "^1.0.1", + "ext": "^1.1.2" + } }, - "node_modules/colorette": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", - "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", - "dev": true + "node_modules/es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "dependencies": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" + } }, - "node_modules/colors": { + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==", - "dev": true, + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "engines": { - "node": ">=0.1.90" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", "dev": true, "dependencies": { - "delayed-stream": "~1.0.0" + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" }, "engines": { - "node": ">= 0.8" + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" } }, - "node_modules/commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "node_modules/escodegen/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { - "node": ">= 6" + "node": ">=4.0" } }, - "node_modules/common-path-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", - "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", - "dev": true + "node_modules/eslint": { + "version": "8.35.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.35.0.tgz", + "integrity": "sha512-BxAf1fVL7w+JLRQhWl2pzGeSiGqbWumV4WNvc9Rhp6tiCtm4oHnyPBSEtMGZwrQgudFQ+otqzWoPB7x+hxoWsw==", + "dev": true, + "dependencies": { + "@eslint/eslintrc": "^2.0.0", + "@eslint/js": "8.35.0", + "@humanwhocodes/config-array": "^0.11.8", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.1", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.4.0", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "regexpp": "^3.2.0", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } }, - "node_modules/common-tags": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", - "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "node_modules/eslint-config-react-app": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", + "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", "dev": true, + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + }, "engines": { - "node": ">=4.0.0" + "node": ">=14.0.0" + }, + "peerDependencies": { + "eslint": "^8.0.0" } }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", - "dev": true + "node_modules/eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" + } }, - "node_modules/compare-version": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz", - "integrity": "sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==", + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "ms": "^2.1.1" } }, - "node_modules/compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "node_modules/eslint-module-utils": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", + "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", "dev": true, "dependencies": { - "mime-db": ">= 1.43.0 < 2" + "debug": "^3.2.7" }, "engines": { - "node": ">= 0.6" + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } } }, - "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" + "ms": "^2.1.1" } }, - "node_modules/compression/node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "node_modules/eslint-plugin-css-import-order": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-css-import-order/-/eslint-plugin-css-import-order-1.1.0.tgz", + "integrity": "sha512-43ODxP1sXpmgI4c+NCtXqmhkLsYGe8El1ewOlvsXKchLjWLxJw5zfp4eEg31Eni+is3jGkBL2TrNyUOOnbOMDg==", "dev": true, - "engines": { - "node": ">= 0.8" + "peerDependencies": { + "eslint": ">= 6.0.0 < 9.0.0" } }, - "node_modules/compression/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/eslint-plugin-flowtype": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", + "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", "dev": true, "dependencies": { - "ms": "2.0.0" + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@babel/plugin-syntax-flow": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.9", + "eslint": "^8.1.0" } }, - "node_modules/compression/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/compression/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "node_modules/config-chain": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", - "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "node_modules/eslint-plugin-import": { + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "dev": true, "dependencies": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", + "has": "^1.0.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.6", + "resolve": "^1.22.1", + "semver": "^6.3.0", + "tsconfig-paths": "^3.14.1" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, - "node_modules/confusing-browser-globals": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", - "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", - "dev": true + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } }, - "node_modules/connect-history-api-fallback": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", - "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, "engines": { - "node": ">=0.8" + "node": ">=0.10.0" } }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "node_modules/eslint-plugin-jest": { + "version": "25.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", + "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", "dev": true, "dependencies": { - "safe-buffer": "5.2.1" + "@typescript-eslint/experimental-utils": "^5.0.0" }, "engines": { - "node": ">= 0.6" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } } }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", "dev": true, + "dependencies": { + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" + }, "engines": { - "node": ">= 0.6" + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - }, - "node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "engines": { - "node": ">= 0.6" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "dev": true - }, - "node_modules/copy-webpack-plugin": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", - "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", + "node_modules/eslint-plugin-react": { + "version": "7.32.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", + "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", "dev": true, "dependencies": { - "fast-glob": "^3.2.11", - "glob-parent": "^6.0.1", - "globby": "^13.1.1", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0" + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.8" }, "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">=4" }, "peerDependencies": { - "webpack": "^5.1.0" + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "node_modules/copy-webpack-plugin/node_modules/globby": { - "version": "13.1.3", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz", - "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==", + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", "dev": true, - "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" - }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=10" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" } }, - "node_modules/copy-webpack-plugin/node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, - "engines": { - "node": ">=12" + "dependencies": { + "esutils": "^2.0.2" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/core-js": { - "version": "3.29.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.29.0.tgz", - "integrity": "sha512-VG23vuEisJNkGl6XQmFJd3rEG/so/CNatqeE+7uZAwTSwFeB/qaO0be8xZYUNWprJ/GIwL8aMt9cj1kvbpTZhg==", + "node_modules/eslint-plugin-react/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, - "hasInstallScript": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "engines": { + "node": ">=4.0" } }, - "node_modules/core-js-compat": { - "version": "3.29.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.29.0.tgz", - "integrity": "sha512-ScMn3uZNAFhK2DGoEfErguoiAHhV2Ju+oJo/jK08p7B3f3UhocUrCCkTvnZaiS+edl5nlIoiBXKcwMc6elv4KQ==", + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", "dev": true, "dependencies": { - "browserslist": "^4.21.5" + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/core-js-pure": { - "version": "3.29.0", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.29.0.tgz", - "integrity": "sha512-v94gUjN5UTe1n0yN/opTihJ8QBWD2O8i19RfTZR7foONPWArnjB96QA/wk5ozu1mm6ja3udQCzOzwQXTxi3xOQ==", + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "hasInstallScript": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", - "dev": true - }, - "node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "node_modules/eslint-plugin-testing-library": { + "version": "5.10.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.10.2.tgz", + "integrity": "sha512-f1DmDWcz5SDM+IpCkEX0lbFqrrTs8HRsEElzDEqN/EBI0hpRj8Cns5+IVANXswE8/LeybIJqPAOQIFu2j5Y5sw==", + "dev": true, "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" + "@typescript-eslint/utils": "^5.43.0" }, "engines": { - "node": ">=10" - } - }, - "node_modules/crc": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", - "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", - "dev": true, - "optional": true, - "dependencies": { - "buffer": "^5.1.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^7.5.0 || ^8.0.0" } }, - "node_modules/cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dependencies": { - "node-fetch": "2.6.7" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "node_modules/cross-fetch/node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, "dependencies": { - "whatwg-url": "^5.0.0" + "eslint-visitor-keys": "^2.0.0" }, "engines": { - "node": "4.x || >=6.0.0" + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" }, - "peerDependencies": { - "encoding": "^0.1.0" + "funding": { + "url": "https://github.com/sponsors/mysticatea" }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "peerDependencies": { + "eslint": ">=5" } }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", "dev": true, "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" }, "engines": { - "node": ">= 8" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0", + "webpack": "^5.0.0" } }, - "node_modules/cross-spawn-windows-exe": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/cross-spawn-windows-exe/-/cross-spawn-windows-exe-1.2.0.tgz", - "integrity": "sha512-mkLtJJcYbDCxEG7Js6eUnUNndWjyUZwJ3H7bErmmtOYU/Zb99DyUkpamuIZE0b3bhmJyZ7D90uS6f+CGxRRjOw==", + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/malept" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/subscription/pkg/npm-cross-spawn-windows-exe?utm_medium=referral&utm_source=npm_fund" - } - ], "dependencies": { - "@malept/cross-spawn-promise": "^1.1.0", - "is-wsl": "^2.2.0", - "which": "^2.0.2" + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": ">= 10" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/cross-spawn-windows-exe/node_modules/@malept/cross-spawn-promise": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", - "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/malept" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" - } - ], + "node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, "dependencies": { - "cross-spawn": "^7.0.1" + "has-flag": "^4.0.0" }, "engines": { - "node": ">= 10" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/cross-zip": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cross-zip/-/cross-zip-4.0.0.tgz", - "integrity": "sha512-MEzGfZo0rqE10O/B+AEcCSJLZsrWuRUvmqJTqHNqBtALhaJc3E3ixLGLJNTRzEA2K34wbmOHC4fwYs9sVsdcCA==", + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, "engines": { - "node": ">=12.10" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/crypto-random-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "node_modules/eslint/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "engines": { - "node": ">=8" + "node": ">=4.0" } }, - "node_modules/css-blank-pseudo": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", - "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "node_modules/eslint/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.9" - }, - "bin": { - "css-blank-pseudo": "dist/cli.cjs" + "type-fest": "^0.20.2" }, "engines": { - "node": "^12 || ^14 || >=16" + "node": ">=8" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/css-color-keywords": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", - "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==", + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/css-declaration-sorter": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz", - "integrity": "sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==", + "node_modules/espree": { + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", + "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", "dev": true, + "dependencies": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.3.0" + }, "engines": { - "node": "^10 || ^12 || >=14" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, - "peerDependencies": { - "postcss": "^8.0.9" + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/css-has-pseudo": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", - "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.9" - }, "bin": { - "css-has-pseudo": "dist/cli.cjs" + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" }, "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=4" } }, - "node_modules/css-loader": { - "version": "6.7.3", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz", - "integrity": "sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==", + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "dev": true, "dependencies": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.19", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.3.8" + "estraverse": "^5.1.0" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" + "node": ">=0.10" } }, - "node_modules/css-minimizer-webpack-plugin": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", - "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "node_modules/esquery/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dependencies": { - "cssnano": "^5.0.6", - "jest-worker": "^27.0.2", - "postcss": "^8.3.5", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0", - "source-map": "^0.6.1" + "estraverse": "^5.2.0" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "@parcel/css": { - "optional": true - }, - "clean-css": { - "optional": true - }, - "csso": { - "optional": true - }, - "esbuild": { - "optional": true - } + "node": ">=4.0" } }, - "node_modules/css-prefers-color-scheme": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", - "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", + "dev": true + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/event-emitter": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", + "dependencies": { + "d": "1", + "es5-ext": "~0.10.14" + } + }, + "node_modules/eventemitter3": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.0.tgz", + "integrity": "sha512-riuVbElZZNXLeLEoprfNYoDSwTBRR44X3mnhdI1YcnENpWTCsTTVZ2zFuqQcpoyqPQIUXdiPEU0ECAq0KQRaHg==" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, - "bin": { - "css-prefers-color-scheme": "dist/cli.cjs" + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": "^12 || ^14 || >=16" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "node_modules/execa/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" + "engines": { + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/fb55" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/css-select-base-adapter": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", - "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", - "dev": true - }, - "node_modules/css-to-react-native": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz", - "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==", - "dependencies": { - "camelize": "^1.0.0", - "css-color-keywords": "^1.0.0", - "postcss-value-parser": "^4.0.2" + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "node_modules/expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", "dev": true, "dependencies": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" + "homedir-polyfill": "^1.0.1" }, "engines": { - "node": ">=8.0.0" + "node": ">=0.10.0" } }, - "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "node_modules/expect": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.6.1.tgz", + "integrity": "sha512-XEdDLonERCU1n9uR56/Stx9OqojaLAQtZf9PrCHH9Hl8YXiEIka3H4NXJ3NOIBmQJTg7+j7buh34PMHfJujc8g==", "dev": true, - "engines": { - "node": ">= 6" + "dependencies": { + "@jest/expect-utils": "^29.6.1", + "@types/node": "*", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.6.1", + "jest-message-util": "^29.6.1", + "jest-util": "^29.6.1" }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/cssdb": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.4.1.tgz", - "integrity": "sha512-0Q8NOMpXJ3iTDDbUv9grcmQAfdDx4qz+fN/+Md2FGbevT+6+bJNQ2LjB2YIUlLbpBTM32idU1Sb+tb/uGt6/XQ==", + "node_modules/expect/node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "node_modules/expect/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", "dev": true, - "bin": { - "cssesc": "bin/cssesc" + "dependencies": { + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">=4" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/cssnano": { - "version": "5.1.15", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", - "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", + "node_modules/express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "dev": true, "dependencies": { - "cssnano-preset-default": "^5.2.14", - "lilconfig": "^2.0.3", - "yaml": "^1.10.2" + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/cssnano" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">= 0.10.0" } }, - "node_modules/cssnano-preset-default": { - "version": "5.2.14", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", - "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "node_modules/express-ws": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/express-ws/-/express-ws-5.0.2.tgz", + "integrity": "sha512-0uvmuk61O9HXgLhGl3QhNSEtRsQevtmbL94/eILaliEADZBHZOQUAiHFrGPrgsjikohyrmSG5g+sCfASTt0lkQ==", "dev": true, "dependencies": { - "css-declaration-sorter": "^6.3.1", - "cssnano-utils": "^3.1.0", - "postcss-calc": "^8.2.3", - "postcss-colormin": "^5.3.1", - "postcss-convert-values": "^5.1.3", - "postcss-discard-comments": "^5.1.2", - "postcss-discard-duplicates": "^5.1.0", - "postcss-discard-empty": "^5.1.1", - "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.7", - "postcss-merge-rules": "^5.1.4", - "postcss-minify-font-values": "^5.1.0", - "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.4", - "postcss-minify-selectors": "^5.2.1", - "postcss-normalize-charset": "^5.1.0", - "postcss-normalize-display-values": "^5.1.0", - "postcss-normalize-positions": "^5.1.1", - "postcss-normalize-repeat-style": "^5.1.1", - "postcss-normalize-string": "^5.1.0", - "postcss-normalize-timing-functions": "^5.1.0", - "postcss-normalize-unicode": "^5.1.1", - "postcss-normalize-url": "^5.1.0", - "postcss-normalize-whitespace": "^5.1.1", - "postcss-ordered-values": "^5.1.3", - "postcss-reduce-initial": "^5.1.2", - "postcss-reduce-transforms": "^5.1.0", - "postcss-svgo": "^5.1.0", - "postcss-unique-selectors": "^5.1.1" + "ws": "^7.4.6" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=4.5.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "express": "^4.0.0 || ^5.0.0-alpha.1" } }, - "node_modules/cssnano-utils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", - "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "dependencies": { + "type": "^2.7.2" + } + }, + "node_modules/ext/node_modules/type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" + }, + "node_modules/extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">= 10.17.0" }, - "peerDependencies": { - "postcss": "^8.2.15" + "optionalDependencies": { + "@types/yauzl": "^2.9.1" } }, - "node_modules/csso": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", - "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "node_modules/extsprintf": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz", + "integrity": "sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==", + "dev": true, + "engines": [ + "node >=0.6.0" + ], + "optional": true + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-glob": { + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", "dev": true, "dependencies": { - "css-tree": "^1.1.2" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, "engines": { - "node": ">=8.0.0" + "node": ">=8.6.0" } }, - "node_modules/cssom": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", - "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", - "dev": true - }, - "node_modules/cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { - "cssom": "~0.3.6" + "is-glob": "^4.0.1" }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" }, - "node_modules/csstype": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", - "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==" + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true }, - "node_modules/d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, "dependencies": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" + "reusify": "^1.0.4" } }, - "node_modules/d3": { - "version": "5.16.0", - "resolved": "https://registry.npmjs.org/d3/-/d3-5.16.0.tgz", - "integrity": "sha512-4PL5hHaHwX4m7Zr1UapXW23apo6pexCgdetdJ5kTmADpG/7T9Gkxw0M0tf/pjoB63ezCCm0u5UaFYy2aMt0Mcw==", + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, "dependencies": { - "d3-array": "1", - "d3-axis": "1", - "d3-brush": "1", - "d3-chord": "1", - "d3-collection": "1", - "d3-color": "1", - "d3-contour": "1", - "d3-dispatch": "1", - "d3-drag": "1", - "d3-dsv": "1", - "d3-ease": "1", - "d3-fetch": "1", - "d3-force": "1", - "d3-format": "1", - "d3-geo": "1", - "d3-hierarchy": "1", - "d3-interpolate": "1", - "d3-path": "1", - "d3-polygon": "1", - "d3-quadtree": "1", - "d3-random": "1", - "d3-scale": "2", - "d3-scale-chromatic": "1", - "d3-selection": "1", - "d3-shape": "1", - "d3-time": "1", - "d3-time-format": "2", - "d3-timer": "1", - "d3-transition": "1", - "d3-voronoi": "1", - "d3-zoom": "1" + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" } }, - "node_modules/d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - }, - "node_modules/d3-axis": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-1.0.12.tgz", - "integrity": "sha512-ejINPfPSNdGFKEOAtnBtdkpr24c4d4jsei6Lg98mxf424ivoDP2956/5HDpIAtmHo85lqT4pruy+zEgvRUBqaQ==" - }, - "node_modules/d3-brush": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-1.1.6.tgz", - "integrity": "sha512-7RW+w7HfMCPyZLifTz/UnJmI5kdkXtpCbombUSs8xniAyo0vIbrDzDwUJB6eJOgl9u5DQOt2TQlYumxzD1SvYA==", + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, "dependencies": { - "d3-dispatch": "1", - "d3-drag": "1", - "d3-interpolate": "1", - "d3-selection": "1", - "d3-transition": "1" + "bser": "2.1.1" } }, - "node_modules/d3-chord": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-1.0.6.tgz", - "integrity": "sha512-JXA2Dro1Fxw9rJe33Uv+Ckr5IrAa74TlfDEhE/jfLOaXegMQFQTAgAw9WnZL8+HxVBRXaRGCkrNU7pJeylRIuA==", + "node_modules/fbemitter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", + "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", "dependencies": { - "d3-array": "1", - "d3-path": "1" + "fbjs": "^3.0.0" } }, - "node_modules/d3-collection": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz", - "integrity": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==" + "node_modules/fbjs": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.4.tgz", + "integrity": "sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==", + "dependencies": { + "cross-fetch": "^3.1.5", + "fbjs-css-vars": "^1.0.0", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^0.7.30" + } }, - "node_modules/d3-color": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-1.4.1.tgz", - "integrity": "sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==" + "node_modules/fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" }, - "node_modules/d3-contour": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-1.3.2.tgz", - "integrity": "sha512-hoPp4K/rJCu0ladiH6zmJUEz6+u3lgR+GSm/QdM2BBvDraU39Vr7YdDCicJcxP1z8i9B/2dJLgDC1NcvlF8WCg==", + "node_modules/fbjs/node_modules/promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", "dependencies": { - "d3-array": "^1.1.1" + "asap": "~2.0.3" } }, - "node_modules/d3-dispatch": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.6.tgz", - "integrity": "sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA==" - }, - "node_modules/d3-drag": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-1.2.5.tgz", - "integrity": "sha512-rD1ohlkKQwMZYkQlYVCrSFxsWPzI97+W+PaEIBNTMxRuxz9RF0Hi5nJWHGVJ3Om9d2fRTe1yOBINJyy/ahV95w==", + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", "dependencies": { - "d3-dispatch": "1", - "d3-selection": "1" + "pend": "~1.2.0" } }, - "node_modules/d3-dsv": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.2.0.tgz", - "integrity": "sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g==", + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, "dependencies": { - "commander": "2", - "iconv-lite": "0.4", - "rw": "1" + "flat-cache": "^3.0.4" }, - "bin": { - "csv2json": "bin/dsv2json", - "csv2tsv": "bin/dsv2dsv", - "dsv2dsv": "bin/dsv2dsv", - "dsv2json": "bin/dsv2json", - "json2csv": "bin/json2dsv", - "json2dsv": "bin/json2dsv", - "json2tsv": "bin/json2dsv", - "tsv2csv": "bin/dsv2dsv", - "tsv2json": "bin/dsv2json" + "engines": { + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/d3-dsv/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "node_modules/d3-ease": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-1.0.7.tgz", - "integrity": "sha512-lx14ZPYkhNx0s/2HX5sLFUI3mbasHjSSpwO/KaaNACweVwxUruKyWVcb293wMv1RqTPZyZ8kSZ2NogUZNcLOFQ==" + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } }, - "node_modules/d3-fetch": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-1.2.0.tgz", - "integrity": "sha512-yC78NBVcd2zFAyR/HnUiBS7Lf6inSCoWcSxFfw8FYL7ydiqe80SazNwoffcqOfs95XaLo7yebsmQqDKSsXUtvA==", + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "dependencies": { - "d3-dsv": "1" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/d3-force": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-1.2.1.tgz", - "integrity": "sha512-HHvehyaiUlVo5CxBJ0yF/xny4xoaxFxDnBXNvNcfW9adORGZfyNF1dj6DGLKyk4Yh3brP/1h3rnDzdIAwL08zg==", + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "dev": true, "dependencies": { - "d3-collection": "1", - "d3-dispatch": "1", - "d3-quadtree": "1", - "d3-timer": "1" + "minimatch": "^5.0.1" } }, - "node_modules/d3-format": { - "version": "1.4.5", - "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-1.4.5.tgz", - "integrity": "sha512-J0piedu6Z8iB6TbIGfZgDzfXxUFN3qQRMofy2oPdXzQibYGqPB/9iMcxr/TGalU+2RsyDO+U4f33id8tbnSRMQ==" - }, - "node_modules/d3-geo": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-1.12.1.tgz", - "integrity": "sha512-XG4d1c/UJSEX9NfU02KwBL6BYPj8YKHxgBEw5om2ZnTRSbIcego6dhHwcxuSR3clxh0EpE38os1DVPOmnYtTPg==", + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, "dependencies": { - "d3-array": "1" + "balanced-match": "^1.0.0" } }, - "node_modules/d3-hierarchy": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-1.1.9.tgz", - "integrity": "sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ==" - }, - "node_modules/d3-interpolate": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.4.0.tgz", - "integrity": "sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==", + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, "dependencies": { - "d3-color": "1" + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" } }, - "node_modules/d3-path": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.9.tgz", - "integrity": "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==" - }, - "node_modules/d3-polygon": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-1.0.6.tgz", - "integrity": "sha512-k+RF7WvI08PC8reEoXa/w2nSg5AUMTi+peBD9cmFc+0ixHfbs4QmxxkarVal1IkVkgxVuk9JSHhJURHiyHKAuQ==" + "node_modules/filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", + "dev": true, + "engines": { + "node": ">=4" + } }, - "node_modules/d3-quadtree": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-1.0.7.tgz", - "integrity": "sha512-RKPAeXnkC59IDGD0Wu5mANy0Q2V28L+fNe65pOCXVdVuTJS3WPKaJlFHer32Rbh9gIo9qMuJXio8ra4+YmIymA==" + "node_modules/filenamify": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.3.0.tgz", + "integrity": "sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==", + "dev": true, + "dependencies": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.1", + "trim-repeated": "^1.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/d3-random": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-1.1.2.tgz", - "integrity": "sha512-6AK5BNpIFqP+cx/sreKzNjWbwZQCSUatxq+pPRmFIQaWuoD+NrbVWw7YWpHiXpCQ/NanKdtGDuB+VQcZDaEmYQ==" + "node_modules/filesize": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", + "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } }, - "node_modules/d3-scale": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz", - "integrity": "sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==", + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, "dependencies": { - "d3-array": "^1.2.0", - "d3-collection": "1", - "d3-format": "1", - "d3-interpolate": "1", - "d3-time": "1", - "d3-time-format": "2" + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/d3-scale-chromatic": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-1.5.0.tgz", - "integrity": "sha512-ACcL46DYImpRFMBcpk9HhtIyC7bTBR4fNOPxwVSl0LfulDAwyiHyPOTqcDG1+t5d4P9W7t/2NAuWu59aKko/cg==", + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, "dependencies": { - "d3-color": "1", - "d3-interpolate": "1" + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, - "node_modules/d3-selection": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-1.4.2.tgz", - "integrity": "sha512-SJ0BqYihzOjDnnlfyeHT0e30k0K1+5sR3d5fNueCNeuhZTnGw4M4o8mqJchSwgKMXCNFo+e2VTChiSJ0vYtXkg==" - }, - "node_modules/d3-shape": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.7.tgz", - "integrity": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==", + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { - "d3-path": "1" + "ms": "2.0.0" } }, - "node_modules/d3-time": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-1.1.0.tgz", - "integrity": "sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==" + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, - "node_modules/d3-time-format": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.3.0.tgz", - "integrity": "sha512-guv6b2H37s2Uq/GefleCDtbe0XZAuy7Wa49VGkPVPMfLL9qObgBST3lEHJBMUp8S7NdLQAGIvr2KXk8Hc98iKQ==", + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, "dependencies": { - "d3-time": "1" + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" } }, - "node_modules/d3-timer": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.10.tgz", - "integrity": "sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw==" + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" }, - "node_modules/d3-transition": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-1.3.2.tgz", - "integrity": "sha512-sc0gRU4PFqZ47lPVHloMn9tlPcv8jxgOQg+0zjhfZXMQuvppjG6YuwdMBE0TuqCZjeJkLecku/l9R0JPcRhaDA==", + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, "dependencies": { - "d3-color": "1", - "d3-dispatch": "1", - "d3-ease": "1", - "d3-interpolate": "1", - "d3-selection": "^1.1.0", - "d3-timer": "1" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/d3-voronoi": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.4.tgz", - "integrity": "sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg==" - }, - "node_modules/d3-zoom": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-1.8.3.tgz", - "integrity": "sha512-VoLXTK4wvy1a0JpH2Il+F2CiOhVu7VRXWF5M/LroMIh3/zBAC3WAt7QoIvPibOavVo20hN6/37vwAsdBejLyKQ==", + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, "dependencies": { - "d3-dispatch": "1", - "d3-drag": "1", - "d3-interpolate": "1", - "d3-selection": "1", - "d3-transition": "1" + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", "dev": true }, - "node_modules/data-urls": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", - "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "node_modules/flora-colossus": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/flora-colossus/-/flora-colossus-1.0.1.tgz", + "integrity": "sha512-d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA==", "dev": true, "dependencies": { - "abab": "^2.0.3", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.0.0" + "debug": "^4.1.1", + "fs-extra": "^7.0.0" }, "engines": { - "node": ">=10" + "node": ">= 6.0.0" } }, - "node_modules/data-urls/node_modules/tr46": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", - "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "node_modules/flora-colossus/node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", "dev": true, "dependencies": { - "punycode": "^2.1.1" + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" }, "engines": { - "node": ">=8" + "node": ">=6 <7 || >=8" } }, - "node_modules/data-urls/node_modules/whatwg-url": { - "version": "8.7.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", - "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "node_modules/flora-colossus/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", "dev": true, - "dependencies": { - "lodash": "^4.7.0", - "tr46": "^2.1.0", - "webidl-conversions": "^6.1.0" + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/flora-colossus/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/font-awesome": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz", + "integrity": "sha512-U6kGnykA/6bFmg1M/oT9EkFeIYv7JlX3bozwQJWiiLz6L0w3F5vBVPxHlwyX/vtNq1ckcpRKOB9f2Qal/VtFpg==", "engines": { - "node": ">=10" + "node": ">=0.10.3" } }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dependencies": { - "ms": "2.1.2" + "is-callable": "^1.1.3" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.3.0.tgz", + "integrity": "sha512-IN+XTzusCjR5VgntYFgxbxVx3WraPRnKehBFrf00cMSrtUuW9MsG9dhL6MWpY6MkjC3wVwoujfCDgZZCQwbswA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.7", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cosmiconfig": "^7.0.1", + "deepmerge": "^4.2.2", + "fs-extra": "^10.0.0", + "memfs": "^3.4.1", + "minimatch": "^3.0.4", + "node-abort-controller": "^3.0.1", + "schema-utils": "^3.1.1", + "semver": "^7.3.5", + "tapable": "^2.2.1" }, "engines": { - "node": ">=6.0" + "node": ">=12.13.0", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "typescript": ">3.6.0", + "vue-template-compiler": "*", + "webpack": "^5.11.0" }, "peerDependenciesMeta": { - "supports-color": { + "vue-template-compiler": { "optional": true } } }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "dev": true, - "optional": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/decimal.js": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", - "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", - "dev": true - }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, "dependencies": { - "mimic-response": "^3.1.0" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" }, "engines": { - "node": ">=10" + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "dev": true, + "engines": { + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "patreon", + "url": "https://www.patreon.com/infusion" } }, - "node_modules/decompress-response/node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, "engines": { - "node": ">=10" + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=12" } }, - "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", "dev": true }, - "node_modules/deep-equal": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", - "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "es-get-iterator": "^1.1.2", - "get-intrinsic": "^1.1.3", - "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.1", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "isarray": "^2.0.5", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/deepmerge": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", - "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==", + "node_modules/galactus": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/galactus/-/galactus-0.2.1.tgz", + "integrity": "sha512-mDc8EQJKtxjp9PMYS3PbpjjbX3oXhBTxoGaPahw620XZBIHJ4+nvw5KN/tRtmmSDR9dypstGNvqQ3C29QGoGHQ==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "debug": "^3.1.0", + "flora-colossus": "^1.0.0", + "fs-extra": "^4.0.0" } }, - "node_modules/default-gateway": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", - "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "node_modules/galactus/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "dependencies": { - "execa": "^5.0.0" - }, - "engines": { - "node": ">= 10" + "ms": "^2.1.1" } }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "node_modules/galactus/node_modules/fs-extra": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", + "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", "dev": true, "dependencies": { - "clone": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" } }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", - "engines": { - "node": ">=10" + "node_modules/galactus/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "node_modules/galactus/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 4.0.0" } }, - "node_modules/define-properties": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", - "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "node_modules/gar": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/gar/-/gar-1.0.4.tgz", + "integrity": "sha512-w4n9cPWyP7aHxKxYHFQMegj7WIAsL/YX/C4Bs5Rr8s1H9M1rNtRWRsw+ovYMkXDQ5S4ZbYHsHAPmevPjPgw44w==", + "dev": true, + "optional": true + }, + "node_modules/gauge": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", + "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", "devOptional": true, "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/defined": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz", - "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==", + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "engines": { - "node": ">=0.4.0" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "devOptional": true, - "engines": { - "node": ">= 0.8" + "node_modules/get-folder-size": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/get-folder-size/-/get-folder-size-2.0.1.tgz", + "integrity": "sha512-+CEb+GDCM7tkOS2wdMKTn9vU7DgnKUTuDlehkNJKNSovdCOVxs14OfKCk4cvSaR3za4gj+OBdl9opPN9xrJ0zA==", + "dev": true, + "optional": true, + "dependencies": { + "gar": "^1.0.4", + "tiny-each-async": "2.0.3" + }, + "bin": { + "get-folder-size": "bin/get-folder-size" } }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "engines": { - "node": ">=6" + "node_modules/get-installed-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/get-installed-path/-/get-installed-path-2.1.1.tgz", + "integrity": "sha512-Qkn9eq6tW5/q9BDVdMpB8tOHljX9OSP0jRC5TRNVA4qRc839t4g8KQaR8t0Uv0EFVL0MlyG7m/ofjEgAROtYsA==", + "dev": true, + "dependencies": { + "global-modules": "1.0.0" } }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "node_modules/get-installed-path/node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", "dev": true, + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": ">=0.10.0" } }, - "node_modules/detect-libc": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", - "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", + "node_modules/get-installed-path/node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "node_modules/get-installed-path/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", + "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/detect-node": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", - "devOptional": true + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", + "dev": true }, - "node_modules/detect-port-alt": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", - "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "node_modules/get-package-info": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-package-info/-/get-package-info-1.0.0.tgz", + "integrity": "sha512-SCbprXGAPdIhKAXiG+Mk6yeoFH61JlYunqdFQFHDtLjJlDjFf6x07dsS8acO+xWt52jpdVo49AlVDnUVK1sDNw==", "dev": true, "dependencies": { - "address": "^1.0.1", - "debug": "^2.6.0" - }, - "bin": { - "detect": "bin/detect-port", - "detect-port": "bin/detect-port" + "bluebird": "^3.1.1", + "debug": "^2.2.0", + "lodash.get": "^4.0.0", + "read-pkg-up": "^2.0.0" }, "engines": { - "node": ">= 4.2.1" + "node": ">= 4.0" } }, - "node_modules/detect-port-alt/node_modules/debug": { + "node_modules/get-package-info/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", @@ -9519,1255 +13467,1260 @@ "ms": "2.0.0" } }, - "node_modules/detect-port-alt/node_modules/ms": { + "node_modules/get-package-info/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/detective": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", - "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true, - "dependencies": { - "acorn-node": "^1.8.2", - "defined": "^1.0.0", - "minimist": "^1.2.6" - }, - "bin": { - "detective": "bin/detective.js" - }, "engines": { - "node": ">=0.8.0" + "node": ">=8.0.0" } }, - "node_modules/didyoumean": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", - "dev": true - }, - "node_modules/diff-match-patch": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz", - "integrity": "sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==" - }, - "node_modules/diff-sequences": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", - "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", - "dev": true, + "node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dependencies": { + "pump": "^3.0.0" + }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/dir-compare": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-2.4.0.tgz", - "integrity": "sha512-l9hmu8x/rjVC9Z2zmGzkhOEowZvW7pmYws5CWHutg8u1JgvsKWMx7Q/UODeu4djLZ4FgW5besw5yvMQnBHzuCA==", + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", "dev": true, "dependencies": { - "buffer-equal": "1.0.0", - "colors": "1.0.3", - "commander": "2.9.0", - "minimatch": "3.0.4" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" }, - "bin": { - "dircompare": "src/cli/dircompare.js" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/dir-compare/node_modules/commander": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", - "integrity": "sha512-bmkUukX8wAOjHdN26xj5c4ctEV22TQ7dQYhSmuckKhToXrkUn0iIaolHdIxYYqD55nhpSPA9zPQ1yP57GdXP2A==", - "dev": true, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dependencies": { - "graceful-readlink": ">= 1.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">= 0.6.x" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/dir-compare/node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "is-glob": "^4.0.3" }, "engines": { - "node": "*" + "node": ">=10.13.0" } }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/global-agent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz", + "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==", + "optional": true, "dependencies": { - "path-type": "^4.0.0" + "boolean": "^3.0.1", + "es6-error": "^4.1.1", + "matcher": "^3.0.0", + "roarr": "^2.15.3", + "semver": "^7.3.2", + "serialize-error": "^7.0.1" }, "engines": { - "node": ">=8" + "node": ">=10.0" } }, - "node_modules/dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", - "dev": true - }, - "node_modules/dmg-builder": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/dmg-builder/-/dmg-builder-23.6.0.tgz", - "integrity": "sha512-jFZvY1JohyHarIAlTbfQOk+HnceGjjAdFjVn3n8xlDWKsYNqbO4muca6qXEZTfGXeQMG7TYim6CeS5XKSfSsGA==", + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "dev": true, "dependencies": { - "app-builder-lib": "23.6.0", - "builder-util": "23.6.0", - "builder-util-runtime": "9.1.1", - "fs-extra": "^10.0.0", - "iconv-lite": "^0.6.2", - "js-yaml": "^4.1.0" + "global-prefix": "^3.0.0" }, - "optionalDependencies": { - "dmg-license": "^1.0.11" + "engines": { + "node": ">=6" } }, - "node_modules/dmg-builder/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "dev": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/dmg-license": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/dmg-license/-/dmg-license-1.0.11.tgz", - "integrity": "sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==", + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], "dependencies": { - "@types/plist": "^3.0.1", - "@types/verror": "^1.10.3", - "ajv": "^6.10.0", - "crc": "^3.8.0", - "iconv-corefoundation": "^1.1.7", - "plist": "^3.0.4", - "smart-buffer": "^4.0.2", - "verror": "^1.10.0" + "isexe": "^2.0.0" }, "bin": { - "dmg-license": "bin/dmg-license.js" - }, - "engines": { - "node": ">=8" + "which": "bin/which" } }, - "node_modules/dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", - "dev": true + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } }, - "node_modules/dns-packet": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz", - "integrity": "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==", - "dev": true, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "devOptional": true, "dependencies": { - "@leichtgewicht/ip-codec": "^2.0.1" + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" }, - "engines": { - "node": ">=6" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "dependencies": { - "esutils": "^2.0.2" + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" }, "engines": { - "node": ">=6.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/dom-converter": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", - "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", - "dev": true, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dependencies": { - "utila": "~0.4" + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "node_modules/got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", "dependencies": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" } }, - "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + }, + "node_modules/graceful-readlink": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", + "integrity": "sha512-8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w==", + "dev": true + }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", "dev": true, "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" }, "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/dom-serializer/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "dev": true, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] + "node_modules/harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", + "dev": true }, - "node_modules/domexception": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", - "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", - "dev": true, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dependencies": { - "webidl-conversions": "^5.0.0" + "function-bind": "^1.1.1" }, "engines": { - "node": ">=8" + "node": ">= 0.4.0" } }, - "node_modules/domexception/node_modules/webidl-conversions": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", - "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "engines": { "node": ">=8" } }, - "node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "dev": true, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "devOptional": true, "dependencies": { - "domelementtype": "^2.2.0" - }, - "engines": { - "node": ">= 4" + "get-intrinsic": "^1.1.1" }, "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", "dev": true, - "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "engines": { + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/dotenv": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", - "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", - "dev": true, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "engines": { - "node": ">=10" - } - }, - "node_modules/dotenv-expand": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", - "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", - "dev": true - }, - "node_modules/dottie": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dottie/-/dottie-2.0.3.tgz", - "integrity": "sha512-4liA0PuRkZWQFQjwBypdxPfZaRWiv5tkhMXY2hzsa2pNf5s7U3m9cwUchfNKe8wZQxdGPQQzO6Rm2uGe0rvohQ==" - }, - "node_modules/duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", - "dev": true - }, - "node_modules/editorconfig": { - "version": "0.15.3", - "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-0.15.3.tgz", - "integrity": "sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==", - "dependencies": { - "commander": "^2.19.0", - "lru-cache": "^4.1.5", - "semver": "^5.6.0", - "sigmund": "^1.0.1" + "node": ">= 0.4" }, - "bin": { - "editorconfig": "bin/editorconfig" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/editorconfig/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "node_modules/editorconfig/node_modules/lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/editorconfig/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, "bin": { - "semver": "bin/semver" + "he": "bin/he" } }, - "node_modules/editorconfig/node_modules/yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } }, - "node_modules/ejs": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", - "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", "dev": true, "dependencies": { - "jake": "^10.8.5" - }, - "bin": { - "ejs": "bin/cli.js" + "parse-passwd": "^1.0.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/electron": { - "version": "24.1.1", - "resolved": "https://registry.npmjs.org/electron/-/electron-24.1.1.tgz", - "integrity": "sha512-ymjUMe6Pvh9ytpM4lOvr+Qxd6NG5AELRtR6tw54bK3FXfKtTTKKAtZw/NbwHwkRAlWu8FNAGOuvCoap6/bm9LQ==", - "hasInstallScript": true, - "dependencies": { - "@electron/get": "^2.0.0", - "@types/node": "^18.11.18", - "extract-zip": "^2.0.1" - }, - "bin": { - "electron": "cli.js" - }, + "node_modules/hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "dev": true, "engines": { - "node": ">= 12.20.55" + "node": ">= 6.0.0" } }, - "node_modules/electron-builder": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/electron-builder/-/electron-builder-23.6.0.tgz", - "integrity": "sha512-y8D4zO+HXGCNxFBV/JlyhFnoQ0Y0K7/sFH+XwIbj47pqaW8S6PGYQbjoObolKBR1ddQFPt4rwp4CnwMJrW3HAw==", + "node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "dev": true, "dependencies": { - "@types/yargs": "^17.0.1", - "app-builder-lib": "23.6.0", - "builder-util": "23.6.0", - "builder-util-runtime": "9.1.1", - "chalk": "^4.1.1", - "dmg-builder": "23.6.0", - "fs-extra": "^10.0.0", - "is-ci": "^3.0.0", - "lazy-val": "^1.0.5", - "read-config-file": "6.2.0", - "simple-update-notifier": "^1.0.7", - "yargs": "^17.5.1" - }, - "bin": { - "electron-builder": "cli.js", - "install-app-deps": "install-app-deps.js" + "lru-cache": "^6.0.0" }, "engines": { - "node": ">=14.0.0" + "node": ">=10" } }, - "node_modules/electron-installer-common": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/electron-installer-common/-/electron-installer-common-0.10.3.tgz", - "integrity": "sha512-mYbP+6i+nHMIm0WZHXgGdmmXMe+KXncl6jZYQNcCF9C1WsNA9C5SZ2VP4TLQMSIoFO+X4ugkMEA5uld1bmyEvA==", + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "optional": true, "dependencies": { - "@malept/cross-spawn-promise": "^1.0.0", - "asar": "^3.0.0", - "debug": "^4.1.1", - "fs-extra": "^9.0.0", - "glob": "^7.1.4", - "lodash": "^4.17.15", - "parse-author": "^2.0.0", - "semver": "^7.1.1", - "tmp-promise": "^3.0.2" + "yallist": "^4.0.0" }, "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "url": "https://github.com/electron-userland/electron-installer-common?sponsor=1" - }, - "optionalDependencies": { - "@types/fs-extra": "^9.0.1" + "node": ">=10" } }, - "node_modules/electron-installer-common/node_modules/@malept/cross-spawn-promise": { + "node_modules/hosted-git-info/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/hpack.js/node_modules/string_decoder": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", - "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/malept" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" - } - ], - "optional": true, "dependencies": { - "cross-spawn": "^7.0.1" + "safe-buffer": "~5.1.0" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "dev": true, + "dependencies": { + "whatwg-encoding": "^2.0.0" }, "engines": { - "node": ">= 10" + "node": ">=12" } }, - "node_modules/electron-installer-common/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "node_modules/html-entities": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", + "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==", + "dev": true + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", "dev": true, - "optional": true, "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" }, "engines": { - "node": ">=10" + "node": ">=12" } }, - "node_modules/electron-installer-debian": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/electron-installer-debian/-/electron-installer-debian-3.1.0.tgz", - "integrity": "sha512-k6KChvx0Fw8XTlCqwwbBfh19yGQaKjGdbugokmr1IpzINOm4QFyACKMTHAYFHW5LCBUZQShZD96hwxUZ+8Kx+w==", + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/html-webpack-plugin": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", "dev": true, - "optional": true, - "os": [ - "darwin", - "linux" - ], "dependencies": { - "@malept/cross-spawn-promise": "^1.0.0", - "debug": "^4.1.1", - "electron-installer-common": "^0.10.2", - "fs-extra": "^9.0.0", - "get-folder-size": "^2.0.1", - "lodash": "^4.17.4", - "word-wrap": "^1.2.3", - "yargs": "^15.0.1" - }, - "bin": { - "electron-installer-debian": "src/cli.js" + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" }, "engines": { - "node": ">= 10.0.0" + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "webpack": "^5.20.0" } }, - "node_modules/electron-installer-debian/node_modules/@malept/cross-spawn-promise": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", - "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "dev": true, "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", { - "type": "individual", - "url": "https://github.com/sponsors/malept" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" + "type": "github", + "url": "https://github.com/sponsors/fb55" } ], - "optional": true, "dependencies": { - "cross-spawn": "^7.0.1" - }, - "engines": { - "node": ">= 10" + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" } }, - "node_modules/electron-installer-debian/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "node_modules/htmlparser2/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "dev": true, - "optional": true, - "engines": { - "node": ">=6" + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/electron-installer-debian/node_modules/cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "dev": true, - "optional": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - } + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" }, - "node_modules/electron-installer-debian/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, - "optional": true, "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" }, "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/electron-installer-debian/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dev": true, - "optional": true, "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">=8.0.0" } }, - "node_modules/electron-installer-debian/node_modules/locate-path": { + "node_modules/http-proxy-agent": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", "dev": true, - "optional": true, "dependencies": { - "p-locate": "^4.1.0" + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/electron-installer-debian/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", "dev": true, - "optional": true, "dependencies": { - "p-try": "^2.0.0" + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" }, "engines": { - "node": ">=6" + "node": ">=12.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } } }, - "node_modules/electron-installer-debian/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "optional": true, + "node_modules/http-proxy/node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true + }, + "node_modules/http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", "dependencies": { - "p-limit": "^2.2.0" + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">=10.19.0" } }, - "node_modules/electron-installer-debian/node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "optional": true, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "agent-base": "6", + "debug": "4" }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/electron-installer-debian/node_modules/y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, - "optional": true + "engines": { + "node": ">=10.17.0" + } }, - "node_modules/electron-installer-debian/node_modules/yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "node_modules/humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "devOptional": true, + "dependencies": { + "ms": "^2.0.0" + } + }, + "node_modules/husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "dev": true, + "bin": { + "husky": "lib/bin.js" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" + } + }, + "node_modules/iconv-corefoundation": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz", + "integrity": "sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==", "dev": true, "optional": true, - "dependencies": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" + "os": [ + "darwin" + ], + "dependencies": { + "cli-truncate": "^2.1.0", + "node-addon-api": "^1.6.3" }, "engines": { - "node": ">=8" + "node": "^8.11.2 || >=10" } }, - "node_modules/electron-installer-debian/node_modules/yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dev": true, - "optional": true, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" + "safer-buffer": ">= 2.1.2 < 3" }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/electron-installer-redhat": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/electron-installer-redhat/-/electron-installer-redhat-3.4.0.tgz", - "integrity": "sha512-gEISr3U32Sgtj+fjxUAlSDo3wyGGq6OBx7rF5UdpIgbnpUvMN4W5uYb0ThpnAZ42VEJh/3aODQXHbFS4f5J3Iw==", + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", "dev": true, - "optional": true, - "os": [ - "darwin", - "linux" - ], - "dependencies": { - "@malept/cross-spawn-promise": "^1.0.0", - "debug": "^4.1.1", - "electron-installer-common": "^0.10.2", - "fs-extra": "^9.0.0", - "lodash": "^4.17.15", - "word-wrap": "^1.2.3", - "yargs": "^16.0.2" + "engines": { + "node": "^10 || ^12 || >= 14" }, - "bin": { - "electron-installer-redhat": "src/cli.js" + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/idb": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", + "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==", + "dev": true + }, + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "dev": true, + "dependencies": { + "harmony-reflect": "^1.4.6" }, "engines": { - "node": ">= 10.0.0" + "node": ">=4" } }, - "node_modules/electron-installer-redhat/node_modules/@malept/cross-spawn-promise": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", - "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true, "funding": [ { - "type": "individual", - "url": "https://github.com/sponsors/malept" + "type": "github", + "url": "https://github.com/sponsors/feross" }, { - "type": "tidelift", - "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" } - ], - "optional": true, - "dependencies": { - "cross-spawn": "^7.0.1" - }, + ] + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, "engines": { - "node": ">= 10" + "node": ">= 4" } }, - "node_modules/electron-installer-redhat/node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "node_modules/immer": { + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.19.tgz", + "integrity": "sha512-eY+Y0qcsB4TZKwgQzLaE/lqYMlKhv5J9dyd2RhhtGhNo2njPXDqU9XPfcNfa3MIDsdtZt5KlkIsirlo4dHsWdQ==", "dev": true, - "optional": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" } }, - "node_modules/electron-installer-redhat/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "optional": true, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/electron-installer-redhat/node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, - "optional": true, "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" }, "engines": { - "node": ">=10" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/electron-installer-redhat/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true, - "optional": true, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "devOptional": true, "engines": { - "node": ">=10" + "node": ">=0.8.19" } }, - "node_modules/electron-notarize": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/electron-notarize/-/electron-notarize-1.2.2.tgz", - "integrity": "sha512-ZStVWYcWI7g87/PgjPJSIIhwQXOaw4/XeXU+pWqMMktSLHaGMLHdyPPN7Cmao7+Cr7fYufA16npdtMndYciHNw==", - "deprecated": "Please use @electron/notarize moving forward. There is no API change, just a package name change", - "dev": true, - "dependencies": { - "debug": "^4.1.1", - "fs-extra": "^9.0.1" - }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "devOptional": true, "engines": { - "node": ">= 10.0.0" + "node": ">=8" } }, - "node_modules/electron-notarize/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "devOptional": true + }, + "node_modules/inflection": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.13.4.tgz", + "integrity": "sha512-6I/HUDeYFfuNCVS3td055BaXBwKYuzw7K3ExVMStBowKo9oOAMJIXIHvdyR3iboTCp1b+1i5DSkIZTcwIktuDw==", + "engines": [ + "node >= 0.4.0" + ] + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=10" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/electron-osx-sign": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/electron-osx-sign/-/electron-osx-sign-0.6.0.tgz", - "integrity": "sha512-+hiIEb2Xxk6eDKJ2FFlpofCnemCbjbT5jz+BKGpVBrRNT3kWTGs4DfNX6IzGwgi33hUcXF+kFs9JW+r6Wc1LRg==", - "deprecated": "Please use @electron/osx-sign moving forward. Be aware the API is slightly different", + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", "dev": true, - "dependencies": { - "bluebird": "^3.5.0", - "compare-version": "^0.1.2", - "debug": "^2.6.8", - "isbinaryfile": "^3.0.2", - "minimist": "^1.2.0", - "plist": "^3.0.1" - }, - "bin": { - "electron-osx-flat": "bin/electron-osx-flat.js", - "electron-osx-sign": "bin/electron-osx-sign.js" + "dependencies": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" }, "engines": { - "node": ">=4.0.0" + "node": ">= 0.4" } }, - "node_modules/electron-osx-sign/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/interpret": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", + "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", "dev": true, - "dependencies": { - "ms": "2.0.0" + "engines": { + "node": ">=10.13.0" } }, - "node_modules/electron-osx-sign/node_modules/isbinaryfile": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz", - "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==", - "dev": true, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", "dependencies": { - "buffer-alloc": "^1.2.0" - }, - "engines": { - "node": ">=0.6.0" + "loose-envify": "^1.0.0" } }, - "node_modules/electron-osx-sign/node_modules/ms": { + "node_modules/ip": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "devOptional": true }, - "node_modules/electron-packager": { - "version": "16.0.0", - "resolved": "https://registry.npmjs.org/electron-packager/-/electron-packager-16.0.0.tgz", - "integrity": "sha512-7Ey4UUaHg3FYhA7ktsAvCWP8srp9+iPljGdeJBsNaZBakU6HWhvRC+Pc7LWXGCgAVIN5BQsUwR3xrCbFno91VA==", + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dependencies": { - "@electron/get": "^2.0.0", - "@electron/universal": "^1.2.1", - "asar": "^3.1.0", - "cross-spawn-windows-exe": "^1.2.0", - "debug": "^4.0.1", - "electron-notarize": "^1.1.1", - "electron-osx-sign": "^0.5.0", - "extract-zip": "^2.0.0", - "filenamify": "^4.1.0", - "fs-extra": "^10.1.0", - "galactus": "^0.2.1", - "get-package-info": "^1.0.0", - "junk": "^3.1.0", - "parse-author": "^2.0.0", - "plist": "^3.0.0", - "rcedit": "^3.0.1", - "resolve": "^1.1.6", - "semver": "^7.1.3", - "yargs-parser": "^21.1.1" - }, - "bin": { - "electron-packager": "bin/electron-packager.js" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">= 14.17.5" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/electron/electron-packager?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/electron-packager/node_modules/electron-osx-sign": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/electron-osx-sign/-/electron-osx-sign-0.5.0.tgz", - "integrity": "sha512-icoRLHzFz/qxzDh/N4Pi2z4yVHurlsCAYQvsCSG7fCedJ4UJXBS6PoQyGH71IfcqKupcKeK7HX/NkyfG+v6vlQ==", - "deprecated": "Please use @electron/osx-sign moving forward. Be aware the API is slightly different", + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", "dev": true, "dependencies": { - "bluebird": "^3.5.0", - "compare-version": "^0.1.2", - "debug": "^2.6.8", - "isbinaryfile": "^3.0.2", - "minimist": "^1.2.0", - "plist": "^3.0.1" - }, - "bin": { - "electron-osx-flat": "bin/electron-osx-flat.js", - "electron-osx-sign": "bin/electron-osx-sign.js" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" }, - "engines": { - "node": ">=4.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/electron-packager/node_modules/electron-osx-sign/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" }, - "node_modules/electron-packager/node_modules/isbinaryfile": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz", - "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==", + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, "dependencies": { - "buffer-alloc": "^1.2.0" + "has-bigints": "^1.0.1" }, - "engines": { - "node": ">=0.6.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/electron-packager/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/electron-publish": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/electron-publish/-/electron-publish-23.6.0.tgz", - "integrity": "sha512-jPj3y+eIZQJF/+t5SLvsI5eS4mazCbNYqatv5JihbqOstIM13k0d1Z3vAWntvtt13Itl61SO6seicWdioOU5dg==", + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, "dependencies": { - "@types/fs-extra": "^9.0.11", - "builder-util": "23.6.0", - "builder-util-runtime": "9.1.1", - "chalk": "^4.1.1", - "fs-extra": "^10.0.0", - "lazy-val": "^1.0.5", - "mime": "^2.5.2" + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/electron-rebuild": { - "version": "3.2.9", - "resolved": "https://registry.npmjs.org/electron-rebuild/-/electron-rebuild-3.2.9.tgz", - "integrity": "sha512-FkEZNFViUem3P0RLYbZkUjC8LUFIK+wKq09GHoOITSJjfDAVQv964hwaNseTTWt58sITQX3/5fHNYcTefqaCWw==", - "deprecated": "Please use @electron/rebuild moving forward. There is no API change, just a package name change", + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, "dependencies": { - "@malept/cross-spawn-promise": "^2.0.0", - "chalk": "^4.0.0", - "debug": "^4.1.1", - "detect-libc": "^2.0.1", - "fs-extra": "^10.0.0", - "got": "^11.7.0", - "lzma-native": "^8.0.5", - "node-abi": "^3.0.0", - "node-api-version": "^0.1.4", - "node-gyp": "^9.0.0", - "ora": "^5.1.0", - "semver": "^7.3.5", - "tar": "^6.0.5", - "yargs": "^17.0.1" - }, - "bin": { - "electron-rebuild": "lib/src/cli.js" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=12.13.0" - } - }, - "node_modules/electron-squirrel-startup": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/electron-squirrel-startup/-/electron-squirrel-startup-1.0.0.tgz", - "integrity": "sha512-Oce8mvgGdFmwr+DsAcXBmFK8jFfN6yaFAP9IvyhTfupM3nFkBku/7VS/mdtJteWumImkC6P+BKGsxScoDDkv9Q==", - "dependencies": { - "debug": "^2.2.0" - } - }, - "node_modules/electron-squirrel-startup/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/electron-squirrel-startup/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/electron-to-chromium": { - "version": "1.4.325", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.325.tgz", - "integrity": "sha512-K1C03NT4I7BuzsRdCU5RWkgZxtswnKDYM6/eMhkEXqKu4e5T+ck610x3FPzu1y7HVFSiQKZqP16gnJzPpji1TQ==" - }, - "node_modules/electron-winstaller": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/electron-winstaller/-/electron-winstaller-5.1.0.tgz", - "integrity": "sha512-4wlZzkUm5cJNiOtp5wL804+QpygdKTKkrZJXA3sSDEI2XnCVPv0kxmxUvVw4KHBwbNS+Yox89agEr+VkR7kxww==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "dependencies": { - "@electron/asar": "^3.2.1", - "debug": "^4.1.1", - "fs-extra": "^7.0.1", - "lodash.template": "^4.2.2", - "temp": "^0.9.0" - }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "engines": { - "node": ">=8.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/electron-winstaller/node_modules/fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "node_modules/is-ci": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", "dev": true, - "optional": true, "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "ci-info": "^3.2.0" }, - "engines": { - "node": ">=6 <7 || >=8" + "bin": { + "is-ci": "bin.js" } }, - "node_modules/electron-winstaller/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "dev": true, - "optional": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "node_modules/is-core-module": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/electron-winstaller/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dev": true, - "optional": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, "engines": { - "node": ">= 4.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/emittery": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", - "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, + "bin": { + "is-docker": "cli.js" + }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/emojis-list": { + "node_modules/is-fullwidth-code-point": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "engines": { - "node": ">= 4" + "node": ">=8" } }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, "engines": { - "node": ">= 0.8" + "node": ">=6" } }, - "node_modules/encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "optional": true, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", "dependencies": { - "iconv-lite": "^0.6.2" + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/encoding/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "optional": true, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "is-extglob": "^2.1.1" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dependencies": { - "once": "^1.4.0" + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true, + "engines": { + "node": ">=8" } }, - "node_modules/enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" + "node_modules/is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", + "devOptional": true + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", + "dev": true + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "engines": { + "node": ">= 0.4" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, "engines": { - "node": ">=10.13.0" + "node": ">=0.12.0" } }, - "node_modules/entities": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", - "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, "engines": { - "node": ">=0.12" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", + "dev": true, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "devOptional": true + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dependencies": { - "is-arrayish": "^0.2.1" + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/error-stack-parser": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", - "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "dependencies": { - "stackframe": "^1.3.4" + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/es-abstract": { - "version": "1.21.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz", - "integrity": "sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==", + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true + }, + "node_modules/is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.1.3", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.4", - "is-array-buffer": "^3.0.1", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.2", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -10776,69 +14729,64 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es-array-method-boxes-properly": { + "node_modules/is-regexp": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", - "dev": true + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/es-get-iterator": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "is-arguments": "^1.1.1", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.7", - "isarray": "^2.0.5", - "stop-iteration-iterator": "^1.0.0" - }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", "dev": true, "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" + "call-bind": "^1.0.2" }, - "engines": { - "node": ">= 0.4" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, - "dependencies": { - "has": "^1.0.3" + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -10847,74 +14795,50 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es5-ext": { - "version": "0.10.62", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", - "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", - "hasInstallScript": true, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, "dependencies": { - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.3", - "next-tick": "^1.1.0" + "has-symbols": "^1.0.2" }, "engines": { - "node": ">=0.10" - } - }, - "node_modules/es6-error": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", - "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", - "optional": true - }, - "node_modules/es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", - "dependencies": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "node_modules/es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", - "dependencies": { - "d": "^1.0.1", - "ext": "^1.1.2" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es6-weak-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", - "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "node_modules/is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", "dependencies": { - "d": "1", - "es5-ext": "^0.10.46", - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.1" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, "engines": { - "node": ">=6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", "dev": true }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, "engines": { "node": ">=10" }, @@ -10922,559 +14846,614 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/escodegen": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", - "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=6.0" + "call-bind": "^1.0.2" }, - "optionalDependencies": { - "source-map": "~0.6.1" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/escodegen/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", "dev": true, - "engines": { - "node": ">=4.0" + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/escodegen/node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", "dev": true, - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, "engines": { - "node": ">= 0.8.0" + "node": ">=0.10.0" } }, - "node_modules/escodegen/node_modules/optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" + "is-docker": "^2.0.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">=8" } }, - "node_modules/escodegen/node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/isbinaryfile": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz", + "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==", "dev": true, "engines": { - "node": ">= 0.8.0" + "node": ">= 8.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/gjtorikian/" } }, - "node_modules/escodegen/node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "devOptional": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "dev": true, - "dependencies": { - "prelude-ls": "~1.1.2" - }, "engines": { - "node": ">= 0.8.0" + "node": ">=0.10.0" } }, - "node_modules/eslint": { - "version": "8.35.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.35.0.tgz", - "integrity": "sha512-BxAf1fVL7w+JLRQhWl2pzGeSiGqbWumV4WNvc9Rhp6tiCtm4oHnyPBSEtMGZwrQgudFQ+otqzWoPB7x+hxoWsw==", + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", "dev": true, - "dependencies": { - "@eslint/eslintrc": "^2.0.0", - "@eslint/js": "8.35.0", - "@humanwhocodes/config-array": "^0.11.8", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.4.0", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=8" } }, - "node_modules/eslint-config-react-app": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", - "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "dev": true, "dependencies": { - "@babel/core": "^7.16.0", - "@babel/eslint-parser": "^7.16.3", - "@rushstack/eslint-patch": "^1.1.0", - "@typescript-eslint/eslint-plugin": "^5.5.0", - "@typescript-eslint/parser": "^5.5.0", - "babel-preset-react-app": "^10.0.1", - "confusing-browser-globals": "^1.0.11", - "eslint-plugin-flowtype": "^8.0.3", - "eslint-plugin-import": "^2.25.3", - "eslint-plugin-jest": "^25.3.0", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.27.1", - "eslint-plugin-react-hooks": "^4.3.0", - "eslint-plugin-testing-library": "^5.0.1" + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" }, "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "eslint": "^8.0.0" + "node": ">=8" } }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", - "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.11.0", - "resolve": "^1.22.1" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", "dev": true, "dependencies": { - "ms": "^2.1.1" + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/eslint-module-utils": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", - "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, "dependencies": { - "debug": "^3.2.7" + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" }, "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } + "node": ">=10" } }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", "dev": true, "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-css-import-order": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-css-import-order/-/eslint-plugin-css-import-order-1.1.0.tgz", - "integrity": "sha512-43ODxP1sXpmgI4c+NCtXqmhkLsYGe8El1ewOlvsXKchLjWLxJw5zfp4eEg31Eni+is3jGkBL2TrNyUOOnbOMDg==", - "dev": true, - "peerDependencies": { - "eslint": ">= 6.0.0 < 9.0.0" + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/eslint-plugin-flowtype": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", - "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "node_modules/jake": { + "version": "10.8.5", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", + "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", "dev": true, "dependencies": { - "lodash": "^4.17.21", - "string-natural-compare": "^3.0.1" + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" }, - "engines": { - "node": ">=12.0.0" + "bin": { + "jake": "bin/cli.js" }, - "peerDependencies": { - "@babel/plugin-syntax-flow": "^7.14.5", - "@babel/plugin-transform-react-jsx": "^7.14.9", - "eslint": "^8.1.0" + "engines": { + "node": ">=10" } }, - "node_modules/eslint-plugin-import": { - "version": "2.27.5", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", - "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "node_modules/jest": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.6.1.tgz", + "integrity": "sha512-Nirw5B4nn69rVUZtemCQhwxOBhm0nsp3hmtF4rzCeWD7BkjAXRIji7xWQfnTNbz9g0aVsBX6aZK3n+23LM6uDw==", "dev": true, "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "array.prototype.flatmap": "^1.3.1", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.7.4", - "has": "^1.0.3", - "is-core-module": "^2.11.0", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.values": "^1.1.6", - "resolve": "^1.22.1", - "semver": "^6.3.0", - "tsconfig-paths": "^3.14.1" + "@jest/core": "^29.6.1", + "@jest/types": "^29.6.1", + "import-local": "^3.0.2", + "jest-cli": "^29.6.1" + }, + "bin": { + "jest": "bin/jest.js" }, "engines": { - "node": ">=4" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/jest-changed-files": { + "version": "29.5.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz", + "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==", "dev": true, "dependencies": { - "ms": "^2.1.1" + "execa": "^5.0.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "node_modules/jest-circus": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.6.1.tgz", + "integrity": "sha512-tPbYLEiBU4MYAL2XoZme/bgfUeotpDBd81lgHLCbDZZFaGmECk0b+/xejPFtmiBP87GgP/y4jplcRpbH+fgCzQ==", "dev": true, "dependencies": { - "esutils": "^2.0.2" + "@jest/environment": "^29.6.1", + "@jest/expect": "^29.6.1", + "@jest/test-result": "^29.6.1", + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.6.1", + "jest-matcher-utils": "^29.6.1", + "jest-message-util": "^29.6.1", + "jest-runtime": "^29.6.1", + "jest-snapshot": "^29.6.1", + "jest-util": "^29.6.1", + "p-limit": "^3.1.0", + "pretty-format": "^29.6.1", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eslint-plugin-import/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/eslint-plugin-jest": { - "version": "25.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", - "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", + "node_modules/jest-circus/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", "dev": true, "dependencies": { - "@typescript-eslint/experimental-utils": "^5.0.0" + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - }, - "peerDependencies": { - "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "@typescript-eslint/eslint-plugin": { - "optional": true - }, - "jest": { - "optional": true - } + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", - "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "node_modules/jest-circus/node_modules/pretty-format": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.1.tgz", + "integrity": "sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==", "dev": true, "dependencies": { - "@babel/runtime": "^7.20.7", - "aria-query": "^5.1.3", - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.6.2", - "axobject-query": "^3.1.1", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "has": "^1.0.3", - "jsx-ast-utils": "^3.3.3", - "language-tags": "=1.0.5", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "semver": "^6.3.0" + "@jest/schemas": "^29.6.0", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { - "node": ">=4.0" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } + "node_modules/jest-circus/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true }, - "node_modules/eslint-plugin-react": { - "version": "7.32.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", - "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", + "node_modules/jest-cli": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.6.1.tgz", + "integrity": "sha512-607dSgTA4ODIN6go9w6xY3EYkyPFGicx51a69H7yfvt7lN53xNswEVLovq+E77VsTRi5fWprLH0yl4DJgE8Ing==", "dev": true, "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.8" + "@jest/core": "^29.6.1", + "@jest/test-result": "^29.6.1", + "@jest/types": "^29.6.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^29.6.1", + "jest-util": "^29.6.1", + "jest-validate": "^29.6.1", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" }, "engines": { - "node": ">=4" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { "node": ">=10" }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "node_modules/jest-cli/node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eslint-plugin-react/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "node_modules/jest-cli/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", "dev": true, + "dependencies": { + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, "engines": { - "node": ">=4.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "node_modules/jest-cli/node_modules/jest-validate": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.1.tgz", + "integrity": "sha512-r3Ds69/0KCN4vx4sYAbGL1EVpZ7MSS0vLmd3gV78O+NAx3PDQQukRU5hNHPXlyqCgFY8XUk7EuTMLugh0KzahA==", "dev": true, "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" + "@jest/types": "^29.6.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "leven": "^3.1.0", + "pretty-format": "^29.6.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/jest-cli/node_modules/pretty-format": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.1.tgz", + "integrity": "sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "dependencies": { + "@jest/schemas": "^29.6.0", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eslint-plugin-testing-library": { - "version": "5.10.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.10.2.tgz", - "integrity": "sha512-f1DmDWcz5SDM+IpCkEX0lbFqrrTs8HRsEElzDEqN/EBI0hpRj8Cns5+IVANXswE8/LeybIJqPAOQIFu2j5Y5sw==", + "node_modules/jest-cli/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-config": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.6.1.tgz", + "integrity": "sha512-XdjYV2fy2xYixUiV2Wc54t3Z4oxYPAELUzWnV6+mcbq0rh742X2p52pii5A3oeRzYjLnQxCsZmp0qpI6klE2cQ==", "dev": true, "dependencies": { - "@typescript-eslint/utils": "^5.43.0" + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.6.1", + "@jest/types": "^29.6.1", + "babel-jest": "^29.6.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.6.1", + "jest-environment-node": "^29.6.1", + "jest-get-type": "^29.4.3", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.6.1", + "jest-runner": "^29.6.1", + "jest-util": "^29.6.1", + "jest-validate": "^29.6.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.6.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0", - "npm": ">=6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { - "eslint": "^7.5.0 || ^8.0.0" + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } } }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "dev": true, "engines": { - "node": ">=8.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "node_modules/jest-config/node_modules/jest-haste-map": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.1.tgz", + "integrity": "sha512-0m7f9PZXxOCk1gRACiVgX85knUKPKLPg4oRCjLoqIm9brTHXaorMA0JpmtmVkQiT8nmXyIVoZd/nnH1cfC33ig==", "dev": true, "dependencies": { - "eslint-visitor-keys": "^2.0.0" + "@jest/types": "^29.6.1", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.6.1", + "jest-worker": "^29.6.1", + "micromatch": "^4.0.4", + "walker": "^1.0.8" }, "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "peerDependencies": { - "eslint": ">=5" + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "node_modules/jest-config/node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", "dev": true, "engines": { - "node": ">=10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "node_modules/jest-config/node_modules/jest-resolve": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.1.tgz", + "integrity": "sha512-AeRkyS8g37UyJiP9w3mmI/VXU/q8l/IH52vj/cDAyScDcemRbSBhfX/NMYIGilQgSVwsjxrCHf3XJu4f+lxCMg==", "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.6.1", + "jest-validate": "^29.6.1", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eslint-webpack-plugin": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", - "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "node_modules/jest-config/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", "dev": true, "dependencies": { - "@types/eslint": "^7.29.0 || ^8.4.1", - "jest-worker": "^28.0.2", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0" + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/jest-validate": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.1.tgz", + "integrity": "sha512-r3Ds69/0KCN4vx4sYAbGL1EVpZ7MSS0vLmd3gV78O+NAx3PDQQukRU5hNHPXlyqCgFY8XUk7EuTMLugh0KzahA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "leven": "^3.1.0", + "pretty-format": "^29.6.1" }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0", - "webpack": "^5.0.0" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", - "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "node_modules/jest-config/node_modules/jest-worker": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.1.tgz", + "integrity": "sha512-U+Wrbca7S8ZAxAe9L6nb6g8kPdia5hj32Puu5iOqBCMTMWFHXuK6dOV2IFrpedbTV8fjMFLdWNttQTBL6u2MRA==", "dev": true, "dependencies": { "@types/node": "*", + "jest-util": "^29.6.1", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "node_modules/jest-config/node_modules/pretty-format": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.1.tgz", + "integrity": "sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.0", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-config/node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-config/node_modules/supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", @@ -11489,8444 +15468,9095 @@ "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/eslint/node_modules/eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "node_modules/jest-diff": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.6.1.tgz", + "integrity": "sha512-FsNCvinvl8oVxpNLttNQX7FAq7vR+gMDGj90tiP7siWw1UdakWUGqrylpsYrpvj908IYckm5Y0Q7azNAozU1Kg==", "dev": true, "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" + "chalk": "^4.0.0", + "diff-sequences": "^29.4.3", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.6.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/eslint/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/eslint/node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "node_modules/jest-diff/node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/espree": { - "version": "9.4.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", - "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", + "node_modules/jest-diff/node_modules/pretty-format": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.1.tgz", + "integrity": "sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==", "dev": true, "dependencies": { - "acorn": "^8.8.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" + "@jest/schemas": "^29.6.0", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "node_modules/jest-diff/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-docblock": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz", + "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==", "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" + "dependencies": { + "detect-newline": "^3.0.0" }, "engines": { - "node": ">=4" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "node_modules/jest-each": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.6.1.tgz", + "integrity": "sha512-n5eoj5eiTHpKQCAVcNTT7DRqeUmJ01hsAL0Q1SMiBHcBcvTKDELixQOGMCpqhbIuTcfC4kMfSnpmDqRgRJcLNQ==", "dev": true, "dependencies": { - "estraverse": "^5.1.0" + "@jest/types": "^29.6.1", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "jest-util": "^29.6.1", + "pretty-format": "^29.6.1" }, "engines": { - "node": ">=0.10" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/esquery/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { - "node": ">=4.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dependencies": { - "estraverse": "^5.2.0" - }, + "node_modules/jest-each/node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "dev": true, "engines": { - "node": ">=4.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "node_modules/jest-each/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, "engines": { - "node": ">=4.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "node_modules/jest-each/node_modules/pretty-format": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.1.tgz", + "integrity": "sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.0", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, "engines": { - "node": ">=4.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/estree-walker": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", - "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", + "node_modules/jest-each/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", "dev": true }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "node_modules/jest-environment-jsdom": { + "version": "29.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.6.2.tgz", + "integrity": "sha512-7oa/+266AAEgkzae8i1awNEfTfjwawWKLpiw2XesZmaoVVj9u9t8JOYx18cG29rbPNtkUlZ8V4b5Jb36y/VxoQ==", "dev": true, + "dependencies": { + "@jest/environment": "^29.6.2", + "@jest/fake-timers": "^29.6.2", + "@jest/types": "^29.6.1", + "@types/jsdom": "^20.0.0", + "@types/node": "*", + "jest-mock": "^29.6.2", + "jest-util": "^29.6.2", + "jsdom": "^20.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } } }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "node_modules/jest-environment-jsdom/node_modules/jest-util": { + "version": "29.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.2.tgz", + "integrity": "sha512-3eX1qb6L88lJNCFlEADKOkjpXJQyZRiavX1INZ4tRnrBVr2COd3RgcTLyUiEXMNBlDU/cgYq6taUS0fExrWW4w==", "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/event-emitter": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", - "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", "dependencies": { - "d": "1", - "es5-ext": "~0.10.14" - } - }, - "node_modules/eventemitter3": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.0.tgz", - "integrity": "sha512-riuVbElZZNXLeLEoprfNYoDSwTBRR44X3mnhdI1YcnENpWTCsTTVZ2zFuqQcpoyqPQIUXdiPEU0ECAq0KQRaHg==" - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, "engines": { - "node": ">=0.8.x" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/jest-environment-node": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.6.1.tgz", + "integrity": "sha512-ZNIfAiE+foBog24W+2caIldl4Irh8Lx1PUhg/GZ0odM1d/h2qORAsejiFc7zb+SEmYPn1yDZzEDSU5PmDkmVLQ==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "@jest/environment": "^29.6.1", + "@jest/fake-timers": "^29.6.1", + "@jest/types": "^29.6.1", + "@types/node": "*", + "jest-mock": "^29.6.1", + "jest-util": "^29.6.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/execa/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/jest-environment-node/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", "dev": true, - "engines": { - "node": ">=10" + "dependencies": { + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", "dev": true, "engines": { - "node": ">= 0.8.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/expand-tilde": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", "dev": true, "dependencies": { - "homedir-polyfill": "^1.0.1" + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" }, "engines": { - "node": ">=0.10.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/expect": { + "node_modules/jest-haste-map/node_modules/@jest/types": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", - "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1" + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "node_modules/jest-haste-map/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", "dev": true, "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" + "@types/yargs-parser": "*" } }, - "node_modules/express-ws": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/express-ws/-/express-ws-5.0.2.tgz", - "integrity": "sha512-0uvmuk61O9HXgLhGl3QhNSEtRsQevtmbL94/eILaliEADZBHZOQUAiHFrGPrgsjikohyrmSG5g+sCfASTt0lkQ==", + "node_modules/jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", "dev": true, "dependencies": { - "ws": "^7.4.6" + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" }, "engines": { - "node": ">=4.5.0" - }, - "peerDependencies": { - "express": "^4.0.0 || ^5.0.0-alpha.1" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/jest-jasmine2/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", "dev": true, "dependencies": { - "ms": "2.0.0" + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/ext": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", - "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "node_modules/jest-jasmine2/node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dev": true, "dependencies": { - "type": "^2.7.2" + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/ext/node_modules/type": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", - "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" - }, - "node_modules/extract-zip": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", - "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "node_modules/jest-jasmine2/node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, "dependencies": { - "debug": "^4.1.1", - "get-stream": "^5.1.0", - "yauzl": "^2.10.0" - }, - "bin": { - "extract-zip": "cli.js" + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" }, "engines": { - "node": ">= 10.17.0" - }, - "optionalDependencies": { - "@types/yauzl": "^2.9.1" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/extsprintf": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz", - "integrity": "sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==", + "node_modules/jest-jasmine2/node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", "dev": true, - "engines": [ - "node >=0.6.0" - ], - "optional": true - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", "dev": true, "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" }, "engines": { - "node": ">=8.6.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/jest-jasmine2/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", "dev": true, "dependencies": { - "is-glob": "^4.0.1" + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" }, "engines": { - "node": ">= 6" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "node_modules/jest-jasmine2/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", "dev": true, "dependencies": { - "reusify": "^1.0.4" + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "node_modules/jest-jasmine2/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, "dependencies": { - "websocket-driver": ">=0.5.1" + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, "engines": { - "node": ">=0.8.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "node_modules/jest-jasmine2/node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", "dev": true, "dependencies": { - "bser": "2.1.1" + "type-detect": "4.0.8" } }, - "node_modules/fbemitter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", - "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", + "node_modules/jest-jasmine2/node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dev": true, "dependencies": { - "fbjs": "^3.0.0" + "@sinonjs/commons": "^1.7.0" } }, - "node_modules/fbjs": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.4.tgz", - "integrity": "sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==", + "node_modules/jest-jasmine2/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dev": true, "dependencies": { - "cross-fetch": "^3.1.5", - "fbjs-css-vars": "^1.0.0", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.30" + "@types/yargs-parser": "*" } }, - "node_modules/fbjs-css-vars": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", - "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" + "node_modules/jest-jasmine2/node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "node_modules/fbjs/node_modules/promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "node_modules/jest-jasmine2/node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dev": true, "dependencies": { - "asap": "~2.0.3" + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "node_modules/jest-jasmine2/node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dev": true, "dependencies": { - "pend": "~1.2.0" + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "node_modules/jest-jasmine2/node_modules/jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", "dev": true, "dependencies": { - "flat-cache": "^3.0.4" + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/file-loader": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", - "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "node_modules/jest-jasmine2/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dev": true, "dependencies": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" }, "engines": { - "node": ">= 10.13.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/file-loader/node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "node_modules/jest-jasmine2/node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dev": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" }, "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/filelist": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "node_modules/jest-jasmine2/node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", "dev": true, "dependencies": { - "minimatch": "^5.0.1" + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/filelist/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/jest-jasmine2/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0" + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" } }, - "node_modules/filelist/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "node_modules/jest-leak-detector": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.6.1.tgz", + "integrity": "sha512-OrxMNyZirpOEwkF3UHnIkAiZbtkBWiye+hhBweCHkVbCgyEy71Mwbb5zgeTNYWJBi1qgDVfPC1IwO9dVEeTLwQ==", "dev": true, "dependencies": { - "brace-expansion": "^2.0.1" + "jest-get-type": "^29.4.3", + "pretty-format": "^29.6.1" }, "engines": { - "node": ">=10" - } - }, - "node_modules/filename-reserved-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", - "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", - "dev": true, - "engines": { - "node": ">=4" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/filenamify": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.3.0.tgz", - "integrity": "sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==", + "node_modules/jest-leak-detector/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "dependencies": { - "filename-reserved-regex": "^2.0.0", - "strip-outer": "^1.0.1", - "trim-repeated": "^1.0.0" - }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/filesize": { - "version": "8.0.7", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", - "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", - "dev": true, - "engines": { - "node": ">= 0.4.0" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "node_modules/jest-leak-detector/node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "node_modules/jest-leak-detector/node_modules/pretty-format": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.1.tgz", + "integrity": "sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==", "dev": true, "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" + "@jest/schemas": "^29.6.0", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "node_modules/jest-leak-detector/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", "dev": true }, - "node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "node_modules/jest-matcher-utils": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.6.1.tgz", + "integrity": "sha512-SLaztw9d2mfQQKHmJXKM0HCbl2PPVld/t9Xa6P9sgiExijviSp7TnZZpw2Fpt+OI3nwUO/slJbOfzfUMKKC5QA==", "dev": true, "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" + "chalk": "^4.0.0", + "jest-diff": "^29.6.1", + "jest-get-type": "^29.4.3", + "pretty-format": "^29.6.1" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "node_modules/jest-matcher-utils/node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", "dev": true, - "dependencies": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true - }, - "node_modules/flora-colossus": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/flora-colossus/-/flora-colossus-1.0.1.tgz", - "integrity": "sha512-d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA==", + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.1.tgz", + "integrity": "sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==", "dev": true, "dependencies": { - "debug": "^4.1.1", - "fs-extra": "^7.0.0" + "@jest/schemas": "^29.6.0", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { - "node": ">= 6.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/flora-colossus/node_modules/fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "node_modules/jest-matcher-utils/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-message-util": { + "version": "29.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.6.2.tgz", + "integrity": "sha512-vnIGYEjoPSuRqV8W9t+Wow95SDp6KPX2Uf7EoeG9G99J2OVh7OSwpS4B6J0NfpEIpfkBNHlBZpA2rblEuEFhZQ==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/flora-colossus/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "dev": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/flora-colossus/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { - "node": ">= 4.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", + "node_modules/jest-message-util/node_modules/pretty-format": { + "version": "29.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.2.tgz", + "integrity": "sha512-1q0oC8eRveTg5nnBEWMXAU2qpv65Gnuf2eCQzSjxpWFkPaPARwqZZDGuNE0zPAZfTCHzIk3A8dIjwlQKKLphyg==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "engines": { - "node": ">=4.0" + "dependencies": { + "@jest/schemas": "^29.6.0", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/font-awesome": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz", - "integrity": "sha512-U6kGnykA/6bFmg1M/oT9EkFeIYv7JlX3bozwQJWiiLz6L0w3F5vBVPxHlwyX/vtNq1ckcpRKOB9f2Qal/VtFpg==", "engines": { - "node": ">=0.10.3" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "node_modules/jest-message-util/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-mock": { + "version": "29.6.2", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.6.2.tgz", + "integrity": "sha512-hoSv3lb3byzdKfwqCuT6uTscan471GUECqgNYykg6ob0yiAw3zYc7OrPnI9Qv8Wwoa4lC7AZ9hyS4AiIx5U2zg==", + "dev": true, "dependencies": { - "is-callable": "^1.1.3" + "@jest/types": "^29.6.1", + "@types/node": "*", + "jest-util": "^29.6.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/fork-ts-checker-webpack-plugin": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.3.0.tgz", - "integrity": "sha512-IN+XTzusCjR5VgntYFgxbxVx3WraPRnKehBFrf00cMSrtUuW9MsG9dhL6MWpY6MkjC3wVwoujfCDgZZCQwbswA==", + "node_modules/jest-mock/node_modules/jest-util": { + "version": "29.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.2.tgz", + "integrity": "sha512-3eX1qb6L88lJNCFlEADKOkjpXJQyZRiavX1INZ4tRnrBVr2COd3RgcTLyUiEXMNBlDU/cgYq6taUS0fExrWW4w==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.16.7", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cosmiconfig": "^7.0.1", - "deepmerge": "^4.2.2", - "fs-extra": "^10.0.0", - "memfs": "^3.4.1", - "minimatch": "^3.0.4", - "node-abort-controller": "^3.0.1", - "schema-utils": "^3.1.1", - "semver": "^7.3.5", - "tapable": "^2.2.1" + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">=12.13.0", - "yarn": ">=1.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" }, "peerDependencies": { - "typescript": ">3.6.0", - "vue-template-compiler": "*", - "webpack": "^5.11.0" + "jest-resolve": "*" }, "peerDependenciesMeta": { - "vue-template-compiler": { + "jest-resolve": { "optional": true } } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "node_modules/jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", "dev": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" }, "engines": { - "node": ">= 6" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "node_modules/jest-resolve-dependencies": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.6.1.tgz", + "integrity": "sha512-BbFvxLXtcldaFOhNMXmHRWx1nXQO5LoXiKSGQcA1LxxirYceZT6ch8KTE1bK3X31TNG/JbkI7OkS/ABexVahiw==", "dev": true, + "dependencies": { + "jest-regex-util": "^29.4.3", + "jest-snapshot": "^29.6.1" + }, "engines": { - "node": ">= 0.6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "node_modules/jest-resolve-dependencies/node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", "dev": true, "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://www.patreon.com/infusion" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "node_modules/jest-resolve/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, "engines": { - "node": ">= 0.6" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "node_modules/jest-resolve/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" + "@types/yargs-parser": "*" } }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "node_modules/jest-runner": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.6.1.tgz", + "integrity": "sha512-tw0wb2Q9yhjAQ2w8rHRDxteryyIck7gIzQE4Reu3JuOBpGp96xWgF0nY8MDdejzrLCZKDcp8JlZrBN/EtkQvPQ==", + "dev": true, "dependencies": { - "minipass": "^3.0.0" + "@jest/console": "^29.6.1", + "@jest/environment": "^29.6.1", + "@jest/test-result": "^29.6.1", + "@jest/transform": "^29.6.1", + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.4.3", + "jest-environment-node": "^29.6.1", + "jest-haste-map": "^29.6.1", + "jest-leak-detector": "^29.6.1", + "jest-message-util": "^29.6.1", + "jest-resolve": "^29.6.1", + "jest-runtime": "^29.6.1", + "jest-util": "^29.6.1", + "jest-watcher": "^29.6.1", + "jest-worker": "^29.6.1", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" }, "engines": { - "node": ">= 8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/fs-monkey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", - "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", - "dev": true - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "node_modules/jest-runner/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "node_modules/jest-runner/node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } }, - "node_modules/function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "node_modules/jest-runner/node_modules/jest-haste-map": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.1.tgz", + "integrity": "sha512-0m7f9PZXxOCk1gRACiVgX85knUKPKLPg4oRCjLoqIm9brTHXaorMA0JpmtmVkQiT8nmXyIVoZd/nnH1cfC33ig==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" + "@jest/types": "^29.6.1", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.6.1", + "jest-worker": "^29.6.1", + "micromatch": "^4.0.4", + "walker": "^1.0.8" }, "engines": { - "node": ">= 0.4" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "node_modules/jest-runner/node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/galactus": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/galactus/-/galactus-0.2.1.tgz", - "integrity": "sha512-mDc8EQJKtxjp9PMYS3PbpjjbX3oXhBTxoGaPahw620XZBIHJ4+nvw5KN/tRtmmSDR9dypstGNvqQ3C29QGoGHQ==", + "node_modules/jest-runner/node_modules/jest-resolve": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.1.tgz", + "integrity": "sha512-AeRkyS8g37UyJiP9w3mmI/VXU/q8l/IH52vj/cDAyScDcemRbSBhfX/NMYIGilQgSVwsjxrCHf3XJu4f+lxCMg==", "dev": true, "dependencies": { - "debug": "^3.1.0", - "flora-colossus": "^1.0.0", - "fs-extra": "^4.0.0" + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.6.1", + "jest-validate": "^29.6.1", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/galactus/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/jest-runner/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", "dev": true, "dependencies": { - "ms": "^2.1.1" + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/galactus/node_modules/fs-extra": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", - "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", + "node_modules/jest-runner/node_modules/jest-validate": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.1.tgz", + "integrity": "sha512-r3Ds69/0KCN4vx4sYAbGL1EVpZ7MSS0vLmd3gV78O+NAx3PDQQukRU5hNHPXlyqCgFY8XUk7EuTMLugh0KzahA==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "@jest/types": "^29.6.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "leven": "^3.1.0", + "pretty-format": "^29.6.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/jest-worker": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.1.tgz", + "integrity": "sha512-U+Wrbca7S8ZAxAe9L6nb6g8kPdia5hj32Puu5iOqBCMTMWFHXuK6dOV2IFrpedbTV8fjMFLdWNttQTBL6u2MRA==", + "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.6.1", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/galactus/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "node_modules/jest-runner/node_modules/pretty-format": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.1.tgz", + "integrity": "sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==", "dev": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "dependencies": { + "@jest/schemas": "^29.6.0", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/galactus/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "node_modules/jest-runner/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-runner/node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", "dev": true, "engines": { - "node": ">= 4.0.0" + "node": ">=10" } }, - "node_modules/gar": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/gar/-/gar-1.0.4.tgz", - "integrity": "sha512-w4n9cPWyP7aHxKxYHFQMegj7WIAsL/YX/C4Bs5Rr8s1H9M1rNtRWRsw+ovYMkXDQ5S4ZbYHsHAPmevPjPgw44w==", + "node_modules/jest-runner/node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", "dev": true, - "optional": true - }, - "node_modules/gauge": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", - "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", - "devOptional": true, "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "node_modules/jest-runner/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=6.9.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "node_modules/jest-runtime": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.6.1.tgz", + "integrity": "sha512-D6/AYOA+Lhs5e5il8+5pSLemjtJezUr+8zx+Sn8xlmOux3XOqx4d8l/2udBea8CRPqqrzhsKUsN/gBDE/IcaPQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.6.1", + "@jest/fake-timers": "^29.6.1", + "@jest/globals": "^29.6.1", + "@jest/source-map": "^29.6.0", + "@jest/test-result": "^29.6.1", + "@jest/transform": "^29.6.1", + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.1", + "jest-message-util": "^29.6.1", + "jest-mock": "^29.6.1", + "jest-regex-util": "^29.4.3", + "jest-resolve": "^29.6.1", + "jest-snapshot": "^29.6.1", + "jest-util": "^29.6.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, "engines": { - "node": "6.* || 8.* || >= 10.*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/get-folder-size": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/get-folder-size/-/get-folder-size-2.0.1.tgz", - "integrity": "sha512-+CEb+GDCM7tkOS2wdMKTn9vU7DgnKUTuDlehkNJKNSovdCOVxs14OfKCk4cvSaR3za4gj+OBdl9opPN9xrJ0zA==", + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "optional": true, - "dependencies": { - "gar": "^1.0.4", - "tiny-each-async": "2.0.3" + "engines": { + "node": ">=10" }, - "bin": { - "get-folder-size": "bin/get-folder-size" + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/get-installed-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/get-installed-path/-/get-installed-path-2.1.1.tgz", - "integrity": "sha512-Qkn9eq6tW5/q9BDVdMpB8tOHljX9OSP0jRC5TRNVA4qRc839t4g8KQaR8t0Uv0EFVL0MlyG7m/ofjEgAROtYsA==", + "node_modules/jest-runtime/node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", "dev": true, - "dependencies": { - "global-modules": "1.0.0" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/get-installed-path/node_modules/global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "node_modules/jest-runtime/node_modules/jest-haste-map": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.6.1.tgz", + "integrity": "sha512-0m7f9PZXxOCk1gRACiVgX85knUKPKLPg4oRCjLoqIm9brTHXaorMA0JpmtmVkQiT8nmXyIVoZd/nnH1cfC33ig==", "dev": true, "dependencies": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" + "@jest/types": "^29.6.1", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.4.3", + "jest-util": "^29.6.1", + "jest-worker": "^29.6.1", + "micromatch": "^4.0.4", + "walker": "^1.0.8" }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/get-installed-path/node_modules/global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "node_modules/jest-runtime/node_modules/jest-regex-util": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", + "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-resolve": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.6.1.tgz", + "integrity": "sha512-AeRkyS8g37UyJiP9w3mmI/VXU/q8l/IH52vj/cDAyScDcemRbSBhfX/NMYIGilQgSVwsjxrCHf3XJu4f+lxCMg==", "dev": true, "dependencies": { - "expand-tilde": "^2.0.2", - "homedir-polyfill": "^1.0.1", - "ini": "^1.3.4", - "is-windows": "^1.0.1", - "which": "^1.2.14" + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.6.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.6.1", + "jest-validate": "^29.6.1", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/get-installed-path/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "node_modules/jest-runtime/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", "dev": true, "dependencies": { - "isexe": "^2.0.0" + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, - "bin": { - "which": "bin/which" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/get-intrinsic": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", - "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", + "node_modules/jest-runtime/node_modules/jest-validate": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.6.1.tgz", + "integrity": "sha512-r3Ds69/0KCN4vx4sYAbGL1EVpZ7MSS0vLmd3gV78O+NAx3PDQQukRU5hNHPXlyqCgFY8XUk7EuTMLugh0KzahA==", + "dev": true, "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" + "@jest/types": "^29.6.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.4.3", + "leven": "^3.1.0", + "pretty-format": "^29.6.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/get-own-enumerable-property-symbols": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", - "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", - "dev": true - }, - "node_modules/get-package-info": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-package-info/-/get-package-info-1.0.0.tgz", - "integrity": "sha512-SCbprXGAPdIhKAXiG+Mk6yeoFH61JlYunqdFQFHDtLjJlDjFf6x07dsS8acO+xWt52jpdVo49AlVDnUVK1sDNw==", + "node_modules/jest-runtime/node_modules/jest-worker": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.6.1.tgz", + "integrity": "sha512-U+Wrbca7S8ZAxAe9L6nb6g8kPdia5hj32Puu5iOqBCMTMWFHXuK6dOV2IFrpedbTV8fjMFLdWNttQTBL6u2MRA==", "dev": true, "dependencies": { - "bluebird": "^3.1.1", - "debug": "^2.2.0", - "lodash.get": "^4.0.0", - "read-pkg-up": "^2.0.0" + "@types/node": "*", + "jest-util": "^29.6.1", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": ">= 4.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/get-package-info/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/jest-runtime/node_modules/pretty-format": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.1.tgz", + "integrity": "sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==", "dev": true, "dependencies": { - "ms": "2.0.0" + "@jest/schemas": "^29.6.0", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/get-package-info/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "node_modules/jest-runtime/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", "dev": true }, - "node_modules/get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "node_modules/jest-runtime/node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", "dev": true, "engines": { - "node": ">=8.0.0" + "node": ">=10" } }, - "node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, "dependencies": { - "pump": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "@types/node": "*", + "graceful-fs": "^4.2.9" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/jest-snapshot": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.6.1.tgz", + "integrity": "sha512-G4UQE1QQ6OaCgfY+A0uR1W2AY0tGXUPQpoUClhWHq1Xdnx1H6JOrC2nH5lqnOEqaDgbHFgIwZ7bNq24HpB180A==", + "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.6.1", + "@jest/transform": "^29.6.1", + "@jest/types": "^29.6.1", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.6.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.6.1", + "jest-get-type": "^29.4.3", + "jest-matcher-utils": "^29.6.1", + "jest-message-util": "^29.6.1", + "jest-util": "^29.6.1", + "natural-compare": "^1.4.0", + "pretty-format": "^29.6.1", + "semver": "^7.5.3" }, "engines": { - "node": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/jest-snapshot/node_modules/jest-get-type": { + "version": "29.4.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz", + "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==", "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, "engines": { - "node": ">=10.13.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "node_modules/global-agent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz", - "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==", - "optional": true, + "node_modules/jest-snapshot/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", + "dev": true, "dependencies": { - "boolean": "^3.0.1", - "es6-error": "^4.1.1", - "matcher": "^3.0.0", - "roarr": "^2.15.3", - "semver": "^7.3.2", - "serialize-error": "^7.0.1" + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">=10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "node_modules/jest-snapshot/node_modules/pretty-format": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.6.1.tgz", + "integrity": "sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==", "dev": true, "dependencies": { - "global-prefix": "^3.0.0" + "@jest/schemas": "^29.6.0", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, "engines": { - "node": ">=6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "node_modules/jest-snapshot/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "dev": true, "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">=6" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "node_modules/jest-util/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, "dependencies": { - "isexe": "^2.0.0" + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, - "bin": { - "which": "bin/which" + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "engines": { - "node": ">=4" + "node_modules/jest-util/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" } }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "devOptional": true, + "node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "dev": true, "dependencies": { - "define-properties": "^1.1.3" + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "node_modules/jest-validate/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "node_modules/jest-validate/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dev": true, "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "@types/yargs-parser": "*" } }, - "node_modules/got": { - "version": "11.8.6", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", - "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "node_modules/jest-watcher": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.6.1.tgz", + "integrity": "sha512-d4wpjWTS7HEZPaaj8m36QiaP856JthRZkrgcIY/7ISoUWPIillrXM23WPboZVLbiwZBt4/qn2Jke84Sla6JhFA==", + "dev": true, "dependencies": { - "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", - "@types/cacheable-request": "^6.0.1", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^5.0.3", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "http2-wrapper": "^1.0.0-beta.5.2", - "lowercase-keys": "^2.0.0", - "p-cancelable": "^2.0.0", - "responselike": "^2.0.0" + "@jest/test-result": "^29.6.1", + "@jest/types": "^29.6.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.6.1", + "string-length": "^4.0.1" }, "engines": { - "node": ">=10.19.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" - }, - "node_modules/graceful-readlink": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", - "integrity": "sha512-8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w==", - "dev": true - }, - "node_modules/grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "dev": true - }, - "node_modules/gzip-size": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", - "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "node_modules/jest-watcher/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", "dev": true, "dependencies": { - "duplexer": "^0.1.2" + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/handle-thing": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", - "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", - "dev": true - }, - "node_modules/harmony-reflect": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", - "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", - "dev": true - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dependencies": { - "function-bind": "^1.1.1" + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": ">= 0.4.0" + "node": ">= 10.13.0" } }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/jmespath": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/jmespath/-/jmespath-0.16.0.tgz", + "integrity": "sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==", "engines": { - "node": ">=8" + "node": ">= 0.6.0" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "devOptional": true, + "node_modules/jquery": { + "version": "3.6.4", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.4.tgz", + "integrity": "sha512-v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ==" + }, + "node_modules/js-beautify": { + "version": "1.14.7", + "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.7.tgz", + "integrity": "sha512-5SOX1KXPFKx+5f6ZrPsIPEY7NwKeQz47n3jm2i+XeHx9MoRsfQenlOP13FQhWvg8JRS0+XLO6XYUQ2GX+q+T9A==", "dependencies": { - "get-intrinsic": "^1.1.1" + "config-chain": "^1.1.13", + "editorconfig": "^0.15.3", + "glob": "^8.0.3", + "nopt": "^6.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "css-beautify": "js/bin/css-beautify.js", + "html-beautify": "js/bin/html-beautify.js", + "js-beautify": "js/bin/js-beautify.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/js-beautify/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dependencies": { + "balanced-match": "^1.0.0" } }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "node_modules/js-beautify/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, "engines": { - "node": ">= 0.4" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "node_modules/js-beautify/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dependencies": { - "has-symbols": "^1.0.2" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10" } }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" - }, - "node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "node_modules/js-sdsl": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", + "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==", "dev": true, - "bin": { - "he": "bin/he" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/js-sdsl" } }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, "dependencies": { - "react-is": "^16.7.0" + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/homedir-polyfill": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", - "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "node_modules/jsdom": { + "version": "20.0.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", + "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", "dev": true, "dependencies": { - "parse-passwd": "^1.0.0" + "abab": "^2.0.6", + "acorn": "^8.8.1", + "acorn-globals": "^7.0.0", + "cssom": "^0.5.0", + "cssstyle": "^2.3.0", + "data-urls": "^3.0.2", + "decimal.js": "^10.4.2", + "domexception": "^4.0.0", + "escodegen": "^2.0.0", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.2", + "parse5": "^7.1.1", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.2", + "w3c-xmlserializer": "^4.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^2.0.0", + "whatwg-mimetype": "^3.0.0", + "whatwg-url": "^11.0.0", + "ws": "^8.11.0", + "xml-name-validator": "^4.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=14" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } } }, - "node_modules/hoopy": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", - "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "node_modules/jsdom/node_modules/tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, "engines": { - "node": ">= 6.0.0" + "node": ">=12" } }, - "node_modules/hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "node_modules/jsdom/node_modules/whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" }, "engines": { - "node": ">=10" + "node": ">=12" } }, - "node_modules/hosted-git-info/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/jsdom/node_modules/ws": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" }, "engines": { - "node": ">=10" + "node": ">=4" } }, - "node_modules/hosted-git-info/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, + "node_modules/json-loader": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz", + "integrity": "sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==", "dev": true }, - "node_modules/hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", - "dev": true, - "dependencies": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" } }, - "node_modules/hpack.js/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/hpack.js/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/hpack.js/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true + "node_modules/jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "engines": [ + "node >= 0.2.0" + ] }, - "node_modules/hpack.js/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "node_modules/jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/html-encoding-sniffer": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", - "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", - "dev": true, + "node_modules/JSONStream": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", "dependencies": { - "whatwg-encoding": "^1.0.5" + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + }, + "bin": { + "JSONStream": "bin.js" }, "engines": { - "node": ">=10" + "node": "*" } }, - "node_modules/html-entities": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", - "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==", - "dev": true - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true - }, - "node_modules/html-minifier-terser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "node_modules/jsx-ast-utils": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", + "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", "dev": true, "dependencies": { - "camel-case": "^4.1.2", - "clean-css": "^5.2.2", - "commander": "^8.3.0", - "he": "^1.2.0", - "param-case": "^3.0.4", - "relateurl": "^0.2.7", - "terser": "^5.10.0" - }, - "bin": { - "html-minifier-terser": "cli.js" + "array-includes": "^3.1.5", + "object.assign": "^4.1.3" }, "engines": { - "node": ">=12" + "node": ">=4.0" } }, - "node_modules/html-minifier-terser/node_modules/commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "node_modules/junk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", + "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", "dev": true, "engines": { - "node": ">= 12" + "node": ">=8" } }, - "node_modules/html-webpack-plugin": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", - "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", - "dev": true, + "node_modules/keyv": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", + "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", "dependencies": { - "@types/html-minifier-terser": "^6.0.0", - "html-minifier-terser": "^6.0.2", - "lodash": "^4.17.21", - "pretty-error": "^4.0.0", - "tapable": "^2.0.0" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/html-webpack-plugin" - }, - "peerDependencies": { - "webpack": "^5.20.0" + "json-buffer": "3.0.1" } }, - "node_modules/htmlparser2": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", - "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", - "domutils": "^2.5.2", - "entities": "^2.0.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/htmlparser2/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "engines": { + "node": ">=6" } }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "dev": true, + "engines": { + "node": ">= 8" + } }, - "node_modules/http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", "dev": true }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "node_modules/language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", "dev": true, "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" + "language-subtag-registry": "~0.3.2" } }, - "node_modules/http-parser-js": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", - "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "node_modules/lazy-val": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/lazy-val/-/lazy-val-1.0.5.tgz", + "integrity": "sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==", "dev": true }, - "node_modules/http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, - "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, "engines": { - "node": ">=8.0.0" + "node": ">=6" } }, - "node_modules/http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/license-expressions": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/license-expressions/-/license-expressions-0.6.0.tgz", + "integrity": "sha512-XFvfWNQkiJCzCcPMFBd6y/cehoJwB2esTsUsX5Y7TOlAI3GW0AhExbB7veZANNqRapuh/y4qjxMP8keK3bdczA==", + "dependencies": { + "spdx-correct": "^3.2.0" }, + "bin": { + "spdx": "build/cli/index.js" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, "engines": { - "node": ">= 6" + "node": ">=10" } }, - "node_modules/http-proxy-middleware": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/listr2": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.7.tgz", + "integrity": "sha512-MD+qXHPmtivrHIDRwPYdfNkrzqDiuaKU/rfBcec3WMyMF3xylQj3jMq344OtvQxz7zaCFViRAeqlr2AFhPvXHw==", "dev": true, "dependencies": { - "@types/http-proxy": "^1.17.8", - "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" + "cli-truncate": "^2.1.0", + "colorette": "^2.0.19", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.8.0", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": ">=12.0.0" + "node": "^14.13.1 || >=16.0.0" }, "peerDependencies": { - "@types/express": "^4.17.13" + "enquirer": ">= 2.3.0 < 3" }, "peerDependenciesMeta": { - "@types/express": { + "enquirer": { "optional": true } } }, - "node_modules/http-proxy/node_modules/eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true - }, - "node_modules/http2-wrapper": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", - "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "node_modules/load-json-file": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", + "integrity": "sha512-3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ==", + "dev": true, "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "strip-bom": "^3.0.0" }, "engines": { - "node": ">=10.19.0" + "node": ">=4" } }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "node_modules/load-json-file/node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "dev": true, "dependencies": { - "agent-base": "6", - "debug": "4" + "error-ex": "^1.2.0" }, "engines": { - "node": ">= 6" + "node": ">=0.10.0" } }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "node_modules/load-json-file/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, "engines": { - "node": ">=10.17.0" + "node": ">=4" } }, - "node_modules/humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", - "devOptional": true, - "dependencies": { - "ms": "^2.0.0" + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "engines": { + "node": ">=6.11.5" } }, - "node_modules/iconv-corefoundation": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz", - "integrity": "sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==", - "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dependencies": { - "cli-truncate": "^2.1.0", - "node-addon-api": "^1.6.3" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" }, "engines": { - "node": "^8.11.2 || >=10" + "node": ">=8.9.0" } }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" + "p-locate": "^5.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", "dev": true, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } + "optional": true }, - "node_modules/idb": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz", - "integrity": "sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==", + "node_modules/lodash.clamp": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/lodash.clamp/-/lodash.clamp-4.0.3.tgz", + "integrity": "sha512-HvzRFWjtcguTW7yd8NJBshuNaCa8aqNFtnswdT7f/cMd/1YKy5Zzoq4W/Oxvnx9l7aeY258uSdDfM793+eLsVg==" + }, + "node_modules/lodash.curry": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz", + "integrity": "sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + }, + "node_modules/lodash.flow": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz", + "integrity": "sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==" + }, + "node_modules/lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==", "dev": true }, - "node_modules/identity-obj-proxy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", - "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", + "dev": true + }, + "node_modules/lodash.template": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", "dev": true, + "optional": true, "dependencies": { - "harmony-reflect": "^1.4.6" - }, - "engines": { - "node": ">=4" + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" } }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "node_modules/lodash.templatesettings": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "optional": true, + "dependencies": { + "lodash._reinterpolate": "^3.0.0" + } + }, + "node_modules/lodash.throttle": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", + "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==" }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, "engines": { - "node": ">= 4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/immer": { - "version": "9.0.19", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.19.tgz", - "integrity": "sha512-eY+Y0qcsB4TZKwgQzLaE/lqYMlKhv5J9dyd2RhhtGhNo2njPXDqU9XPfcNfa3MIDsdtZt5KlkIsirlo4dHsWdQ==", + "node_modules/log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", "dev": true, + "dependencies": { + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" + }, + "engines": { + "node": ">=10" + }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/immer" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "node_modules/log-update/node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" }, "engines": { - "node": ">=6" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { "node": ">=8" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "loose-envify": "cli.js" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "devOptional": true, - "engines": { - "node": ">=0.8.19" + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" } }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "devOptional": true, + "node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", "engines": { "node": ">=8" } }, - "node_modules/infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "devOptional": true - }, - "node_modules/inflection": { - "version": "1.13.4", - "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.13.4.tgz", - "integrity": "sha512-6I/HUDeYFfuNCVS3td055BaXBwKYuzw7K3ExVMStBowKo9oOAMJIXIHvdyR3iboTCp1b+1i5DSkIZTcwIktuDw==", - "engines": [ - "node >= 0.4.0" - ] - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "yallist": "^3.0.2" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + "node_modules/lru-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", + "integrity": "sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==", + "dependencies": { + "es5-ext": "~0.10.2" + } }, - "node_modules/internal-slot": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "node_modules/lzma-native": { + "version": "8.0.6", + "resolved": "https://registry.npmjs.org/lzma-native/-/lzma-native-8.0.6.tgz", + "integrity": "sha512-09xfg67mkL2Lz20PrrDeNYZxzeW7ADtpYFbwSQh9U8+76RIzx5QsJBMy8qikv3hbUPfpy6hqwxt6FcGK81g9AA==", "dev": true, + "hasInstallScript": true, "dependencies": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" + "node-addon-api": "^3.1.0", + "node-gyp-build": "^4.2.1", + "readable-stream": "^3.6.0" + }, + "bin": { + "lzmajs": "bin/lzmajs" }, "engines": { - "node": ">= 0.4" + "node": ">=10.0.0" } }, - "node_modules/interpret": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", - "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", + "node_modules/lzma-native/node_modules/node-addon-api": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz", + "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", + "dev": true + }, + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", "dev": true, - "engines": { - "node": ">=10.13.0" + "dependencies": { + "sourcemap-codec": "^1.4.8" } }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dependencies": { - "loose-envify": "^1.0.0" + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "devOptional": true + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/make-fetch-happen": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", + "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", + "dev": true, + "dependencies": { + "agentkeepalive": "^4.2.1", + "cacache": "^16.1.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^2.0.3", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^9.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/make-fetch-happen/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, "engines": { - "node": ">= 0.10" + "node": ">=12" } }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "tmpl": "1.0.5" + } + }, + "node_modules/map-age-cleaner": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "dev": true, + "dependencies": { + "p-defer": "^1.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6" } }, - "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", - "dev": true, + "node_modules/matcher": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", + "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", + "optional": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" + "escape-string-regexp": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=10" } }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + "node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "dev": true, - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 0.6" } }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "node_modules/mem": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", + "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", "dev": true, "dependencies": { - "binary-extensions": "^2.0.0" + "map-age-cleaner": "^0.1.1", + "mimic-fn": "^2.0.0", + "p-is-promise": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "node_modules/memfs": { + "version": "3.4.13", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.13.tgz", + "integrity": "sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "fs-monkey": "^1.0.3" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 4.0.0" } }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/memoize-one": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" + }, + "node_modules/memoizee": { + "version": "0.4.15", + "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.15.tgz", + "integrity": "sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==", + "dependencies": { + "d": "^1.0.1", + "es5-ext": "^0.10.53", + "es6-weak-map": "^2.0.3", + "event-emitter": "^0.3.5", + "is-promise": "^2.2.2", + "lru-queue": "^0.1.0", + "next-tick": "^1.1.0", + "timers-ext": "^0.1.7" } }, - "node_modules/is-ci": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", - "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, - "dependencies": { - "ci-info": "^3.2.0" - }, - "bin": { - "is-ci": "bin.js" + "engines": { + "node": ">= 8" } }, - "node_modules/is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "engines": { + "node": ">= 0.6" } }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "braces": "^3.0.2", + "picomatch": "^2.3.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8.6" } }, - "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", "dev": true, "bin": { - "is-docker": "cli.js" + "mime": "cli.js" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4.0.0" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "engines": { - "node": ">=0.10.0" + "node": ">= 0.6" } }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, "engines": { - "node": ">=8" + "node": ">= 0.6" } }, - "node_modules/is-generator-fn": { + "node_modules/mimic-fn": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, "engines": { "node": ">=6" } }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=4" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/mini-css-extract-plugin": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.3.tgz", + "integrity": "sha512-CD9cXeKeXLcnMw8FZdtfrRrLaM7gwCl4nKuKn2YkY2Bw5wdlB8zU2cCzw+w2zS9RFvbrufTBkMCJACNPwqQA0w==", "dev": true, "dependencies": { - "is-extglob": "^2.1.1" + "schema-utils": "^4.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, "engines": { - "node": ">=8" + "node": "*" } }, - "node_modules/is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", - "devOptional": true - }, - "node_modules/is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", - "dev": true - }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true, - "engines": { - "node": ">= 0.4" + "node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8" } }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "devOptional": true, + "dependencies": { + "minipass": "^3.0.0" + }, "engines": { - "node": ">=0.12.0" + "node": ">= 8" } }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "node_modules/minipass-fetch": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz", + "integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "minipass": "^3.1.6", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" }, "engines": { - "node": ">= 0.4" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "optionalDependencies": { + "encoding": "^0.1.13" } }, - "node_modules/is-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", - "dev": true, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "devOptional": true, + "dependencies": { + "minipass": "^3.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 8" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "devOptional": true, + "dependencies": { + "minipass": "^3.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", - "dev": true, - "engines": { - "node": ">=10" + "node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "devOptional": true, + "dependencies": { + "minipass": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=8" } }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, + "node_modules/minipass/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", "dependencies": { - "isobject": "^3.0.1" + "minipass": "^3.0.0", + "yallist": "^4.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 8" } }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "dev": true - }, - "node_modules/is-promise": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", - "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10" } }, - "node_modules/is-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", - "dev": true, + "node_modules/mock-aws-s3": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/mock-aws-s3/-/mock-aws-s3-4.0.2.tgz", + "integrity": "sha512-J6g3MMCuKHeuqVEOgvQfRGIfVmg6KKrED48Bux/L9rTY3NPK9TFRh/9bCf5AuzjJm9PIlwhDEO99tD8+smnTyQ==", + "dependencies": { + "bluebird": "^3.5.1", + "fs-extra": "^7.0.1", + "underscore": "1.12.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">=10.0.0" } }, - "node_modules/is-root": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", - "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", - "dev": true, + "node_modules/mock-aws-s3/node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, "engines": { - "node": ">=6" + "node": ">=6 <7 || >=8" } }, - "node_modules/is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/mock-aws-s3/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/mock-aws-s3/node_modules/underscore": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz", + "integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==" + }, + "node_modules/mock-aws-s3/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" } }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, + "node_modules/moment": { + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "*" } }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, + "node_modules/moment-timezone": { + "version": "0.5.41", + "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.41.tgz", + "integrity": "sha512-e0jGNZDOHfBXJGz8vR/sIMXvBIGJJcqFjmlg9lmE+5KX1U7/RZNMswfD8nKnNCnQdKTIj50IaRKwl1fvMLyyRg==", "dependencies": { - "has-tostringtag": "^1.0.0" + "moment": "^2.29.4" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "*" } }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "dev": true, "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "multicast-dns": "cli.js" } }, - "node_modules/is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" + "node_modules/nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "dev": true, + "bin": { + "nanoid": "bin/nanoid.cjs" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "node_modules/native-ext-loader": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/native-ext-loader/-/native-ext-loader-2.3.0.tgz", + "integrity": "sha512-awBQEfD25+YLi1voefLbjHiUt0yfm3Z4mBOLqbzFVR8ZOVv0MebeN9fhNiY0fxVEFiyBYtr/hF2VWfuMSCfFlw==", "dev": true }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "devOptional": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.6" } }, - "node_modules/is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "lower-case": "^2.0.2", + "tslib": "^2.0.3" } }, - "node_modules/is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", - "dev": true, + "node_modules/nock": { + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/nock/-/nock-13.3.0.tgz", + "integrity": "sha512-HHqYQ6mBeiMc+N038w8LkMpDCRquCHWeNmN3v6645P3NhN2+qXOBqvPqo7Rt1VyCMzKhJ733wZqw5B7cQVFNPg==", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "debug": "^4.1.0", + "json-stringify-safe": "^5.0.1", + "lodash": "^4.17.21", + "propagate": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">= 10.13" } }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "node_modules/node-abi": { + "version": "3.33.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.33.0.tgz", + "integrity": "sha512-7GGVawqyHF4pfd0YFybhv/eM9JwTtPqx0mAanQ146O3FlSh3pA24zf9IRQTOsfTSqXTNzPSP5iagAJ94jjuVog==", "dev": true, "dependencies": { - "is-docker": "^2.0.0" + "semver": "^7.3.5" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "node_modules/node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", "dev": true }, - "node_modules/isbinaryfile": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz", - "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==", + "node_modules/node-addon-api": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", + "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", "dev": true, - "engines": { - "node": ">= 8.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/gjtorikian/" - } - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "devOptional": true + "optional": true }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "node_modules/node-api-version": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/node-api-version/-/node-api-version-0.1.4.tgz", + "integrity": "sha512-KGXihXdUChwJAOHO53bv9/vXcLmdUsZ6jIptbvYvkpKfth+r7jw44JkVxQFA3kX5nQjzjmGu1uAu/xNNLNlI5g==", "dev": true, + "dependencies": { + "semver": "^7.3.5" + } + }, + "node_modules/node-fetch": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", + "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 6.13.0" } }, - "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "node_modules/node-gyp": { + "version": "9.3.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.3.1.tgz", + "integrity": "sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg==", "dev": true, "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^10.0.3", + "nopt": "^6.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" }, "engines": { - "node": ">=8" + "node": "^12.13 || ^14.13 || >=16" } }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/node-gyp-build": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", + "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", "dev": true, "bin": { - "semver": "bin/semver.js" + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" } }, - "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-loader": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/node-loader/-/node-loader-2.0.0.tgz", + "integrity": "sha512-I5VN34NO4/5UYJaUBtkrODPWxbobrE4hgDqPrjB25yPkonFhCmZ146vTH+Zg417E9Iwoh1l/MbRs1apc5J295Q==", "dev": true, "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" + "loader-utils": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - "dev": true, + "node_modules/node-releases": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" + }, + "node_modules/nopt": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", + "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" + "abbrev": "^1.0.0" + }, + "bin": { + "nopt": "bin/nopt.js" }, "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/istanbul-reports": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", - "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, - "engines": { - "node": ">=8" + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" } }, - "node_modules/jake": { - "version": "10.8.5", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", - "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", + "node_modules/normalize-package-data/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, - "dependencies": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.1", - "minimatch": "^3.0.4" - }, "bin": { - "jake": "bin/cli.js" - }, - "engines": { - "node": ">=10" + "semver": "bin/semver" } }, - "node_modules/jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", - "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, - "dependencies": { - "@jest/core": "^27.5.1", - "import-local": "^3.0.2", - "jest-cli": "^27.5.1" - }, - "bin": { - "jest": "bin/jest.js" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "node": ">=0.10.0" } }, - "node_modules/jest-changed-files": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", - "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", "dev": true, - "dependencies": { - "@jest/types": "^27.5.1", - "execa": "^5.0.0", - "throat": "^6.0.1" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-circus": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", - "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", - "dev": true, - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "expect": "^27.5.1", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.3", - "throat": "^6.0.1" - }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-cli": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", - "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "dependencies": { - "@jest/core": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "prompts": "^2.0.1", - "yargs": "^16.2.0" - }, - "bin": { - "jest": "bin/jest.js" + "path-key": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "node": ">=8" } }, - "node_modules/jest-cli/node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, + "node_modules/npmlog": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", + "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", + "devOptional": true, "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/jest-cli/node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" + "boolbase": "^1.0.0" }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nwsapi": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", + "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==", + "dev": true + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/jest-cli/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", "dev": true, "engines": { - "node": ">=10" + "node": ">= 6" } }, - "node_modules/jest-config": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", - "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", "dev": true, "dependencies": { - "@babel/core": "^7.8.0", - "@jest/test-sequencer": "^27.5.1", - "@jest/types": "^27.5.1", - "babel-jest": "^27.5.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.9", - "jest-circus": "^27.5.1", - "jest-environment-jsdom": "^27.5.1", - "jest-environment-node": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-jasmine2": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-runner": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "ts-node": ">=9.0.0" + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "ts-node": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-diff": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", - "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" - }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "devOptional": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.4" } }, - "node_modules/jest-docblock": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", - "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", "dev": true, "dependencies": { - "detect-newline": "^3.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-each": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", - "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "node_modules/object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.4" } }, - "node_modules/jest-environment-jsdom": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", - "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "node_modules/object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", "dev": true, "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1", - "jsdom": "^16.6.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-environment-node": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", - "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.5.tgz", + "integrity": "sha512-yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw==", "dev": true, "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1" + "array.prototype.reduce": "^1.0.5", + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-get-type": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", - "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "node_modules/object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", "dev": true, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "dependencies": { + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-haste-map": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", - "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "node_modules/object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "micromatch": "^4.0.4", - "walker": "^1.0.7" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.4" }, - "optionalDependencies": { - "fsevents": "^2.3.2" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-jasmine2": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", - "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "expect": "^27.5.1", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1", - "throat": "^6.0.1" + "ee-first": "1.1.1" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.8" } }, - "node_modules/jest-leak-detector": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", - "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "dependencies": { - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" + "mimic-fn": "^2.1.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-matcher-utils": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", - "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dev": true, "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-message-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", - "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^27.5.1", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.8.0" } }, - "node_modules/jest-mock": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", - "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*" + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "node_modules/p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-defer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", + "integrity": "sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==", "dev": true, "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" - }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } + "node": ">=4" } }, - "node_modules/jest-regex-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", - "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=4" } }, - "node_modules/jest-resolve": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", - "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "node_modules/p-is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", + "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", "dev": true, - "dependencies": { - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "resolve": "^1.20.0", - "resolve.exports": "^1.1.0", - "slash": "^3.0.0" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=6" } }, - "node_modules/jest-resolve-dependencies": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", - "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-snapshot": "^27.5.1" + "yocto-queue": "^0.1.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-runner": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", - "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, "dependencies": { - "@jest/console": "^27.5.1", - "@jest/environment": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.8.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^27.5.1", - "jest-environment-jsdom": "^27.5.1", - "jest-environment-node": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-leak-detector": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "source-map-support": "^0.5.6", - "throat": "^6.0.1" + "p-limit": "^3.0.2" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-runtime": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", - "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", - "dev": true, - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/globals": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "execa": "^5.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-mock": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "devOptional": true, + "dependencies": { + "aggregate-error": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-serializer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", - "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", "dev": true, "dependencies": { - "@types/node": "*", - "graceful-fs": "^4.2.9" + "@types/retry": "0.12.0", + "retry": "^0.13.1" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=8" } }, - "node_modules/jest-snapshot": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", - "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "node_modules/p-retry/node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", "dev": true, - "dependencies": { - "@babel/core": "^7.7.2", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.0.0", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/babel__traverse": "^7.0.4", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^27.5.1", - "graceful-fs": "^4.2.9", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-util": "^27.5.1", - "natural-compare": "^1.4.0", - "pretty-format": "^27.5.1", - "semver": "^7.3.2" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 4" } }, - "node_modules/jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/packet-reader": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/packet-reader/-/packet-reader-1.0.0.tgz", + "integrity": "sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ==" + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=6" } }, - "node_modules/jest-validate": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", - "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "node_modules/parse-author": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-author/-/parse-author-2.0.0.tgz", + "integrity": "sha512-yx5DfvkN8JsHL2xk2Os9oTia467qnvRgey4ahSm2X8epehBLx/gWLcy5KI+Y36ful5DzGbCS6RazqZGgy1gHNw==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "leven": "^3.1.0", - "pretty-format": "^27.5.1" + "author-regex": "^1.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-watch-typeahead": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", - "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", - "dev": true, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dependencies": { - "ansi-escapes": "^4.3.1", - "chalk": "^4.0.0", - "jest-regex-util": "^28.0.0", - "jest-watcher": "^28.0.0", - "slash": "^4.0.0", - "string-length": "^5.0.1", - "strip-ansi": "^7.0.1" + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=8" }, - "peerDependencies": { - "jest": "^27.0.0 || ^28.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-watch-typeahead/node_modules/@jest/console": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", - "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", "dev": true, "dependencies": { - "@jest/types": "^28.1.3", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^28.1.3", - "jest-util": "^28.1.3", - "slash": "^3.0.0" + "entities": "^4.4.0" }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">= 0.8" } }, - "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", - "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "dev": true + }, + "node_modules/pg": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/pg/-/pg-8.10.0.tgz", + "integrity": "sha512-ke7o7qSTMb47iwzOSaZMfeR7xToFdkE71ifIipOAAaLIM0DYzfOAXlgFFmYUIE2BcJtvnVlGCID84ZzCegE8CQ==", "dependencies": { - "@jest/console": "^28.1.3", - "@jest/types": "^28.1.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" + "buffer-writer": "2.0.0", + "packet-reader": "1.0.0", + "pg-connection-string": "^2.5.0", + "pg-pool": "^3.6.0", + "pg-protocol": "^1.6.0", + "pg-types": "^2.1.0", + "pgpass": "1.x" + }, + "engines": { + "node": ">= 8.0.0" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "peerDependencies": { + "pg-native": ">=3.0.1" + }, + "peerDependenciesMeta": { + "pg-native": { + "optional": true + } } }, - "node_modules/jest-watch-typeahead/node_modules/@jest/types": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", - "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", - "dev": true, + "node_modules/pg-connection-string": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.5.0.tgz", + "integrity": "sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ==" + }, + "node_modules/pg-hstore": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/pg-hstore/-/pg-hstore-2.3.4.tgz", + "integrity": "sha512-N3SGs/Rf+xA1M2/n0JBiXFDVMzdekwLZLAO0g7mpDY9ouX+fDI7jS6kTq3JujmYbtNSJ53TJ0q4G98KVZSM4EA==", "dependencies": { - "@jest/schemas": "^28.1.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" + "underscore": "^1.13.1" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">= 0.8.x" } }, - "node_modules/jest-watch-typeahead/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, + "node_modules/pg-int8": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", + "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=4.0.0" } }, - "node_modules/jest-watch-typeahead/node_modules/emittery": { - "version": "0.10.2", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", - "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" + "node_modules/pg-pool": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.0.tgz", + "integrity": "sha512-clFRf2ksqd+F497kWFyM21tMjeikn60oGDmqMT8UBrynEwVEX/5R5xd2sdvdo1cZCFlguORNpVuqxIj+aK4cfQ==", + "peerDependencies": { + "pg": ">=8.0" } }, - "node_modules/jest-watch-typeahead/node_modules/jest-message-util": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", - "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", - "dev": true, + "node_modules/pg-protocol": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.0.tgz", + "integrity": "sha512-M+PDm637OY5WM307051+bsDia5Xej6d9IR4GwJse1qA1DIhiKlksvrneZOYQq42OM+spubpcNYEo2FcKQrDk+Q==" + }, + "node_modules/pg-types": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", + "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^28.1.3", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^28.1.3", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" + "pg-int8": "1.0.1", + "postgres-array": "~2.0.0", + "postgres-bytea": "~1.0.0", + "postgres-date": "~1.0.4", + "postgres-interval": "^1.1.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">=4" } }, - "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" + "node_modules/pgpass": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", + "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", + "dependencies": { + "split2": "^4.1.0" } }, - "node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { - "version": "28.0.2", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", - "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", - "dev": true, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/jest-watch-typeahead/node_modules/jest-util": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", - "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "dev": true, - "dependencies": { - "@jest/types": "^28.1.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-watch-typeahead/node_modules/jest-watcher": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", - "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", "dev": true, - "dependencies": { - "@jest/test-result": "^28.1.3", - "@jest/types": "^28.1.3", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.10.2", - "jest-util": "^28.1.3", - "string-length": "^4.0.1" - }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">= 6" } }, - "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "dependencies": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" + "find-up": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "dependencies": { - "ansi-regex": "^5.0.1" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/jest-watch-typeahead/node_modules/pretty-format": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", - "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "dependencies": { - "@jest/schemas": "^28.1.3", - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" + "p-locate": "^4.1.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", - "dev": true - }, - "node_modules/jest-watch-typeahead/node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/jest-watch-typeahead/node_modules/string-length": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", - "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "dependencies": { - "char-regex": "^2.0.0", - "strip-ansi": "^7.0.1" + "p-try": "^2.0.0" }, "engines": { - "node": ">=12.20" + "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", - "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==", - "dev": true, - "engines": { - "node": ">=12.20" - } - }, - "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "dependencies": { - "ansi-regex": "^6.0.1" + "p-limit": "^2.2.0" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "node": ">=8" } }, - "node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", "dev": true, - "engines": { - "node": ">=12" + "dependencies": { + "find-up": "^3.0.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "engines": { + "node": ">=8" } }, - "node_modules/jest-watcher": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", - "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, "dependencies": { - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "jest-util": "^27.5.1", - "string-length": "^4.0.1" + "locate-path": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=6" } }, - "node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" }, "engines": { - "node": ">= 10.13.0" + "node": ">=6" } }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "p-try": "^2.0.0" }, "engines": { - "node": ">=10" + "node": ">=6" }, "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/jmespath": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/jmespath/-/jmespath-0.16.0.tgz", - "integrity": "sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==", - "engines": { - "node": ">= 0.6.0" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jquery": { - "version": "3.6.4", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.4.tgz", - "integrity": "sha512-v28EW9DWDFpzcD9O5iyJXg3R3+q+mET5JhnjJzQUZMHOv67bpSIHq81GEYpPNZHG+XXHsfSme3nxp/hndKEcsQ==" - }, - "node_modules/js-beautify": { - "version": "1.14.7", - "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.7.tgz", - "integrity": "sha512-5SOX1KXPFKx+5f6ZrPsIPEY7NwKeQz47n3jm2i+XeHx9MoRsfQenlOP13FQhWvg8JRS0+XLO6XYUQ2GX+q+T9A==", + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, "dependencies": { - "config-chain": "^1.1.13", - "editorconfig": "^0.15.3", - "glob": "^8.0.3", - "nopt": "^6.0.0" - }, - "bin": { - "css-beautify": "js/bin/css-beautify.js", - "html-beautify": "js/bin/html-beautify.js", - "js-beautify": "js/bin/js-beautify.js" + "p-limit": "^2.0.0" }, "engines": { - "node": ">=10" + "node": ">=6" } }, - "node_modules/js-beautify/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dependencies": { - "balanced-match": "^1.0.0" + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" } }, - "node_modules/js-beautify/node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "node_modules/plist": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/plist/-/plist-3.0.6.tgz", + "integrity": "sha512-WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA==", + "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" + "base64-js": "^1.5.1", + "xmlbuilder": "^15.1.1" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=6" } }, - "node_modules/js-beautify/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "node_modules/postcss": { + "version": "8.4.21", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", + "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], "dependencies": { - "brace-expansion": "^2.0.1" + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" }, "engines": { - "node": ">=10" + "node": "^10 || ^12 || >=14" } }, - "node_modules/js-sdsl": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", - "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==", + "node_modules/postcss-attribute-case-insensitive": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/js-sdsl" + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "node_modules/js-tokens": { + "node_modules/postcss-browser-comments": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", + "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "browserslist": ">=4", + "postcss": ">=8" + } }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", "dev": true, "dependencies": { - "argparse": "^2.0.1" + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "peerDependencies": { + "postcss": "^8.2.2" } }, - "node_modules/jsdom": { - "version": "16.7.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", - "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "node_modules/postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", "dev": true, "dependencies": { - "abab": "^2.0.5", - "acorn": "^8.2.4", - "acorn-globals": "^6.0.0", - "cssom": "^0.4.4", - "cssstyle": "^2.3.0", - "data-urls": "^2.0.0", - "decimal.js": "^10.2.1", - "domexception": "^2.0.1", - "escodegen": "^2.0.0", - "form-data": "^3.0.0", - "html-encoding-sniffer": "^2.0.1", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.0", - "parse5": "6.0.1", - "saxes": "^5.0.1", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.0.0", - "w3c-hr-time": "^1.0.2", - "w3c-xmlserializer": "^2.0.0", - "webidl-conversions": "^6.1.0", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.5.0", - "ws": "^7.4.6", - "xml-name-validator": "^3.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=10" + "node": ">=7.6.0" }, "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } + "postcss": "^8.4.6" } }, - "node_modules/jsdom/node_modules/@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "node_modules/postcss-color-functional-notation": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">= 6" + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "node_modules/jsdom/node_modules/form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "node_modules/postcss-color-hex-alpha": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", "dev": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 6" + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/jsdom/node_modules/http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "node_modules/postcss-color-rebeccapurple": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", "dev": true, "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 6" + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "node_modules/jsdom/node_modules/tr46": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", - "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "node_modules/postcss-colormin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", "dev": true, "dependencies": { - "punycode": "^2.1.1" + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=8" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/jsdom/node_modules/whatwg-url": { - "version": "8.7.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", - "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", "dev": true, "dependencies": { - "lodash": "^4.7.0", - "tr46": "^2.1.0", - "webidl-conversions": "^6.1.0" + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=10" - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "bin": { - "jsesc": "bin/jsesc" + "node": "^10 || ^12 || >=14.0" }, - "engines": { - "node": ">=4" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - }, - "node_modules/json-loader": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz", - "integrity": "sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==", - "dev": true - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - }, - "node_modules/json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", - "dev": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" + "node_modules/postcss-custom-media": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=6" - } - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dependencies": { - "universalify": "^2.0.0" + "node": "^12 || ^14 || >=16" }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" } }, - "node_modules/jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", - "engines": [ - "node >= 0.2.0" - ] - }, - "node_modules/jsonpointer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", - "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", + "node_modules/postcss-custom-properties": { + "version": "12.1.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", + "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "node_modules/JSONStream": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", - "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "node_modules/postcss-custom-selectors": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", + "dev": true, "dependencies": { - "jsonparse": "^1.2.0", - "through": ">=2.2.7 <3" - }, - "bin": { - "JSONStream": "bin.js" + "postcss-selector-parser": "^6.0.4" }, "engines": { - "node": "*" + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" } }, - "node_modules/jsx-ast-utils": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", - "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", + "node_modules/postcss-dir-pseudo-class": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", "dev": true, "dependencies": { - "array-includes": "^3.1.5", - "object.assign": "^4.1.3" + "postcss-selector-parser": "^6.0.10" }, "engines": { - "node": ">=4.0" + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "node_modules/junk": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", - "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", + "node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", "dev": true, "engines": { - "node": ">=8" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", - "dependencies": { - "json-buffer": "3.0.1" + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", "dev": true, "engines": { - "node": ">=6" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/klona": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "node_modules/postcss-double-position-gradients": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", "dev": true, + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">= 8" + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "node_modules/language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", - "dev": true - }, - "node_modules/language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "node_modules/postcss-env-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", + "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", "dev": true, "dependencies": { - "language-subtag-registry": "~0.3.2" + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/lazy-val": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/lazy-val/-/lazy-val-1.0.5.tgz", - "integrity": "sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==", - "dev": true - }, - "node_modules/leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "node_modules/postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", "dev": true, - "engines": { - "node": ">=6" + "peerDependencies": { + "postcss": "^8.1.4" } }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "node_modules/postcss-focus-visible": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", + "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", "dev": true, "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" + "postcss-selector-parser": "^6.0.9" }, "engines": { - "node": ">= 0.8.0" + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/license-expressions": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/license-expressions/-/license-expressions-0.6.0.tgz", - "integrity": "sha512-XFvfWNQkiJCzCcPMFBd6y/cehoJwB2esTsUsX5Y7TOlAI3GW0AhExbB7veZANNqRapuh/y4qjxMP8keK3bdczA==", + "node_modules/postcss-focus-within": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", + "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", + "dev": true, "dependencies": { - "spdx-correct": "^3.2.0" + "postcss-selector-parser": "^6.0.9" }, - "bin": { - "spdx": "build/cli/index.js" + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", "dev": true, - "engines": { - "node": ">=10" + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - }, - "node_modules/listr2": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.7.tgz", - "integrity": "sha512-MD+qXHPmtivrHIDRwPYdfNkrzqDiuaKU/rfBcec3WMyMF3xylQj3jMq344OtvQxz7zaCFViRAeqlr2AFhPvXHw==", + "node_modules/postcss-gap-properties": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", "dev": true, - "dependencies": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.19", - "log-update": "^4.0.0", - "p-map": "^4.0.0", - "rfdc": "^1.3.0", - "rxjs": "^7.8.0", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" - }, "engines": { - "node": "^14.13.1 || >=16.0.0" + "node": "^12 || ^14 || >=16" }, - "peerDependencies": { - "enquirer": ">= 2.3.0 < 3" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" }, - "peerDependenciesMeta": { - "enquirer": { - "optional": true - } + "peerDependencies": { + "postcss": "^8.2" } }, - "node_modules/load-json-file": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", - "integrity": "sha512-3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ==", + "node_modules/postcss-image-set-function": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "strip-bom": "^3.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=4" + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "node_modules/load-json-file/node_modules/parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "node_modules/postcss-import": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", + "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", "dev": true, "dependencies": { - "error-ex": "^1.2.0" + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" }, "engines": { - "node": ">=0.10.0" + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" } }, - "node_modules/load-json-file/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "node_modules/postcss-initial": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", + "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", "dev": true, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1" + }, "engines": { - "node": ">=4" + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" } }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "node_modules/postcss-lab-function": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", + "dev": true, + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=6.11.5" + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "node_modules/postcss-load-config": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", + "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "dev": true, "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" + "lilconfig": "^2.0.5", + "yaml": "^1.10.2" }, "engines": { - "node": ">=8.9.0" + "node": ">= 10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } } }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", "dev": true, "dependencies": { - "p-locate": "^5.0.0" + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" }, "engines": { - "node": ">=10" + "node": ">= 12.13.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" } }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", - "dev": true, - "optional": true - }, - "node_modules/lodash.clamp": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/lodash.clamp/-/lodash.clamp-4.0.3.tgz", - "integrity": "sha512-HvzRFWjtcguTW7yd8NJBshuNaCa8aqNFtnswdT7f/cMd/1YKy5Zzoq4W/Oxvnx9l7aeY258uSdDfM793+eLsVg==" - }, - "node_modules/lodash.curry": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz", - "integrity": "sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==" - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - }, - "node_modules/lodash.flow": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz", - "integrity": "sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==" - }, - "node_modules/lodash.get": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", - "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==", - "dev": true - }, - "node_modules/lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", - "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", - "dev": true - }, - "node_modules/lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "node_modules/postcss-logical": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", + "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", "dev": true, - "optional": true, - "dependencies": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "node_modules/postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", + "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", "dev": true, - "optional": true, - "dependencies": { - "lodash._reinterpolate": "^3.0.0" + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/lodash.throttle": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", - "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==" - }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "dev": true - }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", "dev": true, "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" }, "engines": { - "node": ">=10" + "node": "^10 || ^12 || >=14.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/log-update": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", - "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", + "node_modules/postcss-merge-rules": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", "dev": true, "dependencies": { - "ansi-escapes": "^4.3.0", - "cli-cursor": "^3.1.0", - "slice-ansi": "^4.0.0", - "wrap-ansi": "^6.2.0" + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" }, "engines": { - "node": ">=10" + "node": "^10 || ^12 || >=14.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/log-update/node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", "dev": true, "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=10" + "node": "^10 || ^12 || >=14.0" }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/log-update/node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", "dev": true, "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=8" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "dev": true, "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", "dev": true, "dependencies": { - "tslib": "^2.0.3" + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, "engines": { - "node": ">=8" + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", "dev": true, "dependencies": { - "yallist": "^3.0.2" + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/lru-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", - "integrity": "sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==", + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, "dependencies": { - "es5-ext": "~0.10.2" + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/lzma-native": { - "version": "8.0.6", - "resolved": "https://registry.npmjs.org/lzma-native/-/lzma-native-8.0.6.tgz", - "integrity": "sha512-09xfg67mkL2Lz20PrrDeNYZxzeW7ADtpYFbwSQh9U8+76RIzx5QsJBMy8qikv3hbUPfpy6hqwxt6FcGK81g9AA==", + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", "dev": true, - "hasInstallScript": true, "dependencies": { - "node-addon-api": "^3.1.0", - "node-gyp-build": "^4.2.1", - "readable-stream": "^3.6.0" - }, - "bin": { - "lzmajs": "bin/lzmajs" + "icss-utils": "^5.0.0" }, "engines": { - "node": ">=10.0.0" + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/lzma-native/node_modules/node-addon-api": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz", - "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", - "dev": true - }, - "node_modules/magic-string": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", - "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "node_modules/postcss-nested": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz", + "integrity": "sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==", "dev": true, "dependencies": { - "sourcemap-codec": "^1.4.8" + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" } }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "node_modules/postcss-nesting": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", + "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", + "dev": true, "dependencies": { - "semver": "^6.0.0" + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" }, "engines": { - "node": ">=8" + "node": "^12 || ^14 || >=16" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "node_modules/make-fetch-happen": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", - "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", + "node_modules/postcss-normalize": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", + "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", "dev": true, "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^16.1.0", - "http-cache-semantics": "^4.1.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^3.1.6", - "minipass-collect": "^1.0.2", - "minipass-fetch": "^2.0.3", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^9.0.0" + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 12" + }, + "peerDependencies": { + "browserslist": ">= 4", + "postcss": ">= 8" } }, - "node_modules/make-fetch-happen/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", "dev": true, "engines": { - "node": ">=12" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", "dev": true, "dependencies": { - "tmpl": "1.0.5" + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/map-age-cleaner": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", - "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", "dev": true, "dependencies": { - "p-defer": "^1.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=6" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/matcher": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", - "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", - "optional": true, + "node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "dev": true, "dependencies": { - "escape-string-regexp": "^4.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=10" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", - "dev": true - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">= 0.6" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/mem": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", - "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", + "node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", "dev": true, "dependencies": { - "map-age-cleaner": "^0.1.1", - "mimic-fn": "^2.0.0", - "p-is-promise": "^2.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=6" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/memfs": { - "version": "3.4.13", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.13.tgz", - "integrity": "sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==", + "node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", "dev": true, "dependencies": { - "fs-monkey": "^1.0.3" + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 4.0.0" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/memoize-one": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", - "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" - }, - "node_modules/memoizee": { - "version": "0.4.15", - "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.15.tgz", - "integrity": "sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==", + "node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "dev": true, "dependencies": { - "d": "^1.0.1", - "es5-ext": "^0.10.53", - "es6-weak-map": "^2.0.3", - "event-emitter": "^0.3.5", - "is-promise": "^2.2.2", - "lru-queue": "^0.1.0", - "next-tick": "^1.1.0", - "timers-ext": "^0.1.7" + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "dev": true - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">= 8" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "node_modules/postcss-opacity-percentage": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", + "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", "dev": true, + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], "engines": { - "node": ">= 0.6" + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", "dev": true, "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=8.6" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "node_modules/postcss-overflow-shorthand": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", "dev": true, - "bin": { - "mime": "cli.js" + "dependencies": { + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=4.0.0" + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" + "node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "dev": true, + "peerDependencies": { + "postcss": "^8" } }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "node_modules/postcss-place": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", + "dev": true, "dependencies": { - "mime-db": "1.52.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 0.6" + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "node_modules/postcss-preset-env": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", + "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", "dev": true, + "dependencies": { + "@csstools/postcss-cascade-layers": "^1.1.1", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", + "@csstools/postcss-progressive-custom-properties": "^1.3.0", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.13", + "browserslist": "^4.21.4", + "css-blank-pseudo": "^3.0.3", + "css-has-pseudo": "^3.0.4", + "css-prefers-color-scheme": "^6.0.3", + "cssdb": "^7.1.0", + "postcss-attribute-case-insensitive": "^5.0.2", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.10", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", + "postcss-env-function": "^4.0.6", + "postcss-focus-visible": "^6.0.4", + "postcss-focus-within": "^5.0.4", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.2.1", + "postcss-logical": "^5.0.4", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.2.0", + "postcss-opacity-percentage": "^1.1.2", + "postcss-overflow-shorthand": "^3.0.4", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=6" - } - }, - "node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "engines": { - "node": ">=4" + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "node_modules/mini-css-extract-plugin": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.3.tgz", - "integrity": "sha512-CD9cXeKeXLcnMw8FZdtfrRrLaM7gwCl4nKuKn2YkY2Bw5wdlB8zU2cCzw+w2zS9RFvbrufTBkMCJACNPwqQA0w==", + "node_modules/postcss-pseudo-class-any-link": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", "dev": true, "dependencies": { - "schema-utils": "^4.0.0" + "postcss-selector-parser": "^6.0.10" }, "engines": { - "node": ">= 12.13.0" + "node": "^12 || ^14 || >=16" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "webpack": "^5.0.0" + "postcss": "^8.2" } }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true + "node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "*" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.0.3" } }, - "node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/postcss-selector-not": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", + "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", + "dev": true, "dependencies": { - "yallist": "^4.0.0" + "postcss-selector-parser": "^6.0.10" }, "engines": { - "node": ">=8" + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "node_modules/minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "devOptional": true, + "node_modules/postcss-selector-parser": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", + "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", + "dev": true, "dependencies": { - "minipass": "^3.0.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">= 8" + "node": ">=4" } }, - "node_modules/minipass-fetch": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz", - "integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==", + "node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", "dev": true, "dependencies": { - "minipass": "^3.1.6", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": "^10 || ^12 || >=14.0" }, - "optionalDependencies": { - "encoding": "^0.1.13" + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "devOptional": true, + "node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dev": true, "dependencies": { - "minipass": "^3.0.0" + "postcss-selector-parser": "^6.0.5" }, "engines": { - "node": ">= 8" + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "node_modules/minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "devOptional": true, - "dependencies": { - "minipass": "^3.0.0" - }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/postgres-array": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", + "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "devOptional": true, + "node_modules/postgres-bytea": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", + "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-date": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", + "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-interval": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", + "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", "dependencies": { - "minipass": "^3.0.0" + "xtend": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/minipass/node_modules/yallist": { + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-error": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" }, "engines": { - "node": ">= 8" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/minizlib/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/pretty-format/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true }, - "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "bin": { - "mkdirp": "bin/cmd.js" - }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", "engines": { - "node": ">=10" + "node": ">=0.4.0" } }, - "node_modules/mock-aws-s3": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/mock-aws-s3/-/mock-aws-s3-4.0.2.tgz", - "integrity": "sha512-J6g3MMCuKHeuqVEOgvQfRGIfVmg6KKrED48Bux/L9rTY3NPK9TFRh/9bCf5AuzjJm9PIlwhDEO99tD8+smnTyQ==", + "node_modules/promise": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", + "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "dev": true, "dependencies": { - "bluebird": "^3.5.1", - "fs-extra": "^7.0.1", - "underscore": "1.12.1" - }, - "engines": { - "node": ">=10.0.0" + "asap": "~2.0.6" } }, - "node_modules/mock-aws-s3/node_modules/fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "devOptional": true + }, + "node_modules/promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "devOptional": true, "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "err-code": "^2.0.2", + "retry": "^0.12.0" }, "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/mock-aws-s3/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "node": ">=10" } }, - "node_modules/mock-aws-s3/node_modules/underscore": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz", - "integrity": "sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==" - }, - "node_modules/mock-aws-s3/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, "engines": { - "node": ">= 4.0.0" + "node": ">= 6" } }, - "node_modules/moment": { - "version": "2.29.4", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", - "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", - "engines": { - "node": "*" + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" } }, - "node_modules/moment-timezone": { - "version": "0.5.41", - "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.41.tgz", - "integrity": "sha512-e0jGNZDOHfBXJGz8vR/sIMXvBIGJJcqFjmlg9lmE+5KX1U7/RZNMswfD8nKnNCnQdKTIj50IaRKwl1fvMLyyRg==", + "node_modules/prop-types-extra": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", + "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", "dependencies": { - "moment": "^2.29.4" + "react-is": "^16.3.2", + "warning": "^4.0.0" }, + "peerDependencies": { + "react": ">=0.14.0" + } + }, + "node_modules/propagate": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz", + "integrity": "sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==", "engines": { - "node": "*" + "node": ">= 8" } }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" }, - "node_modules/multicast-dns": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", - "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, "dependencies": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" - }, - "bin": { - "multicast-dns": "cli.js" - } - }, - "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", - "dev": true, - "bin": { - "nanoid": "bin/nanoid.cjs" + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": ">= 0.10" } }, - "node_modules/native-ext-loader": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/native-ext-loader/-/native-ext-loader-2.3.0.tgz", - "integrity": "sha512-awBQEfD25+YLi1voefLbjHiUt0yfm3Z4mBOLqbzFVR8ZOVv0MebeN9fhNiY0fxVEFiyBYtr/hF2VWfuMSCfFlw==", - "dev": true + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", "dev": true }, - "node_modules/natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "devOptional": true, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", "engines": { - "node": ">= 0.6" + "node": ">=6" } }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - }, - "node_modules/next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" - }, - "node_modules/nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "dev": true + "node_modules/pure-color": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz", + "integrity": "sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==" }, - "node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "node_modules/pure-rand": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz", + "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==", "dev": true, - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] }, - "node_modules/nock": { - "version": "13.3.0", - "resolved": "https://registry.npmjs.org/nock/-/nock-13.3.0.tgz", - "integrity": "sha512-HHqYQ6mBeiMc+N038w8LkMpDCRquCHWeNmN3v6645P3NhN2+qXOBqvPqo7Rt1VyCMzKhJ733wZqw5B7cQVFNPg==", - "dependencies": { - "debug": "^4.1.0", - "json-stringify-safe": "^5.0.1", - "lodash": "^4.17.21", - "propagate": "^2.0.0" - }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "dev": true, "engines": { - "node": ">= 10.13" + "node": ">=0.6.0", + "teleport": ">=0.2.0" } }, - "node_modules/node-abi": { - "version": "3.33.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.33.0.tgz", - "integrity": "sha512-7GGVawqyHF4pfd0YFybhv/eM9JwTtPqx0mAanQ146O3FlSh3pA24zf9IRQTOsfTSqXTNzPSP5iagAJ94jjuVog==", + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dev": true, "dependencies": { - "semver": "^7.3.5" + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", "engines": { - "node": ">=10" + "node": ">=0.4.x" } }, - "node_modules/node-abort-controller": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", - "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", "dev": true }, - "node_modules/node-addon-api": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", - "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, - "optional": true + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/node-api-version": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/node-api-version/-/node-api-version-0.1.4.tgz", - "integrity": "sha512-KGXihXdUChwJAOHO53bv9/vXcLmdUsZ6jIptbvYvkpKfth+r7jw44JkVxQFA3kX5nQjzjmGu1uAu/xNNLNlI5g==", + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", "dev": true, "dependencies": { - "semver": "^7.3.5" + "performance-now": "^2.1.0" } }, - "node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "safe-buffer": "^5.1.0" } }, - "node_modules/node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "dev": true, "engines": { - "node": ">= 6.13.0" + "node": ">= 0.6" } }, - "node_modules/node-gyp": { - "version": "9.3.1", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.3.1.tgz", - "integrity": "sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg==", + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dev": true, "dependencies": { - "env-paths": "^2.2.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^10.0.3", - "nopt": "^6.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - }, - "bin": { - "node-gyp": "bin/node-gyp.js" + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" }, "engines": { - "node": "^12.13 || ^14.13 || >=16" - } - }, - "node_modules/node-gyp-build": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz", - "integrity": "sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==", - "dev": true, - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" + "node": ">= 0.8" } }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true - }, - "node_modules/node-loader": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/node-loader/-/node-loader-2.0.0.tgz", - "integrity": "sha512-I5VN34NO4/5UYJaUBtkrODPWxbobrE4hgDqPrjB25yPkonFhCmZ146vTH+Zg417E9Iwoh1l/MbRs1apc5J295Q==", - "dev": true, + "node_modules/rc-motion": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rc-motion/-/rc-motion-2.6.3.tgz", + "integrity": "sha512-xFLkes3/7VL/J+ah9jJruEW/Akbx5F6jVa2wG5o/ApGKQKSOd5FR3rseHLL9+xtJg4PmCwo6/1tqhDO/T+jFHA==", "dependencies": { - "loader-utils": "^2.0.0" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-util": "^5.21.0" }, "peerDependencies": { - "webpack": "^5.0.0" + "react": ">=16.9.0", + "react-dom": ">=16.9.0" } }, - "node_modules/node-releases": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", - "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" - }, - "node_modules/nopt": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", - "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", + "node_modules/rc-resize-observer": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/rc-resize-observer/-/rc-resize-observer-1.3.1.tgz", + "integrity": "sha512-iFUdt3NNhflbY3mwySv5CA1TC06zdJ+pfo0oc27xpf4PIOvfZwZGtD9Kz41wGYqC4SLio93RVAirSSpYlV/uYg==", "dependencies": { - "abbrev": "^1.0.0" - }, - "bin": { - "nopt": "bin/nopt.js" + "@babel/runtime": "^7.20.7", + "classnames": "^2.2.1", + "rc-util": "^5.27.0", + "resize-observer-polyfill": "^1.5.1" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" } }, - "node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, + "node_modules/rc-tree": { + "version": "5.7.12", + "resolved": "https://registry.npmjs.org/rc-tree/-/rc-tree-5.7.12.tgz", + "integrity": "sha512-LXA5nY2hG5koIAlHW5sgXgLpOMz+bFRbnZZ+cCg0tQs4Wv1AmY7EDi1SK7iFXhslYockbqUerQan82jljoaItg==", "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/normalize-package-data/node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/normalize-package-data/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.0.1", + "rc-util": "^5.16.1", + "rc-virtual-list": "^3.5.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">=10.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" } }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "node_modules/rc-util": { + "version": "5.37.0", + "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.37.0.tgz", + "integrity": "sha512-cPMV8DzaHI1KDaS7XPRXAf4J7mtBqjvjikLpQieaeOO7+cEbqY2j7Kso/T0R0OiEZTNcLS/8Zl9YrlXiO9UbjQ==", + "dependencies": { + "@babel/runtime": "^7.18.3", + "react-is": "^16.12.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" } }, - "node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "node_modules/rc-virtual-list": { + "version": "3.11.2", + "resolved": "https://registry.npmjs.org/rc-virtual-list/-/rc-virtual-list-3.11.2.tgz", + "integrity": "sha512-MTFLL2LOHr3+/+r+WjTIs6j8XmJE6EqdOsJvCH8SWig7qyik3aljCEImUtw5tdWR0tQhXUfbv7P7nZaLY91XPg==", + "dependencies": { + "@babel/runtime": "^7.20.0", + "classnames": "^2.2.6", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.36.0" + }, "engines": { - "node": ">=10" + "node": ">=8.x" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "react": "*", + "react-dom": "*" } }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "node_modules/rcedit": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/rcedit/-/rcedit-3.0.1.tgz", + "integrity": "sha512-XM0Jv40/y4hVAqj/MO70o/IWs4uOsaSoo2mLyk3klFDW+SStLnCtzuQu+1OBTIMGlM8CvaK9ftlYCp6DJ+cMsw==", "dev": true, "dependencies": { - "path-key": "^3.0.0" + "cross-spawn-windows-exe": "^1.1.0" }, "engines": { - "node": ">=8" + "node": ">= 10.0.0" } }, - "node_modules/npmlog": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", - "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", - "devOptional": true, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", "dependencies": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.3", - "set-blocking": "^2.0.0" + "loose-envify": "^1.1.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=0.10.0" } }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "node_modules/react-app-polyfill": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", + "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", "dev": true, "dependencies": { - "boolbase": "^1.0.0" + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" + "engines": { + "node": ">=14" } }, - "node_modules/nwsapi": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz", - "integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==", - "dev": true - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "engines": { - "node": ">=0.10.0" + "node_modules/react-base16-styling": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.6.0.tgz", + "integrity": "sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==", + "dependencies": { + "base16": "^1.0.0", + "lodash.curry": "^4.0.1", + "lodash.flow": "^3.3.0", + "pure-color": "^1.2.0" } }, - "node_modules/object-hash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", - "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", - "dev": true, - "engines": { - "node": ">= 6" + "node_modules/react-bootstrap": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.7.2.tgz", + "integrity": "sha512-WDSln+mG4RLLFO01stkj2bEx/3MF4YihK9D/dWnHaSxOiQZLbhhlf95D2Jb20X3t2m7vMxRe888FVrfLJoGmmA==", + "dependencies": { + "@babel/runtime": "^7.17.2", + "@restart/hooks": "^0.4.6", + "@restart/ui": "^1.4.1", + "@types/react-transition-group": "^4.4.4", + "classnames": "^2.3.1", + "dom-helpers": "^5.2.1", + "invariant": "^2.2.4", + "prop-types": "^15.8.1", + "prop-types-extra": "^1.1.0", + "react-transition-group": "^4.4.2", + "uncontrollable": "^7.2.1", + "warning": "^4.0.3" + }, + "peerDependencies": { + "@types/react": ">=16.14.8", + "react": ">=16.14.0", + "react-dom": ">=16.14.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/react-chartjs-2": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/react-chartjs-2/-/react-chartjs-2-5.2.0.tgz", + "integrity": "sha512-98iN5aguJyVSxp5U3CblRLH67J8gkfyGNbiK3c+l1QI/G4irHMPQw44aEPmjVag+YKTyQ260NcF82GTQ3bdscA==", + "peerDependencies": { + "chart.js": "^4.1.1", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "node_modules/react-dev-utils": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=14" } }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "devOptional": true, + "node_modules/react-dev-utils/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, "engines": { - "node": ">= 0.4" + "node": ">=8" } }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "node_modules/react-dev-utils/node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", + "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10", + "yarn": ">=1.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "eslint": ">= 6", + "typescript": ">= 2.7", + "vue-template-compiler": "*", + "webpack": ">= 4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } } }, - "node_modules/object.entries": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "node_modules/react-dev-utils/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" } }, - "node_modules/object.fromentries": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 12.13.0" } }, - "node_modules/object.getownpropertydescriptors": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.5.tgz", - "integrity": "sha512-yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw==", + "node_modules/react-dev-utils/node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", "dev": true, "dependencies": { - "array.prototype.reduce": "^1.0.5", - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" }, "engines": { - "node": ">= 0.8" + "node": ">= 8.9.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/object.hasown": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", - "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "node_modules/react-dev-utils/node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", "dev": true, - "dependencies": { - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=6" } }, - "node_modules/object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", - "dev": true, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "react": "^18.2.0" } }, - "node_modules/obuf": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "node_modules/react-error-overlay": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", + "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==", "dev": true }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "node_modules/react-loader-spinner": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/react-loader-spinner/-/react-loader-spinner-5.3.4.tgz", + "integrity": "sha512-G2vw4ssX+RDZ/vfaeva06yfNqyFViv/u+tVZ3kFLy5TKNlNx2DbuwreBSpRtPespQA+VxinxUJsigwLwG9erOg==", "dependencies": { - "ee-first": "1.1.1" + "react-is": "^18.2.0", + "styled-components": "^5.3.5", + "styled-tools": "^1.7.2" }, - "engines": { - "node": ">= 0.8" + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "dev": true, - "engines": { - "node": ">= 0.8" - } + "node_modules/react-loader-spinner/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "node_modules/react-pro-sidebar": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/react-pro-sidebar/-/react-pro-sidebar-0.7.1.tgz", + "integrity": "sha512-Iy1X8ce4t5Vqz4CsyzjwokGUE3/IObgmYzS0ins7/2eWKle0SMUPaWdgMKFIVjtVrMr5vmjPbRicq8FxnVaf8A==", "dependencies": { - "wrappy": "1" + "@popperjs/core": "^2.4.0", + "classnames": "^2.2.6", + "react-slidedown": "^2.4.5", + "resize-observer-polyfill": "^1.5.1" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" } }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, + "node_modules/react-pro-sidebar/node_modules/react-slidedown": { + "version": "2.4.7", + "resolved": "https://registry.npmjs.org/react-slidedown/-/react-slidedown-2.4.7.tgz", + "integrity": "sha512-HGDfrqo70r1WVE0DwrySPdCT27/2wcZaJYh5kOnmuPSCtjDDJrNkDdn4Ep/cma2VVfwupeAGhbc2pbrGThU6VQ==", "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" + "tslib": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "react": "^16.3.0 || 17", + "react-dom": "^16.3.0 || 17" } }, - "node_modules/open": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "node_modules/react-refresh": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", + "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-router": { + "version": "6.8.2", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.8.2.tgz", + "integrity": "sha512-lF7S0UmXI5Pd8bmHvMdPKI4u4S5McxmHnzJhrYi9ZQ6wE+DA8JN5BzVC5EEBuduWWDaiJ8u6YhVOCmThBli+rw==", "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" + "@remix-run/router": "1.3.3" }, "engines": { - "node": ">=12" + "node": ">=14" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "react": ">=16.8" } }, - "node_modules/optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "dev": true, + "node_modules/react-router-dom": { + "version": "6.8.2", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.8.2.tgz", + "integrity": "sha512-N/oAF1Shd7g4tWy+75IIufCGsHBqT74tnzHQhbiUTYILYF0Blk65cg+HPZqwC+6SqEyx033nKqU7by38v3lBZg==", "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" + "@remix-run/router": "1.3.3", + "react-router": "6.8.2" }, "engines": { - "node": ">= 0.8.0" + "node": ">=14" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" } }, - "node_modules/ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "node_modules/react-scripts": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", + "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", "dev": true, "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", + "@svgr/webpack": "^5.5.0", + "babel-jest": "^27.4.2", + "babel-loader": "^8.2.3", + "babel-plugin-named-asset-import": "^0.3.8", + "babel-preset-react-app": "^10.0.1", + "bfj": "^7.0.2", + "browserslist": "^4.18.1", + "camelcase": "^6.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.5.1", + "css-minimizer-webpack-plugin": "^3.2.0", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "eslint": "^8.3.0", + "eslint-config-react-app": "^7.0.1", + "eslint-webpack-plugin": "^3.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "html-webpack-plugin": "^5.5.0", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.4.3", + "jest-resolve": "^27.4.2", + "jest-watch-typeahead": "^1.0.0", + "mini-css-extract-plugin": "^2.4.5", + "postcss": "^8.4.4", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^6.2.1", + "postcss-normalize": "^10.0.1", + "postcss-preset-env": "^7.0.1", + "prompts": "^2.4.2", + "react-app-polyfill": "^3.0.0", + "react-dev-utils": "^12.0.1", + "react-refresh": "^0.11.0", + "resolve": "^1.20.0", + "resolve-url-loader": "^4.0.0", + "sass-loader": "^12.3.0", + "semver": "^7.3.5", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.1", + "tailwindcss": "^3.0.2", + "terser-webpack-plugin": "^5.2.5", + "webpack": "^5.64.4", + "webpack-dev-server": "^4.6.0", + "webpack-manifest-plugin": "^4.0.2", + "workbox-webpack-plugin": "^6.4.1" }, - "engines": { - "node": ">=10" + "bin": { + "react-scripts": "bin/react-scripts.js" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-cancelable": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", - "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/p-defer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", - "integrity": "sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/p-is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", - "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", - "dev": true, "engines": { - "node": ">=6" + "node": ">=14.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + }, + "peerDependencies": { + "react": ">= 16", + "typescript": "^3.2.1 || ^4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/react-scripts/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/react-scripts/node_modules/@jest/console/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "p-limit": "^3.0.2" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "devOptional": true, + "node_modules/react-scripts/node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, "dependencies": { - "aggregate-error": "^3.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/p-retry": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", - "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "node_modules/react-scripts/node_modules/@jest/console/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "@types/retry": "0.12.0", - "retry": "^0.13.1" + "color-name": "~1.1.4" }, "engines": { - "node": ">=8" + "node": ">=7.0.0" } }, - "node_modules/p-retry/node_modules/retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", - "dev": true, - "engines": { - "node": ">= 4" - } + "node_modules/react-scripts/node_modules/@jest/console/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "node_modules/react-scripts/node_modules/@jest/console/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/packet-reader": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/packet-reader/-/packet-reader-1.0.0.tgz", - "integrity": "sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ==" - }, - "node_modules/param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "node_modules/react-scripts/node_modules/@jest/console/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dependencies": { - "callsites": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/parse-author": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/parse-author/-/parse-author-2.0.0.tgz", - "integrity": "sha512-yx5DfvkN8JsHL2xk2Os9oTia467qnvRgey4ahSm2X8epehBLx/gWLcy5KI+Y36ful5DzGbCS6RazqZGgy1gHNw==", + "node_modules/react-scripts/node_modules/@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", "dev": true, "dependencies": { - "author-regex": "^1.0.0" + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "node_modules/react-scripts/node_modules/@jest/core/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" + "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/parse-passwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "node_modules/react-scripts/node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "node_modules/react-scripts/node_modules/@jest/core/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, "engines": { - "node": ">= 0.8" + "node": ">=7.0.0" } }, - "node_modules/pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } + "node_modules/react-scripts/node_modules/@jest/core/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, - "node_modules/path-exists": { + "node_modules/react-scripts/node_modules/@jest/core/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "node_modules/react-scripts/node_modules/@jest/core/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "node_modules/react-scripts/node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", "dev": true, + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, "engines": { - "node": ">=8" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "dev": true - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "node_modules/react-scripts/node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, "engines": { - "node": ">=8" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", - "dev": true + "node_modules/react-scripts/node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "node_modules/pg": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/pg/-/pg-8.10.0.tgz", - "integrity": "sha512-ke7o7qSTMb47iwzOSaZMfeR7xToFdkE71ifIipOAAaLIM0DYzfOAXlgFFmYUIE2BcJtvnVlGCID84ZzCegE8CQ==", + "node_modules/react-scripts/node_modules/@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "dev": true, "dependencies": { - "buffer-writer": "2.0.0", - "packet-reader": "1.0.0", - "pg-connection-string": "^2.5.0", - "pg-pool": "^3.6.0", - "pg-protocol": "^1.6.0", - "pg-types": "^2.1.0", - "pgpass": "1.x" + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" }, "engines": { - "node": ">= 8.0.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { - "pg-native": ">=3.0.1" + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" }, "peerDependenciesMeta": { - "pg-native": { + "node-notifier": { "optional": true } } }, - "node_modules/pg-connection-string": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.5.0.tgz", - "integrity": "sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ==" - }, - "node_modules/pg-hstore": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/pg-hstore/-/pg-hstore-2.3.4.tgz", - "integrity": "sha512-N3SGs/Rf+xA1M2/n0JBiXFDVMzdekwLZLAO0g7mpDY9ouX+fDI7jS6kTq3JujmYbtNSJ53TJ0q4G98KVZSM4EA==", + "node_modules/react-scripts/node_modules/@jest/reporters/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, "dependencies": { - "underscore": "^1.13.1" + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 0.8.x" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/pg-int8": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", - "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", + "node_modules/react-scripts/node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">=4.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/pg-pool": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.0.tgz", - "integrity": "sha512-clFRf2ksqd+F497kWFyM21tMjeikn60oGDmqMT8UBrynEwVEX/5R5xd2sdvdo1cZCFlguORNpVuqxIj+aK4cfQ==", - "peerDependencies": { - "pg": ">=8.0" + "node_modules/react-scripts/node_modules/@jest/reporters/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/pg-protocol": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.0.tgz", - "integrity": "sha512-M+PDm637OY5WM307051+bsDia5Xej6d9IR4GwJse1qA1DIhiKlksvrneZOYQq42OM+spubpcNYEo2FcKQrDk+Q==" + "node_modules/react-scripts/node_modules/@jest/reporters/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, - "node_modules/pg-types": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", - "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", - "dependencies": { - "pg-int8": "1.0.1", - "postgres-array": "~2.0.0", - "postgres-bytea": "~1.0.0", - "postgres-date": "~1.0.4", - "postgres-interval": "^1.1.0" - }, + "node_modules/react-scripts/node_modules/@jest/reporters/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/pgpass": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", - "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", + "node_modules/react-scripts/node_modules/@jest/reporters/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, "dependencies": { - "split2": "^4.1.0" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "engines": { - "node": ">=8.6" + "node_modules/react-scripts/node_modules/@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.24.1" }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "node_modules/react-scripts/node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", "dev": true, + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, "engines": { - "node": ">=0.10.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "node_modules/react-scripts/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, "engines": { - "node": ">= 6" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "node_modules/react-scripts/node_modules/@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", "dev": true, "dependencies": { - "find-up": "^4.0.0" + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" }, "engines": { - "node": ">=8" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/react-scripts/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", "dev": true, "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" }, "engines": { - "node": ">=8" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "node_modules/react-scripts/node_modules/@jest/transform/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "p-locate": "^4.1.0" + "color-convert": "^2.0.1" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/react-scripts/node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "p-try": "^2.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=6" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "node_modules/react-scripts/node_modules/@jest/transform/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "p-limit": "^2.2.0" + "color-name": "~1.1.4" }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/react-scripts/node_modules/@jest/transform/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/@jest/transform/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, "engines": { "node": ">=8" } }, - "node_modules/pkg-up": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", - "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "node_modules/react-scripts/node_modules/@jest/transform/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "find-up": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/pkg-up/node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "node_modules/react-scripts/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, "dependencies": { - "locate-path": "^3.0.0" + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, "engines": { - "node": ">=6" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/pkg-up/node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "node_modules/react-scripts/node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=6" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/pkg-up/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/react-scripts/node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "p-try": "^2.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=6" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/pkg-up/node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "node_modules/react-scripts/node_modules/@jest/types/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "p-limit": "^2.0.0" + "color-name": "~1.1.4" }, "engines": { - "node": ">=6" + "node": ">=7.0.0" } }, - "node_modules/pkg-up/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "node_modules/react-scripts/node_modules/@jest/types/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/plist": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/plist/-/plist-3.0.6.tgz", - "integrity": "sha512-WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA==", + "node_modules/react-scripts/node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "base64-js": "^1.5.1", - "xmlbuilder": "^15.1.1" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "node_modules/react-scripts/node_modules/@sinclair/typebox": { + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - } - ], "dependencies": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "type-detect": "4.0.8" + } + }, + "node_modules/react-scripts/node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/react-scripts/node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/react-scripts/node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "dev": true, + "engines": { + "node": ">=10" }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/react-scripts/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "dev": true, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/postcss-attribute-case-insensitive": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", - "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", + "node_modules/react-scripts/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.10" - }, "engines": { - "node": "^12 || ^14 || >=16" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/postcss-browser-comments": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", - "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", + "node_modules/react-scripts/node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", "dev": true, "engines": { - "node": ">=8" + "node": ">=10" }, - "peerDependencies": { - "browserslist": ">=4", - "postcss": ">=8" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/postcss-calc": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", - "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "node_modules/react-scripts/node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.9", - "postcss-value-parser": "^4.2.0" + "engines": { + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.2.2" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/postcss-clamp": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", - "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "node_modules/react-scripts/node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, "engines": { - "node": ">=7.6.0" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.4.6" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/postcss-color-functional-notation": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", - "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", + "node_modules/react-scripts/node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", "dev": true, - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, "engines": { - "node": "^12 || ^14 || >=16" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/postcss-color-hex-alpha": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", - "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", + "node_modules/react-scripts/node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" }, "engines": { - "node": "^12 || ^14 || >=16" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.4" + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/postcss-color-rebeccapurple": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", - "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", + "node_modules/react-scripts/node_modules/@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" }, "engines": { - "node": "^12 || ^14 || >=16" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/postcss-colormin": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", - "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "node_modules/react-scripts/node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" + "@babel/types": "^7.12.6" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/postcss-convert-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", - "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "node_modules/react-scripts/node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/postcss-custom-media": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", - "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "node_modules/react-scripts/node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" }, "engines": { - "node": "^12 || ^14 || >=16" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.3" + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/postcss-custom-properties": { - "version": "12.1.11", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz", - "integrity": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==", + "node_modules/react-scripts/node_modules/@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" }, "engines": { - "node": "^12 || ^14 || >=16" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/postcss-custom-selectors": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", - "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", + "node_modules/react-scripts/node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.4" - }, "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.3" + "node": ">= 6" + } + }, + "node_modules/react-scripts/node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" } }, - "node_modules/postcss-dir-pseudo-class": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", - "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", + "node_modules/react-scripts/node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.10" + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/react-scripts/node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" }, "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" + "node": ">=0.4.0" } }, - "node_modules/postcss-discard-comments": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", - "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "node_modules/react-scripts/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, - "engines": { - "node": "^10 || ^12 || >=14.0" + "dependencies": { + "color-convert": "^1.9.0" }, - "peerDependencies": { - "postcss": "^8.2.15" + "engines": { + "node": ">=4" } }, - "node_modules/postcss-discard-duplicates": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "node_modules/react-scripts/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "dependencies": { + "sprintf-js": "~1.0.2" } }, - "node_modules/postcss-discard-empty": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", - "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "node_modules/react-scripts/node_modules/babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", "dev": true, + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "@babel/core": "^7.8.0" } }, - "node_modules/postcss-discard-overridden": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", - "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "node_modules/react-scripts/node_modules/babel-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=8" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/postcss-double-position-gradients": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", - "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", + "node_modules/react-scripts/node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^1.1.0", - "postcss-value-parser": "^4.2.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^12 || ^14 || >=16" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/postcss-env-function": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", - "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", + "node_modules/react-scripts/node_modules/babel-jest/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "color-name": "~1.1.4" }, "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=7.0.0" } }, - "node_modules/postcss-flexbugs-fixes": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", - "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "node_modules/react-scripts/node_modules/babel-jest/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/babel-jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "peerDependencies": { - "postcss": "^8.1.4" + "engines": { + "node": ">=8" } }, - "node_modules/postcss-focus-visible": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", - "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", + "node_modules/react-scripts/node_modules/babel-jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.9" + "has-flag": "^4.0.0" }, "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=8" } }, - "node_modules/postcss-focus-within": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", - "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", + "node_modules/react-scripts/node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.9" + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" }, "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-font-variant": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", - "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", - "dev": true, - "peerDependencies": { - "postcss": "^8.1.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/postcss-gap-properties": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", - "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", + "node_modules/react-scripts/node_modules/babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", "dev": true, - "engines": { - "node": "^12 || ^14 || >=16" + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { - "postcss": "^8.2" + "@babel/core": "^7.0.0" } }, - "node_modules/postcss-image-set-function": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", - "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", + "node_modules/react-scripts/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" + "node": ">=4" } }, - "node_modules/postcss-import": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", - "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", + "node_modules/react-scripts/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - }, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "postcss": "^8.0.0" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, - "node_modules/postcss-initial": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", - "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", + "node_modules/react-scripts/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, - "peerDependencies": { - "postcss": "^8.0.0" + "dependencies": { + "color-name": "1.1.3" } }, - "node_modules/postcss-js": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", - "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "node_modules/react-scripts/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/react-scripts/node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", "dev": true, "dependencies": { - "camelcase-css": "^2.0.1" - }, - "engines": { - "node": "^12 || ^14 || >= 16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.4.21" + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" } }, - "node_modules/postcss-lab-function": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", - "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", + "node_modules/react-scripts/node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", "dev": true, "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^1.1.0", - "postcss-value-parser": "^4.2.0" + "mdn-data": "2.0.4", + "source-map": "^0.6.1" }, "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" + "node": ">=8.0.0" } }, - "node_modules/postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "node_modules/react-scripts/node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", "dev": true, - "dependencies": { - "lilconfig": "^2.0.5", - "yaml": "^1.10.2" - }, "engines": { - "node": ">= 10" + "node": ">= 6" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": ">=8.0.9", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - }, - "ts-node": { - "optional": true - } + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/postcss-loader": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", - "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "node_modules/react-scripts/node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true + }, + "node_modules/react-scripts/node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", "dev": true, "dependencies": { - "cosmiconfig": "^7.0.0", - "klona": "^2.0.5", - "semver": "^7.3.5" + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "postcss": "^7.0.0 || ^8.0.1", - "webpack": "^5.0.0" + "node": ">=10" } }, - "node_modules/postcss-logical": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", - "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", + "node_modules/react-scripts/node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", "dev": true, "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/postcss-media-minmax": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", - "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", + "node_modules/react-scripts/node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", "dev": true, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" } }, - "node_modules/postcss-merge-longhand": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", - "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "node_modules/react-scripts/node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^5.1.1" + "webidl-conversions": "^5.0.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=8" } }, - "node_modules/postcss-merge-rules": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", - "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "node_modules/react-scripts/node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.1.0", - "postcss-selector-parser": "^6.0.5" - }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=8" } }, - "node_modules/postcss-minify-font-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", - "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "node_modules/react-scripts/node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" - }, + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/react-scripts/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + }, + "node_modules/react-scripts/node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "dev": true, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, - "node_modules/postcss-minify-gradients": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", - "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "node_modules/react-scripts/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/react-scripts/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, - "dependencies": { - "colord": "^2.9.1", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=0.8.0" } }, - "node_modules/postcss-minify-params": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", - "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "node_modules/react-scripts/node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/postcss-minify-selectors": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", - "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "node_modules/react-scripts/node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.5" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">= 6" } }, - "node_modules/postcss-modules-extract-imports": { + "node_modules/react-scripts/node_modules/has-flag": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">=4" } }, - "node_modules/postcss-modules-local-by-default": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", - "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "node_modules/react-scripts/node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", "dev": true, "dependencies": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" + "whatwg-encoding": "^1.0.5" }, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">=10" } }, - "node_modules/postcss-modules-scope": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "node_modules/react-scripts/node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.4" + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" }, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">= 6" } }, - "node_modules/postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "node_modules/react-scripts/node_modules/jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", "dev": true, "dependencies": { - "icss-utils": "^5.0.0" + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" }, "engines": { - "node": "^10 || ^12 || >= 14" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { - "postcss": "^8.1.0" + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/postcss-nested": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz", - "integrity": "sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==", + "node_modules/react-scripts/node_modules/jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.10" + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" }, "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.14" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/postcss-nesting": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz", - "integrity": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==", + "node_modules/react-scripts/node_modules/jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", "dev": true, "dependencies": { - "@csstools/selector-specificity": "^2.0.0", - "postcss-selector-parser": "^6.0.10" + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" }, "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/postcss-normalize": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", - "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", + "node_modules/react-scripts/node_modules/jest-circus/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "@csstools/normalize.css": "*", - "postcss-browser-comments": "^4", - "sanitize.css": "*" + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 12" + "node": ">=8" }, - "peerDependencies": { - "browserslist": ">= 4", - "postcss": ">= 8" + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/postcss-normalize-charset": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", - "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "node_modules/react-scripts/node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/postcss-normalize-display-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", - "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "node_modules/react-scripts/node_modules/jest-circus/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "color-name": "~1.1.4" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=7.0.0" } }, - "node_modules/postcss-normalize-positions": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", - "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "node_modules/react-scripts/node_modules/jest-circus/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/jest-circus/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "has-flag": "^4.0.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=8" } }, - "node_modules/postcss-normalize-repeat-style": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", - "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "node_modules/react-scripts/node_modules/jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/postcss-normalize-string": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", - "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "node_modules/react-scripts/node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "color-convert": "^2.0.1" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=8" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/postcss-normalize-timing-functions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", - "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "node_modules/react-scripts/node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/postcss-normalize-unicode": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", - "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "node_modules/react-scripts/node_modules/jest-cli/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" + "color-name": "~1.1.4" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=7.0.0" } }, - "node_modules/postcss-normalize-url": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", - "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "node_modules/react-scripts/node_modules/jest-cli/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/jest-cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "normalize-url": "^6.0.1", - "postcss-value-parser": "^4.2.0" - }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=8" } }, - "node_modules/postcss-normalize-whitespace": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", - "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "node_modules/react-scripts/node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "has-flag": "^4.0.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=8" } }, - "node_modules/postcss-opacity-percentage": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz", - "integrity": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==", + "node_modules/react-scripts/node_modules/jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", "dev": true, - "funding": [ - { - "type": "kofi", - "url": "https://ko-fi.com/mrcgrtz" - }, - { - "type": "liberapay", - "url": "https://liberapay.com/mrcgrtz" - } - ], + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, "engines": { - "node": "^12 || ^14 || >=16" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, "peerDependencies": { - "postcss": "^8.2" + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } } }, - "node_modules/postcss-ordered-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", - "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "node_modules/react-scripts/node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" + "color-convert": "^2.0.1" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=8" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/postcss-overflow-shorthand": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", - "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", + "node_modules/react-scripts/node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^12 || ^14 || >=16" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/react-scripts/node_modules/jest-config/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" }, - "peerDependencies": { - "postcss": "^8.2" + "engines": { + "node": ">=7.0.0" } }, - "node_modules/postcss-page-break": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", - "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "node_modules/react-scripts/node_modules/jest-config/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "peerDependencies": { - "postcss": "^8" + "engines": { + "node": ">=8" } }, - "node_modules/postcss-place": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", - "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", + "node_modules/react-scripts/node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "has-flag": "^4.0.0" }, "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" }, - "peerDependencies": { - "postcss": "^8.2" + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/postcss-preset-env": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz", - "integrity": "sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==", + "node_modules/react-scripts/node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "@csstools/postcss-cascade-layers": "^1.1.1", - "@csstools/postcss-color-function": "^1.1.1", - "@csstools/postcss-font-format-keywords": "^1.0.1", - "@csstools/postcss-hwb-function": "^1.0.2", - "@csstools/postcss-ic-unit": "^1.0.1", - "@csstools/postcss-is-pseudo-class": "^2.0.7", - "@csstools/postcss-nested-calc": "^1.0.0", - "@csstools/postcss-normalize-display-values": "^1.0.1", - "@csstools/postcss-oklab-function": "^1.1.1", - "@csstools/postcss-progressive-custom-properties": "^1.3.0", - "@csstools/postcss-stepped-value-functions": "^1.0.1", - "@csstools/postcss-text-decoration-shorthand": "^1.0.0", - "@csstools/postcss-trigonometric-functions": "^1.0.2", - "@csstools/postcss-unset-value": "^1.0.2", - "autoprefixer": "^10.4.13", - "browserslist": "^4.21.4", - "css-blank-pseudo": "^3.0.3", - "css-has-pseudo": "^3.0.4", - "css-prefers-color-scheme": "^6.0.3", - "cssdb": "^7.1.0", - "postcss-attribute-case-insensitive": "^5.0.2", - "postcss-clamp": "^4.1.0", - "postcss-color-functional-notation": "^4.2.4", - "postcss-color-hex-alpha": "^8.0.4", - "postcss-color-rebeccapurple": "^7.1.1", - "postcss-custom-media": "^8.0.2", - "postcss-custom-properties": "^12.1.10", - "postcss-custom-selectors": "^6.0.3", - "postcss-dir-pseudo-class": "^6.0.5", - "postcss-double-position-gradients": "^3.1.2", - "postcss-env-function": "^4.0.6", - "postcss-focus-visible": "^6.0.4", - "postcss-focus-within": "^5.0.4", - "postcss-font-variant": "^5.0.0", - "postcss-gap-properties": "^3.0.5", - "postcss-image-set-function": "^4.0.7", - "postcss-initial": "^4.0.1", - "postcss-lab-function": "^4.2.1", - "postcss-logical": "^5.0.4", - "postcss-media-minmax": "^5.0.0", - "postcss-nesting": "^10.2.0", - "postcss-opacity-percentage": "^1.1.2", - "postcss-overflow-shorthand": "^3.0.4", - "postcss-page-break": "^3.0.4", - "postcss-place": "^7.0.5", - "postcss-pseudo-class-any-link": "^7.1.6", - "postcss-replace-overflow-wrap": "^4.0.0", - "postcss-selector-not": "^6.0.1", - "postcss-value-parser": "^4.2.0" + "color-convert": "^2.0.1" }, "engines": { - "node": "^12 || ^14 || >=16" + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/postcss-pseudo-class-any-link": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", - "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", + "node_modules/react-scripts/node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.10" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^12 || ^14 || >=16" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/postcss-reduce-initial": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", - "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "node_modules/react-scripts/node_modules/jest-diff/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0" + "color-name": "~1.1.4" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=7.0.0" } }, - "node_modules/postcss-reduce-transforms": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", - "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "node_modules/react-scripts/node_modules/jest-diff/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "has-flag": "^4.0.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" }, - "peerDependencies": { - "postcss": "^8.2.15" + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/postcss-replace-overflow-wrap": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", - "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "node_modules/react-scripts/node_modules/jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", "dev": true, - "peerDependencies": { - "postcss": "^8.0.3" + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/postcss-selector-not": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", - "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", + "node_modules/react-scripts/node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.10" + "color-convert": "^2.0.1" }, "engines": { - "node": "^12 || ^14 || >=16" + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/postcss-selector-parser": { - "version": "6.0.11", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", - "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", + "node_modules/react-scripts/node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/postcss-svgo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", - "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "node_modules/react-scripts/node_modules/jest-each/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0", - "svgo": "^2.7.0" + "color-name": "~1.1.4" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=7.0.0" } }, - "node_modules/postcss-unique-selectors": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", - "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "node_modules/react-scripts/node_modules/jest-each/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.5" + "has-flag": "^4.0.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" }, - "peerDependencies": { - "postcss": "^8.2.15" + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + "node_modules/react-scripts/node_modules/jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "node_modules/postgres-array": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", - "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", + "node_modules/react-scripts/node_modules/jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "dev": true, + "dependencies": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, "engines": { - "node": ">=4" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/postgres-bytea": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", - "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", + "node_modules/react-scripts/node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, "engines": { - "node": ">=0.10.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/postgres-date": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", - "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", + "node_modules/react-scripts/node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/postgres-interval": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", - "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", + "node_modules/react-scripts/node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, "dependencies": { - "xtend": "^4.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "node_modules/react-scripts/node_modules/jest-matcher-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, "engines": { - "node": ">= 0.8.0" + "node": ">=7.0.0" } }, - "node_modules/pretty-bytes": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "node_modules/react-scripts/node_modules/jest-matcher-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/jest-matcher-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/pretty-error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", - "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "node_modules/react-scripts/node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "lodash": "^4.17.20", - "renderkid": "^3.0.0" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/pretty-format": { + "node_modules/react-scripts/node_modules/jest-message-util": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", - "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", "dev": true, "dependencies": { - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/react-scripts/node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/pretty-format/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "dev": true - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "node_modules/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/promise": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.3.0.tgz", - "integrity": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==", + "node_modules/react-scripts/node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "asap": "~2.0.6" - } - }, - "node_modules/promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", - "devOptional": true - }, - "node_modules/promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", - "devOptional": true, - "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "node_modules/react-scripts/node_modules/jest-message-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" + "color-name": "~1.1.4" }, "engines": { - "node": ">= 6" + "node": ">=7.0.0" } }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" + "node_modules/react-scripts/node_modules/jest-message-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/jest-message-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" } }, - "node_modules/prop-types-extra": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", - "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", + "node_modules/react-scripts/node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, "dependencies": { - "react-is": "^16.3.2", - "warning": "^4.0.0" + "has-flag": "^4.0.0" }, - "peerDependencies": { - "react": ">=0.14.0" - } - }, - "node_modules/propagate": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz", - "integrity": "sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==", "engines": { - "node": ">= 8" + "node": ">=8" } }, - "node_modules/proto-list": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "node_modules/react-scripts/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", "dev": true, "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" + "@jest/types": "^27.5.1", + "@types/node": "*" }, "engines": { - "node": ">= 0.10" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" - }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "dev": true - }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "node_modules/react-scripts/node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "dev": true, "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "node_modules/react-scripts/node_modules/jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, "engines": { - "node": ">=6" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/pure-color": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz", - "integrity": "sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==" - }, - "node_modules/q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "node_modules/react-scripts/node_modules/jest-runner/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">=0.6.0", - "teleport": ">=0.2.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "node_modules/react-scripts/node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "side-channel": "^1.0.4" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=0.6" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", - "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "node_modules/react-scripts/node_modules/jest-runner/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, "engines": { - "node": ">=0.4.x" + "node": ">=7.0.0" } }, - "node_modules/querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "node_modules/react-scripts/node_modules/jest-runner/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "node_modules/react-scripts/node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/raf": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", - "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "node_modules/react-scripts/node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "performance-now": "^2.1.0" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "node_modules/react-scripts/node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dev": true, "dependencies": { - "safe-buffer": "^5.1.0" + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "node_modules/react-scripts/node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">= 0.6" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "node_modules/react-scripts/node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 0.8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/rc-motion": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rc-motion/-/rc-motion-2.6.3.tgz", - "integrity": "sha512-xFLkes3/7VL/J+ah9jJruEW/Akbx5F6jVa2wG5o/ApGKQKSOd5FR3rseHLL9+xtJg4PmCwo6/1tqhDO/T+jFHA==", + "node_modules/react-scripts/node_modules/jest-runtime/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, "dependencies": { - "@babel/runtime": "^7.11.1", - "classnames": "^2.2.1", - "rc-util": "^5.21.0" + "color-name": "~1.1.4" }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" + "engines": { + "node": ">=7.0.0" } }, - "node_modules/rc-resize-observer": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/rc-resize-observer/-/rc-resize-observer-1.3.1.tgz", - "integrity": "sha512-iFUdt3NNhflbY3mwySv5CA1TC06zdJ+pfo0oc27xpf4PIOvfZwZGtD9Kz41wGYqC4SLio93RVAirSSpYlV/uYg==", - "dependencies": { - "@babel/runtime": "^7.20.7", - "classnames": "^2.2.1", - "rc-util": "^5.27.0", - "resize-observer-polyfill": "^1.5.1" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" + "node_modules/react-scripts/node_modules/jest-runtime/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" } }, - "node_modules/rc-tree": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/rc-tree/-/rc-tree-5.7.2.tgz", - "integrity": "sha512-nmnL6qLnfwVckO5zoqKL2I9UhwDqzyCtjITQCkwhimyz1zfuFkG5ZPIXpzD/Guzso94qQA/QrMsvzic5W6QDjg==", + "node_modules/react-scripts/node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, "dependencies": { - "@babel/runtime": "^7.10.1", - "classnames": "2.x", - "rc-motion": "^2.0.1", - "rc-util": "^5.16.1", - "rc-virtual-list": "^3.4.8" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=10.x" - }, - "peerDependencies": { - "react": "*", - "react-dom": "*" + "node": ">=8" } }, - "node_modules/rc-util": { - "version": "5.28.0", - "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.28.0.tgz", - "integrity": "sha512-KYDjhGodswVj29v0TRciKTqRPgumIFvFDndbCD227pitQ+0Cei196rxk+OXb/blu6V8zdTRK5RjCJn+WmHLvBA==", + "node_modules/react-scripts/node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dev": true, "dependencies": { - "@babel/runtime": "^7.18.3", - "react-is": "^16.12.0" - }, - "peerDependencies": { - "react": ">=16.9.0", - "react-dom": ">=16.9.0" + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/rc-virtual-list": { - "version": "3.4.13", - "resolved": "https://registry.npmjs.org/rc-virtual-list/-/rc-virtual-list-3.4.13.tgz", - "integrity": "sha512-cPOVDmcNM7rH6ANotanMDilW/55XnFPw0Jh/GQYtrzZSy3AmWvCnqVNyNC/pgg3lfVmX2994dlzAhuUrd4jG7w==", + "node_modules/react-scripts/node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, "dependencies": { - "@babel/runtime": "^7.20.0", - "classnames": "^2.2.6", - "rc-resize-observer": "^1.0.0", - "rc-util": "^5.15.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=8.x" + "node": ">=8" }, - "peerDependencies": { - "react": "*", - "react-dom": "*" + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/rcedit": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/rcedit/-/rcedit-3.0.1.tgz", - "integrity": "sha512-XM0Jv40/y4hVAqj/MO70o/IWs4uOsaSoo2mLyk3klFDW+SStLnCtzuQu+1OBTIMGlM8CvaK9ftlYCp6DJ+cMsw==", + "node_modules/react-scripts/node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "cross-spawn-windows-exe": "^1.1.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 10.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "node_modules/react-scripts/node_modules/jest-snapshot/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, "dependencies": { - "loose-envify": "^1.1.0" + "color-name": "~1.1.4" }, "engines": { - "node": ">=0.10.0" + "node": ">=7.0.0" } }, - "node_modules/react-app-polyfill": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", - "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", + "node_modules/react-scripts/node_modules/jest-snapshot/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "core-js": "^3.19.2", - "object-assign": "^4.1.1", - "promise": "^8.1.0", - "raf": "^3.4.1", - "regenerator-runtime": "^0.13.9", - "whatwg-fetch": "^3.6.2" - }, "engines": { - "node": ">=14" + "node": ">=8" } }, - "node_modules/react-base16-styling": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.6.0.tgz", - "integrity": "sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==", + "node_modules/react-scripts/node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, "dependencies": { - "base16": "^1.0.0", - "lodash.curry": "^4.0.1", - "lodash.flow": "^3.3.0", - "pure-color": "^1.2.0" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/react-bootstrap": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.7.2.tgz", - "integrity": "sha512-WDSln+mG4RLLFO01stkj2bEx/3MF4YihK9D/dWnHaSxOiQZLbhhlf95D2Jb20X3t2m7vMxRe888FVrfLJoGmmA==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", + "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", + "dev": true, "dependencies": { - "@babel/runtime": "^7.17.2", - "@restart/hooks": "^0.4.6", - "@restart/ui": "^1.4.1", - "@types/react-transition-group": "^4.4.4", - "classnames": "^2.3.1", - "dom-helpers": "^5.2.1", - "invariant": "^2.2.4", - "prop-types": "^15.8.1", - "prop-types-extra": "^1.1.0", - "react-transition-group": "^4.4.2", - "uncontrollable": "^7.2.1", - "warning": "^4.0.3" + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^28.0.0", + "jest-watcher": "^28.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" }, - "peerDependencies": { - "@types/react": ">=16.14.8", - "react": ">=16.14.0", - "react-dom": ">=16.14.0" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-chartjs-2": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/react-chartjs-2/-/react-chartjs-2-5.2.0.tgz", - "integrity": "sha512-98iN5aguJyVSxp5U3CblRLH67J8gkfyGNbiK3c+l1QI/G4irHMPQw44aEPmjVag+YKTyQ260NcF82GTQ3bdscA==", "peerDependencies": { - "chart.js": "^4.1.1", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + "jest": "^27.0.0 || ^28.0.0" } }, - "node_modules/react-dev-utils": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", - "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/@jest/console": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.16.0", - "address": "^1.1.2", - "browserslist": "^4.18.1", - "chalk": "^4.1.2", - "cross-spawn": "^7.0.3", - "detect-port-alt": "^1.1.6", - "escape-string-regexp": "^4.0.0", - "filesize": "^8.0.6", - "find-up": "^5.0.0", - "fork-ts-checker-webpack-plugin": "^6.5.0", - "global-modules": "^2.0.0", - "globby": "^11.0.4", - "gzip-size": "^6.0.0", - "immer": "^9.0.7", - "is-root": "^2.1.0", - "loader-utils": "^3.2.0", - "open": "^8.4.0", - "pkg-up": "^3.1.0", - "prompts": "^2.4.2", - "react-error-overlay": "^6.0.11", - "recursive-readdir": "^2.2.2", - "shell-quote": "^1.7.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" }, "engines": { - "node": ">=14" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/react-dev-utils/node_modules/cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - }, "engines": { "node": ">=8" } }, - "node_modules/react-dev-utils/node_modules/fork-ts-checker-webpack-plugin": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", - "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.8.3", - "@types/json-schema": "^7.0.5", - "chalk": "^4.1.0", - "chokidar": "^3.4.2", - "cosmiconfig": "^6.0.0", - "deepmerge": "^4.2.2", - "fs-extra": "^9.0.0", - "glob": "^7.1.6", - "memfs": "^3.1.2", - "minimatch": "^3.0.4", - "schema-utils": "2.7.0", - "semver": "^7.3.2", - "tapable": "^1.0.0" + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" }, "engines": { - "node": ">=10", - "yarn": ">=1.0.0" - }, - "peerDependencies": { - "eslint": ">= 6", - "typescript": ">= 2.7", - "vue-template-compiler": "*", - "webpack": ">= 4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - }, - "vue-template-compiler": { - "optional": true - } + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/react-dev-utils/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", "dev": true, "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" }, "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/react-dev-utils/node_modules/loader-utils": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", - "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/@types/yargs": { + "version": "17.0.24", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", + "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", "dev": true, - "engines": { - "node": ">= 12.13.0" + "dependencies": { + "@types/yargs-parser": "*" } }, - "node_modules/react-dev-utils/node_modules/schema-utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", - "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.4", - "ajv": "^6.12.2", - "ajv-keywords": "^3.4.1" + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 8.9.0" + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/react-dev-utils/node_modules/tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" + "color-name": "~1.1.4" }, - "peerDependencies": { - "react": "^18.2.0" + "engines": { + "node": ">=7.0.0" } }, - "node_modules/react-error-overlay": { - "version": "6.0.11", - "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", - "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "node_modules/react-loader-spinner": { - "version": "5.3.4", - "resolved": "https://registry.npmjs.org/react-loader-spinner/-/react-loader-spinner-5.3.4.tgz", - "integrity": "sha512-G2vw4ssX+RDZ/vfaeva06yfNqyFViv/u+tVZ3kFLy5TKNlNx2DbuwreBSpRtPespQA+VxinxUJsigwLwG9erOg==", - "dependencies": { - "react-is": "^18.2.0", - "styled-components": "^5.3.5", - "styled-tools": "^1.7.2" + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/emittery": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", + "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", + "dev": true, + "engines": { + "node": ">=12" }, - "peerDependencies": { - "react": "^16.0.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0" + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, - "node_modules/react-loader-spinner/node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "node_modules/react-pro-sidebar": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/react-pro-sidebar/-/react-pro-sidebar-0.7.1.tgz", - "integrity": "sha512-Iy1X8ce4t5Vqz4CsyzjwokGUE3/IObgmYzS0ins7/2eWKle0SMUPaWdgMKFIVjtVrMr5vmjPbRicq8FxnVaf8A==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "dev": true, "dependencies": { - "@popperjs/core": "^2.4.0", - "classnames": "^2.2.6", - "react-slidedown": "^2.4.5", - "resize-observer-polyfill": "^1.5.1" + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/react-pro-sidebar/node_modules/react-slidedown": { - "version": "2.4.7", - "resolved": "https://registry.npmjs.org/react-slidedown/-/react-slidedown-2.4.7.tgz", - "integrity": "sha512-HGDfrqo70r1WVE0DwrySPdCT27/2wcZaJYh5kOnmuPSCtjDDJrNkDdn4Ep/cma2VVfwupeAGhbc2pbrGThU6VQ==", - "dependencies": { - "tslib": "^2.0.0" - }, - "peerDependencies": { - "react": "^16.3.0 || 17", - "react-dom": "^16.3.0 || 17" + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" } }, - "node_modules/react-refresh": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", - "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/react-router": { - "version": "6.8.2", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.8.2.tgz", - "integrity": "sha512-lF7S0UmXI5Pd8bmHvMdPKI4u4S5McxmHnzJhrYi9ZQ6wE+DA8JN5BzVC5EEBuduWWDaiJ8u6YhVOCmThBli+rw==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "dev": true, "dependencies": { - "@remix-run/router": "1.3.3" + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">=14" - }, - "peerDependencies": { - "react": ">=16.8" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/react-router-dom": { - "version": "6.8.2", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.8.2.tgz", - "integrity": "sha512-N/oAF1Shd7g4tWy+75IIufCGsHBqT74tnzHQhbiUTYILYF0Blk65cg+HPZqwC+6SqEyx033nKqU7by38v3lBZg==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/jest-watcher": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", + "dev": true, "dependencies": { - "@remix-run/router": "1.3.3", - "react-router": "6.8.2" + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" }, "engines": { - "node": ">=14" - }, - "peerDependencies": { - "react": ">=16.8", - "react-dom": ">=16.8" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/react-scripts": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", - "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, "dependencies": { - "@babel/core": "^7.16.0", - "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", - "@svgr/webpack": "^5.5.0", - "babel-jest": "^27.4.2", - "babel-loader": "^8.2.3", - "babel-plugin-named-asset-import": "^0.3.8", - "babel-preset-react-app": "^10.0.1", - "bfj": "^7.0.2", - "browserslist": "^4.18.1", - "camelcase": "^6.2.1", - "case-sensitive-paths-webpack-plugin": "^2.4.0", - "css-loader": "^6.5.1", - "css-minimizer-webpack-plugin": "^3.2.0", - "dotenv": "^10.0.0", - "dotenv-expand": "^5.1.0", - "eslint": "^8.3.0", - "eslint-config-react-app": "^7.0.1", - "eslint-webpack-plugin": "^3.1.1", - "file-loader": "^6.2.0", - "fs-extra": "^10.0.0", - "html-webpack-plugin": "^5.5.0", - "identity-obj-proxy": "^3.0.0", - "jest": "^27.4.3", - "jest-resolve": "^27.4.2", - "jest-watch-typeahead": "^1.0.0", - "mini-css-extract-plugin": "^2.4.5", - "postcss": "^8.4.4", - "postcss-flexbugs-fixes": "^5.0.2", - "postcss-loader": "^6.2.1", - "postcss-normalize": "^10.0.1", - "postcss-preset-env": "^7.0.1", - "prompts": "^2.4.2", - "react-app-polyfill": "^3.0.0", - "react-dev-utils": "^12.0.1", - "react-refresh": "^0.11.0", - "resolve": "^1.20.0", - "resolve-url-loader": "^4.0.0", - "sass-loader": "^12.3.0", - "semver": "^7.3.5", - "source-map-loader": "^3.0.0", - "style-loader": "^3.3.1", - "tailwindcss": "^3.0.2", - "terser-webpack-plugin": "^5.2.5", - "webpack": "^5.64.4", - "webpack-dev-server": "^4.6.0", - "webpack-manifest-plugin": "^4.0.2", - "workbox-webpack-plugin": "^6.4.1" - }, - "bin": { - "react-scripts": "bin/react-scripts.js" + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">=14.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" - }, - "peerDependencies": { - "react": ">= 16", - "typescript": "^3.2.1 || ^4" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">=10" } }, - "node_modules/react-scripts/node_modules/@svgr/babel-plugin-add-jsx-attribute": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", - "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, "engines": { - "node": ">=10" + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "dev": true, + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/react-scripts/node_modules/@svgr/babel-plugin-remove-jsx-attribute": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", - "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { "node": ">=10" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/react-scripts/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", - "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", "dev": true, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-scripts/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/string-length": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", - "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", "dev": true, + "dependencies": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, "engines": { - "node": ">=10" + "node": ">=12.20" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-scripts/node_modules/@svgr/babel-plugin-svg-dynamic-title": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", - "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", + "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "node": ">=12.20" } }, - "node_modules/react-scripts/node_modules/@svgr/babel-plugin-svg-em-dimensions": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", - "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/react-scripts/node_modules/@svgr/babel-plugin-transform-react-native-svg": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", - "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "dev": true, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/react-scripts/node_modules/@svgr/babel-plugin-transform-svg-component": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", - "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "node_modules/react-scripts/node_modules/jest-watch-typeahead/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=10" + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "dev": true, + "dependencies": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/react-scripts/node_modules/@svgr/babel-preset": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", - "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "node_modules/react-scripts/node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", - "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", - "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", - "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", - "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", - "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", - "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", - "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/react-scripts/node_modules/@svgr/core": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", - "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "node_modules/react-scripts/node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "@svgr/plugin-jsx": "^5.5.0", - "camelcase": "^6.2.0", - "cosmiconfig": "^7.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/react-scripts/node_modules/@svgr/hast-util-to-babel-ast": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", - "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "node_modules/react-scripts/node_modules/jest-watcher/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { - "@babel/types": "^7.12.6" + "color-name": "~1.1.4" }, "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "node": ">=7.0.0" } }, - "node_modules/react-scripts/node_modules/@svgr/plugin-jsx": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", - "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "node_modules/react-scripts/node_modules/jest-watcher/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/jest-watcher/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "@babel/core": "^7.12.3", - "@svgr/babel-preset": "^5.5.0", - "@svgr/hast-util-to-babel-ast": "^5.5.0", - "svg-parser": "^2.0.2" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/react-scripts/node_modules/@svgr/plugin-svgo": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", - "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "node_modules/react-scripts/node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", "dev": true, "dependencies": { - "cosmiconfig": "^7.0.0", - "deepmerge": "^4.2.2", - "svgo": "^1.2.2" + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" }, "engines": { "node": ">=10" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } } }, - "node_modules/react-scripts/node_modules/@svgr/webpack": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", - "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "node_modules/react-scripts/node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, "dependencies": { - "@babel/core": "^7.12.3", - "@babel/plugin-transform-react-constant-elements": "^7.12.1", - "@babel/preset-env": "^7.12.1", - "@babel/preset-react": "^7.12.5", - "@svgr/core": "^5.5.0", - "@svgr/plugin-jsx": "^5.5.0", - "@svgr/plugin-svgo": "^5.5.0", - "loader-utils": "^2.0.0" - }, - "engines": { - "node": ">=10" + "minimist": "^1.2.6" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "bin": { + "mkdirp": "bin/cmd.js" } }, - "node_modules/react-scripts/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "node_modules/react-scripts/node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", "dev": true, "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" + "boolbase": "~1.0.0" } }, - "node_modules/react-scripts/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "node_modules/react-scripts/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "node_modules/react-scripts/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/react-scripts/node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", "dev": true, "dependencies": { - "sprintf-js": "~1.0.2" + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/react-scripts/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/react-scripts/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/react-scripts/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "has-flag": "^3.0.0" }, "engines": { "node": ">=4" } }, - "node_modules/react-scripts/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "node_modules/react-scripts/node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", "dev": true, "dependencies": { - "color-name": "1.1.3" + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" } }, - "node_modules/react-scripts/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/react-scripts/node_modules/css-select": { + "node_modules/react-scripts/node_modules/tr46": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", "dev": true, "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/react-scripts/node_modules/css-tree": { - "version": "1.0.0-alpha.37", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", - "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "node_modules/react-scripts/node_modules/v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", "dev": true, "dependencies": { - "mdn-data": "2.0.4", - "source-map": "^0.6.1" + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" }, "engines": { - "node": ">=8.0.0" + "node": ">=10.12.0" } }, - "node_modules/react-scripts/node_modules/css-what": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", - "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "node_modules/react-scripts/node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "dev": true, "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/react-scripts/node_modules/dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", - "dev": true, - "dependencies": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" + "node": ">= 8" } }, - "node_modules/react-scripts/node_modules/domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "node_modules/react-scripts/node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", "dev": true, "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "node_modules/react-scripts/node_modules/domutils/node_modules/domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", - "dev": true - }, - "node_modules/react-scripts/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "dev": true, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/react-scripts/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, + "xml-name-validator": "^3.0.0" + }, "engines": { - "node": ">=0.8.0" + "node": ">=10" } }, - "node_modules/react-scripts/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "node_modules/react-scripts/node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", "dev": true, "engines": { - "node": ">=4" + "node": ">=10.4" } }, - "node_modules/react-scripts/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "node_modules/react-scripts/node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", "dev": true, "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "iconv-lite": "0.4.24" } }, - "node_modules/react-scripts/node_modules/mdn-data": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", - "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "node_modules/react-scripts/node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", "dev": true }, - "node_modules/react-scripts/node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "node_modules/react-scripts/node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", "dev": true, "dependencies": { - "minimist": "^1.2.6" + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" }, - "bin": { - "mkdirp": "bin/cmd.js" + "engines": { + "node": ">=10" } }, - "node_modules/react-scripts/node_modules/nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "node_modules/react-scripts/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dev": true, "dependencies": { - "boolbase": "~1.0.0" + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" } }, - "node_modules/react-scripts/node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "node_modules/react-scripts/node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", "dev": true }, - "node_modules/react-scripts/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "node_modules/react-scripts/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, "dependencies": { - "has-flag": "^3.0.0" + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" }, "engines": { - "node": ">=4" + "node": ">=10" } }, - "node_modules/react-scripts/node_modules/svgo": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", - "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", - "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "node_modules/react-scripts/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true, - "dependencies": { - "chalk": "^2.4.1", - "coa": "^2.0.2", - "css-select": "^2.0.0", - "css-select-base-adapter": "^0.1.1", - "css-tree": "1.0.0-alpha.37", - "csso": "^4.0.2", - "js-yaml": "^3.13.1", - "mkdirp": "~0.5.1", - "object.values": "^1.1.0", - "sax": "~1.2.4", - "stable": "^0.1.8", - "unquote": "~1.1.1", - "util.promisify": "~1.0.0" - }, - "bin": { - "svgo": "bin/svgo" - }, "engines": { - "node": ">=4.0.0" + "node": ">=10" } }, "node_modules/react-scroll": { @@ -20820,15 +25450,15 @@ "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" }, "node_modules/saxes": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", - "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", "dev": true, "dependencies": { "xmlchars": "^2.2.0" }, "engines": { - "node": ">=10" + "node": ">=v12.22.7" } }, "node_modules/scheduler": { @@ -20892,6 +25522,14 @@ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, + "node_modules/scroll-into-view-if-needed": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.1.0.tgz", + "integrity": "sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==", + "dependencies": { + "compute-scroll-into-view": "^3.0.2" + } + }, "node_modules/select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", @@ -20911,9 +25549,9 @@ } }, "node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dependencies": { "lru-cache": "^6.0.0" }, @@ -22680,9 +27318,9 @@ "integrity": "sha512-OsLcGGbYF3rMjPUf8oKktyvCiUxSbqMMS39m33MAjLTC1DVIH6x3WSt63/M77ihI09+Sdfk1AXvfhCEeUmC7mg==" }, "node_modules/tough-cookie": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", - "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", "dev": true, "dependencies": { "psl": "^1.1.33", @@ -22744,6 +27382,66 @@ "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==", "dev": true }, + "node_modules/ts-jest": { + "version": "29.1.1", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", + "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", + "dev": true, + "dependencies": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "^7.5.3", + "yargs-parser": "^21.0.1" + }, + "bin": { + "ts-jest": "cli.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3 <6" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } + } + }, + "node_modules/ts-jest/node_modules/jest-util": { + "version": "29.6.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.6.1.tgz", + "integrity": "sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/ts-loader": { "version": "9.4.2", "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.2.tgz", @@ -22763,6 +27461,64 @@ "webpack": "^5.0.0" } }, + "node_modules/ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "dev": true, + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/ts-node/node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ts-node/node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, "node_modules/tsconfig-paths": { "version": "3.14.2", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", @@ -23320,9 +28076,9 @@ } }, "node_modules/username/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, "bin": { "semver": "bin/semver" @@ -23422,29 +28178,26 @@ "uuid": "dist/bin/uuid" } }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true + }, "node_modules/v8-to-istanbul": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", - "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", "dev": true, "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0", - "source-map": "^0.7.3" + "convert-source-map": "^1.6.0" }, "engines": { "node": ">=10.12.0" } }, - "node_modules/v8-to-istanbul/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, "node_modules/validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", @@ -23498,15 +28251,15 @@ } }, "node_modules/w3c-xmlserializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", - "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", + "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", "dev": true, "dependencies": { - "xml-name-validator": "^3.0.0" + "xml-name-validator": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=14" } }, "node_modules/walker": { @@ -23557,12 +28310,12 @@ } }, "node_modules/webidl-conversions": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", - "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", "dev": true, "engines": { - "node": ">=10.4" + "node": ">=12" } }, "node_modules/webpack": { @@ -23815,12 +28568,27 @@ } }, "node_modules/whatwg-encoding": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", - "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", "dev": true, "dependencies": { - "iconv-lite": "0.4.24" + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, "node_modules/whatwg-fetch": { @@ -23830,10 +28598,13 @@ "dev": true }, "node_modules/whatwg-mimetype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", - "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", - "dev": true + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", + "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", + "dev": true, + "engines": { + "node": ">=12" + } }, "node_modules/whatwg-url": { "version": "5.0.0", @@ -23948,6 +28719,7 @@ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", "dev": true, + "optional": true, "engines": { "node": ">=0.10.0" } @@ -24264,44 +29036,6 @@ "workbox-core": "6.5.4" } }, - "node_modules/worker-loader": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/worker-loader/-/worker-loader-3.0.8.tgz", - "integrity": "sha512-XQyQkIFeRVC7f7uRhFdNMe/iJOdO6zxAaR3EWbDp45v3mDhrTi+++oswKNxShUNjPC/1xUp5DB29YKLhFo129g==", - "dev": true, - "dependencies": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" - } - }, - "node_modules/worker-loader/node_modules/schema-utils": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", - "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -24324,15 +29058,16 @@ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, "node_modules/write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", "dev": true, "dependencies": { "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, "node_modules/ws": { @@ -24357,10 +29092,13 @@ } }, "node_modules/xml-name-validator": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", - "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", - "dev": true + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "dev": true, + "engines": { + "node": ">=12" + } }, "node_modules/xml2js": { "version": "0.5.0", @@ -24521,9 +29259,9 @@ } }, "node_modules/yarn-or-npm/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, "bin": { "semver": "bin/semver" @@ -24571,6 +29309,15 @@ "fd-slicer": "~1.1.0" } }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", diff --git a/package.json b/package.json index 819a8f94..c885e685 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,10 @@ "publish": "electron-forge package && node packager.js && npm run create-archive", "create-archive": "python archive_builder.py", "lint": "eslint --ext .ts,.tsx .", - "test": "echo 'No tests yet :)'" + "test": "jest", + "test:watch": "jest --watch", + "test:coverage": "jest --coverage", + "prepare": "husky install" }, "devDependencies": { "@electron-forge/cli": "^6.1.1", @@ -39,8 +42,9 @@ "@types/c3": "^0.7.8", "@types/d3": "^7.4.0", "@types/diff-match-patch": "^1.0.32", + "@types/jest": "^29.5.3", "@types/jquery": "^3.5.14", - "@types/node": "^18.8.0", + "@types/node": "^18.16.19", "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/react-scroll": "^1.8.7", @@ -62,15 +66,19 @@ "eslint-plugin-css-import-order": "^1.1.0", "eslint-plugin-import": "^2.26.0", "fork-ts-checker-webpack-plugin": "^7.2.13", + "husky": "^8.0.3", + "jest": "^29.6.1", + "jest-environment-jsdom": "^29.6.2", "json-loader": "^0.5.7", "native-ext-loader": "^2.3.0", "node-loader": "^2.0.0", "react-scripts": "^5.0.1", "style-loader": "^3.3.1", "svg-url-loader": "^8.0.0", + "ts-jest": "^29.1.1", "ts-loader": "^9.4.1", - "typescript": "~4.8.4", - "worker-loader": "^3.0.8" + "ts-node": "^10.9.1", + "typescript": "~4.8.4" }, "dependencies": { "@electron/remote": "^2.0.8", @@ -100,7 +108,7 @@ "nock": "^13.3.0", "pg": "^8.10.0", "pg-hstore": "^2.3.4", - "rc-tree": "^5.7.0", + "rc-tree": "^5.7.12", "react": "^18.2.0", "react-bootstrap": "^2.5.0", "react-chartjs-2": "^5.2.0", @@ -112,6 +120,7 @@ "react-select": "^5.7.3", "react-toastify": "^9.0.8", "react-tooltip": "^5.10.4", + "scroll-into-view-if-needed": "^3.1.0", "sequelize": "^6.23.2", "sequelize-cli": "^6.5.1", "sqlite3": "^5.1.6", diff --git a/packager.js b/packager.js index ce7fe086..8778d35b 100644 --- a/packager.js +++ b/packager.js @@ -3,11 +3,11 @@ const packager = require('electron-packager'); const ignoreDir = [ 'src', 'dist', 'samples', 'test-old', - '.github', 'docs', + '.github', 'docs', 'test-db', '' // Required as the last element !! ].join('*|'); const ignoreFilesOrExtensions = [ - 'rst', 'py', 'md', 'txt', 'enc', + 'rst', 'py', 'md', 'txt', 'enc', '.test.ts', 'ABOUT', 'LICENSE', 'NOTICE', '.gitignore', '.eslintrc.json', 'package-lock.json', 'electron-builder.json', 'tsconfig.json', diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..2dccb73d --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[build-system] +requires = ["setuptools >= 50", "wheel", "setuptools_scm[toml] >= 6"] +build-backend = "setuptools.build_meta" + +[tool.setuptools_scm] +# this is used populated when creating a git archive +# and when there is .git dir and/or there is no git installed +fallback_version = "9999.$Format:%h-%cs$" + +python_files = "*.py" + +addopts = [ + "-rfExXw", + "--strict-markers", + "--doctest-modules" +] \ No newline at end of file diff --git a/samples/anglesharp.css.0.16.4-scan-results-without-text-referendces.json b/samples/anglesharp.css.0.16.4-scan-results-without-text-referendces.json new file mode 100644 index 00000000..828890af --- /dev/null +++ b/samples/anglesharp.css.0.16.4-scan-results-without-text-referendces.json @@ -0,0 +1,1727 @@ +{ + "headers": [ + { + "tool_name": "scancode-toolkit", + "tool_version": "32.0.4", + "options": { + "input": [ + "anglesharp.css.0.16.4/" + ], + "--classify": true, + "--copyright": true, + "--info": true, + "--json-pp": "anglesharp.css.0.16.4-scan-results-without-text-referendces.json", + "--license": true, + "--package": true, + "--processes": "8", + "--summary": 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-06-15T124439.682008", + "end_timestamp": "2023-06-15T124447.640208", + "output_format_version": "3.0.0", + "duration": 7.958212375640869, + "message": null, + "errors": [], + "warnings": [], + "extra_data": { + "system_environment": { + "operating_system": "linux", + "cpu_architecture": "64", + "platform": "Linux-5.15.0-73-generic-x86_64-with-glibc2.29", + "platform_version": "#80~20.04.1-Ubuntu SMP Wed May 17 14:58:14 UTC 2023", + "python_version": "3.8.10 (default, May 26 2023, 14:05:08) \n[GCC 9.4.0]" + }, + "spdx_license_list_version": "3.20", + "files_count": 14 + } + } + ], + "summary": { + "declared_license_expression": "mit", + "license_clarity_score": { + "score": 0, + "declared_license": false, + "identification_precision": false, + "has_license_text": false, + "declared_copyrights": false, + "conflicting_license_categories": false, + "ambiguous_compound_licensing": true + }, + "declared_holder": "AngleSharp", + "primary_language": "Java Server Page", + "other_license_expressions": [ + { + "value": null, + "count": 1 + } + ], + "other_holders": [ + { + "value": null, + "count": 8 + }, + { + "value": "VeriSign, Inc.", + "count": 3 + } + ], + "other_languages": [] + }, + "packages": [ + { + "type": "nuget", + "namespace": null, + "name": "AngleSharp.Css", + "version": "0.16.4", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "Extends the CSSOM from the core AngleSharp library.", + "release_date": null, + "parties": [ + { + "type": null, + "role": "author", + "name": "AngleSharp", + "email": null, + "url": null + }, + { + "type": null, + "role": "owner", + "name": "Florian Rappl", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "https://anglesharp.github.io/", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": "Copyright 2016-2022, AngleSharp", + "holder": "AngleSharp", + "declared_license_expression": "mit", + "declared_license_expression_spdx": "MIT", + "license_detections": [ + { + "license_expression": "mit", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 1, + "match_coverage": 100.0, + "matcher": "1-spdx-id", + "license_expression": "mit", + "rule_identifier": "spdx-license-identifier-mit-5da48780aba670b0860c46d899ed42a0f243ff06", + "rule_relevance": 100, + "rule_url": null, + "matched_text": "MIT" + } + ], + "identifier": "mit-a822f434-d61f-f2b1-c792-8b8cb9e7b9bf" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "'@type': expression\n'#text': MIT\n", + "notice_text": null, + "source_packages": [], + "extra_data": {}, + "repository_homepage_url": "https://www.nuget.org/packages/AngleSharp.Css/0.16.4", + "repository_download_url": "https://www.nuget.org/api/v2/package/AngleSharp.Css/0.16.4", + "api_data_url": "https://api.nuget.org/v3/registration3/anglesharp.css/0.16.4.json", + "package_uid": "pkg:nuget/AngleSharp.Css@0.16.4?uuid=7e57ce1e-ba98-462b-8ede-1dc0483c2d61", + "datafile_paths": [ + "anglesharp.css.0.16.4/AngleSharp.Css.nuspec" + ], + "datasource_ids": [ + "nuget_nupsec" + ], + "purl": "pkg:nuget/AngleSharp.Css@0.16.4" + } + ], + "dependencies": [ + { + "purl": "pkg:nuget/AngleSharp", + "extracted_requirement": "0.16.1", + "scope": "dependency", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:nuget/AngleSharp?uuid=76c0ce8f-168b-4c20-bede-8cb1c7ad0832", + "for_package_uid": "pkg:nuget/AngleSharp.Css@0.16.4?uuid=7e57ce1e-ba98-462b-8ede-1dc0483c2d61", + "datafile_path": "anglesharp.css.0.16.4/AngleSharp.Css.nuspec", + "datasource_id": "nuget_nupsec" + } + ], + "license_detections": [ + { + "identifier": "mit-b941df29-6c4b-fe7e-752f-a5fc7f9a28b5", + "license_expression": "mit", + "detection_count": 1 + }, + { + "identifier": "mit-a822f434-d61f-f2b1-c792-8b8cb9e7b9bf", + "license_expression": "mit", + "detection_count": 1 + }, + { + "identifier": "unknown-73f5f4e3-0fd7-c629-d3b0-a8bf52447aff", + "license_expression": "unknown", + "detection_count": 4 + } + ], + "files": [ + { + "path": "anglesharp.css.0.16.4", + "type": "directory", + "name": "anglesharp.css.0.16.4", + "base_name": "anglesharp.css.0.16.4", + "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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": true, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 14, + "dirs_count": 10, + "size_count": 4438515, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/.signature.p7s", + "type": "file", + "name": ".signature.p7s", + "base_name": ".signature", + "extension": ".p7s", + "size": 9468, + "date": "2022-02-14", + "sha1": "ec5cc05d1aca42c7a06f15f4da12b634e1befb8e", + "md5": "b85e9466563c9c430aa101f778c03e10", + "sha256": "579e98afd6a2d10db11316663359724b11ec9e863b9f5e7de4ee6a318edcf22f", + "mime_type": "application/octet-stream", + "file_type": "data", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": true, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [ + { + "copyright": "(c) 2008 VeriSign, Inc.", + "start_line": 68, + "end_line": 68 + }, + { + "copyright": "(c) 2008 VeriSign, Inc.", + "start_line": 74, + "end_line": 74 + }, + { + "copyright": "(c) 2008 VeriSign, Inc.", + "start_line": 84, + "end_line": 84 + } + ], + "holders": [ + { + "holder": "VeriSign, Inc.", + "start_line": 68, + "end_line": 68 + }, + { + "holder": "VeriSign, Inc.", + "start_line": 74, + "end_line": 74 + }, + { + "holder": "VeriSign, Inc.", + "start_line": 84, + "end_line": 84 + } + ], + "authors": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/[Content_Types].xml", + "type": "file", + "name": "[Content_Types].xml", + "base_name": "[Content_Types]", + "extension": ".xml", + "size": 591, + "date": "2022-02-15", + "sha1": "400b7af79b13d0f19b806c52c965d61396c13748", + "md5": "8962f99153d5c0c44ada67f9ea74edb1", + "sha256": "f7bab1bf02a7ed1ec87c089ee8667ee76d8e5918823cc2c9566fde33a005e7a9", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, 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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": true, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/AngleSharp.Css.nuspec", + "type": "file", + "name": "AngleSharp.Css.nuspec", + "base_name": "AngleSharp.Css", + "extension": ".nuspec", + "size": 967, + "date": "2022-02-15", + "sha1": "9a3e24d9c8ad7edddb791805b9bd2fcf2cf5db3f", + "md5": "224298fa991e5a696809d50a084bd504", + "sha256": "f87728d82b9524862e55dc038a97c4c23e18138385fead8ecebfd44a14b959d5", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, UTF-8 Unicode (with BOM) 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": [ + { + "type": "nuget", + "namespace": null, + "name": "AngleSharp.Css", + "version": "0.16.4", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "Extends the CSSOM from the core AngleSharp library.", + "release_date": null, + "parties": [ + { + "type": null, + "role": "author", + "name": "AngleSharp", + "email": null, + "url": null + }, + { + "type": null, + "role": "owner", + "name": "Florian Rappl", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "https://anglesharp.github.io/", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": "Copyright 2016-2022, AngleSharp", + "holder": "AngleSharp", + "declared_license_expression": "mit", + "declared_license_expression_spdx": "MIT", + "license_detections": [ + { + "license_expression": "mit", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 1, + "match_coverage": 100.0, + "matcher": "1-spdx-id", + "license_expression": "mit", + "rule_identifier": "spdx-license-identifier-mit-5da48780aba670b0860c46d899ed42a0f243ff06", + "rule_relevance": 100, + "rule_url": null, + "matched_text": "MIT" + } + ], + "identifier": "mit-a822f434-d61f-f2b1-c792-8b8cb9e7b9bf" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "'@type': expression\n'#text': MIT\n", + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [ + { + "purl": "pkg:nuget/AngleSharp", + "extracted_requirement": "0.16.1", + "scope": "dependency", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + } + ], + "repository_homepage_url": "https://www.nuget.org/packages/AngleSharp.Css/0.16.4", + "repository_download_url": "https://www.nuget.org/api/v2/package/AngleSharp.Css/0.16.4", + "api_data_url": "https://api.nuget.org/v3/registration3/anglesharp.css/0.16.4.json", + "datasource_id": "nuget_nupsec", + "purl": "pkg:nuget/AngleSharp.Css@0.16.4" + } + ], + "for_packages": [ + "pkg:nuget/AngleSharp.Css@0.16.4?uuid=7e57ce1e-ba98-462b-8ede-1dc0483c2d61" + ], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": "mit", + "detected_license_expression_spdx": "MIT", + "license_detections": [ + { + "license_expression": "mit", + "matches": [ + { + "score": 100.0, + "start_line": 9, + "end_line": 9, + "matched_length": 2, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "mit", + "rule_identifier": "mit_14.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_14.RULE" + }, + { + "score": 100.0, + "start_line": 10, + "end_line": 10, + "matched_length": 5, + "match_coverage": 100.0, + "matcher": "1-spdx-id", + "license_expression": "mit", + "rule_identifier": "spdx-license-identifier-mit-c02399fc3bda518cf5890c9587642a2525fce16b", + "rule_relevance": 100, + "rule_url": null + } + ], + "identifier": "mit-b941df29-6c4b-fe7e-752f-a5fc7f9a28b5" + } + ], + "license_clues": [], + "percentage_of_license_text": 6.36, + "copyrights": [ + { + "copyright": "Copyright 2016-2022, AngleSharp", + "start_line": 15, + "end_line": 15 + } + ], + "holders": [ + { + "holder": "AngleSharp", + "start_line": 15, + "end_line": 15 + } + ], + "authors": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/logo.png", + "type": "file", + "name": "logo.png", + "base_name": "logo", + "extension": ".png", + "size": 4166, + "date": "2022-02-15", + "sha1": "1cdb2b6692ac03a567c85ad1d9987126f2aff856", + "md5": "6e8a1c9a26ac411d6cc786bb245e2220", + "sha256": "b833825eb5f54f67a416730d76da240352261564d8a39c0bc999ce53cdc61f98", + "mime_type": "image/png", + "file_type": "PNG image data, 128 x 128, 8-bit/color RGBA, 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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": true, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/_rels", + "type": "directory", + "name": "_rels", + "base_name": "_rels", + "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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": true, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 508, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/_rels/.rels", + "type": "file", + "name": ".rels", + "base_name": ".rels", + "extension": "", + "size": 508, + "date": "2022-02-15", + "sha1": "5303efd61b22ee589f3e393e13bda01f4056b672", + "md5": "36b19d99625ad3d51c4ca23578799767", + "sha256": "45a13f460d54e96b814dd9420e08af6d5bb616ccc577d8dc7ae542d7dd574ea8", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, ASCII text, with CRLF line terminators", + "programming_language": "Java Server Page", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": false, + "package_data": [], + "for_packages": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/lib", + "type": "directory", + "name": "lib", + "base_name": "lib", + "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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": true, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 8, + "dirs_count": 4, + "size_count": 4422068, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/lib/net46", + "type": "directory", + "name": "net46", + "base_name": "net46", + "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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 1105517, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/lib/net46/AngleSharp.Css.dll", + "type": "file", + "name": "AngleSharp.Css.dll", + "base_name": "AngleSharp.Css", + "extension": ".dll", + "size": 402432, + "date": "2022-02-15", + "sha1": "4472720cc081c62c3ad4929214997af2509e9f82", + "md5": "fca2bec072aeca265640b673266b5645", + "sha256": "c0b8a26f741ee1a41f40f525a3b0ac6cfb593ab87bd343e4e6e10c85b3a3e65e", + "mime_type": "application/x-dosexec", + "file_type": "PE32 executable (DLL) (console) Intel 80386 Mono/.Net assembly, for MS Windows", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [ + { + "type": "winexe", + "namespace": null, + "name": "AngleSharp.Css", + "version": "0.16.4+a754c9adb1d678341e9f489674a8ad7a7199eae8", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "AngleSharp.Css\nExtends the CSSOM from the core AngleSharp library.", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "author", + "name": "AngleSharp.Css", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": "Copyright \u00a9 AngleSharp, 2013-2019", + "holder": "AngleSharp", + "declared_license_expression": "unknown", + "declared_license_expression_spdx": "LicenseRef-scancode-unknown", + "license_detections": [ + { + "license_expression": "unknown", + "matches": [ + { + "score": 77.78, + "start_line": 1, + "end_line": 1, + "matched_length": 7, + "match_coverage": 100.0, + "matcher": "5-undetected", + "license_expression": "unknown", + "rule_identifier": "package-manifest-unknown-16117ed57856733eaaf6d91ea575b186a9dab3df", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/package-manifest-unknown-16117ed57856733eaaf6d91ea575b186a9dab3df", + "matched_text": "license {'LegalCopyright': 'Copyright \u00a9 AngleSharp, 2013-2019', 'LegalTrademarks': '', 'License': None}" + } + ], + "identifier": "unknown-73f5f4e3-0fd7-c629-d3b0-a8bf52447aff" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "LegalCopyright: Copyright \u00a9 AngleSharp, 2013-2019\nLegalTrademarks:\nLicense:\n", + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "windows_executable", + "purl": "pkg:winexe/AngleSharp.Css@0.16.4%2Ba754c9adb1d678341e9f489674a8ad7a7199eae8" + } + ], + "for_packages": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [ + { + "copyright": "Copyright AngleSharp, 2013-2019", + "start_line": 4448, + "end_line": 4449 + }, + { + "copyright": "Copyright AngleSharp, 2013-2019", + "start_line": 4870, + "end_line": 4871 + } + ], + "holders": [ + { + "holder": "AngleSharp", + "start_line": 4449, + "end_line": 4449 + }, + { + "holder": "AngleSharp", + "start_line": 4871, + "end_line": 4871 + } + ], + "authors": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/lib/net46/AngleSharp.Css.xml", + "type": "file", + "name": "AngleSharp.Css.xml", + "base_name": "AngleSharp.Css", + "extension": ".xml", + "size": 703085, + "date": "2022-02-15", + "sha1": "8bd89c1f835d26b375a8201da6dcfc7c683d3c79", + "md5": "317b17ed50019d4bf9973fee3d9fdb18", + "sha256": "60fd8a6acb5edc630f77b87452f647a936ca11befc5523fca6c7aa869d882b43", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, UTF-8 Unicode text, with very long lines, 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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/lib/net461", + "type": "directory", + "name": "net461", + "base_name": "net461", + "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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 1105517, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/lib/net461/AngleSharp.Css.dll", + "type": "file", + "name": "AngleSharp.Css.dll", + "base_name": "AngleSharp.Css", + "extension": ".dll", + "size": 402432, + "date": "2022-02-15", + "sha1": "3bc37c31287013dc16a4664312ca061746924eb2", + "md5": "f3f1a7f4dd7c841704343b1bbbfd51c7", + "sha256": "cc07fb2ff3525045040c48088c1f626c5bf0a90eaf772c2072418e1f95dfdbd2", + "mime_type": "application/x-dosexec", + "file_type": "PE32 executable (DLL) (console) Intel 80386 Mono/.Net assembly, for MS Windows", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [ + { + "type": "winexe", + "namespace": null, + "name": "AngleSharp.Css", + "version": "0.16.4+a754c9adb1d678341e9f489674a8ad7a7199eae8", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "AngleSharp.Css\nExtends the CSSOM from the core AngleSharp library.", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "author", + "name": "AngleSharp.Css", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": "Copyright \u00a9 AngleSharp, 2013-2019", + "holder": "AngleSharp", + "declared_license_expression": "unknown", + "declared_license_expression_spdx": "LicenseRef-scancode-unknown", + "license_detections": [ + { + "license_expression": "unknown", + "matches": [ + { + "score": 77.78, + "start_line": 1, + "end_line": 1, + "matched_length": 7, + "match_coverage": 100.0, + "matcher": "5-undetected", + "license_expression": "unknown", + "rule_identifier": "package-manifest-unknown-16117ed57856733eaaf6d91ea575b186a9dab3df", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/package-manifest-unknown-16117ed57856733eaaf6d91ea575b186a9dab3df", + "matched_text": "license {'LegalCopyright': 'Copyright \u00a9 AngleSharp, 2013-2019', 'LegalTrademarks': '', 'License': None}" + } + ], + "identifier": "unknown-73f5f4e3-0fd7-c629-d3b0-a8bf52447aff" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "LegalCopyright: Copyright \u00a9 AngleSharp, 2013-2019\nLegalTrademarks:\nLicense:\n", + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "windows_executable", + "purl": "pkg:winexe/AngleSharp.Css@0.16.4%2Ba754c9adb1d678341e9f489674a8ad7a7199eae8" + } + ], + "for_packages": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [ + { + "copyright": "Copyright AngleSharp, 2013-2019", + "start_line": 4447, + "end_line": 4448 + }, + { + "copyright": "Copyright AngleSharp, 2013-2019", + "start_line": 4870, + "end_line": 4871 + } + ], + "holders": [ + { + "holder": "AngleSharp", + "start_line": 4448, + "end_line": 4448 + }, + { + "holder": "AngleSharp", + "start_line": 4871, + "end_line": 4871 + } + ], + "authors": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/lib/net461/AngleSharp.Css.xml", + "type": "file", + "name": "AngleSharp.Css.xml", + "base_name": "AngleSharp.Css", + "extension": ".xml", + "size": 703085, + "date": "2022-02-15", + "sha1": "8bd89c1f835d26b375a8201da6dcfc7c683d3c79", + "md5": "317b17ed50019d4bf9973fee3d9fdb18", + "sha256": "60fd8a6acb5edc630f77b87452f647a936ca11befc5523fca6c7aa869d882b43", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, UTF-8 Unicode text, with very long lines, 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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/lib/net472", + "type": "directory", + "name": "net472", + "base_name": "net472", + "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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 1105517, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/lib/net472/AngleSharp.Css.dll", + "type": "file", + "name": "AngleSharp.Css.dll", + "base_name": "AngleSharp.Css", + "extension": ".dll", + "size": 402432, + "date": "2022-02-15", + "sha1": "e5380dbab0d9cce19872785c7a60d3330004fda6", + "md5": "7b6ccfd5df8f1f6b488415e2b53f97b0", + "sha256": "39516ff3aa8fb75a44f5427675c8d6798ec74b38aa1cccceee4c0de32f15b131", + "mime_type": "application/x-dosexec", + "file_type": "PE32 executable (DLL) (console) Intel 80386 Mono/.Net assembly, for MS Windows", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [ + { + "type": "winexe", + "namespace": null, + "name": "AngleSharp.Css", + "version": "0.16.4+a754c9adb1d678341e9f489674a8ad7a7199eae8", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "AngleSharp.Css\nExtends the CSSOM from the core AngleSharp library.", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "author", + "name": "AngleSharp.Css", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": "Copyright \u00a9 AngleSharp, 2013-2019", + "holder": "AngleSharp", + "declared_license_expression": "unknown", + "declared_license_expression_spdx": "LicenseRef-scancode-unknown", + "license_detections": [ + { + "license_expression": "unknown", + "matches": [ + { + "score": 77.78, + "start_line": 1, + "end_line": 1, + "matched_length": 7, + "match_coverage": 100.0, + "matcher": "5-undetected", + "license_expression": "unknown", + "rule_identifier": "package-manifest-unknown-16117ed57856733eaaf6d91ea575b186a9dab3df", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/package-manifest-unknown-16117ed57856733eaaf6d91ea575b186a9dab3df", + "matched_text": "license {'LegalCopyright': 'Copyright \u00a9 AngleSharp, 2013-2019', 'LegalTrademarks': '', 'License': None}" + } + ], + "identifier": "unknown-73f5f4e3-0fd7-c629-d3b0-a8bf52447aff" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "LegalCopyright: Copyright \u00a9 AngleSharp, 2013-2019\nLegalTrademarks:\nLicense:\n", + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "windows_executable", + "purl": "pkg:winexe/AngleSharp.Css@0.16.4%2Ba754c9adb1d678341e9f489674a8ad7a7199eae8" + } + ], + "for_packages": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [ + { + "copyright": "Copyright AngleSharp, 2013-2019", + "start_line": 4446, + "end_line": 4447 + }, + { + "copyright": "Copyright AngleSharp, 2013-2019", + "start_line": 4868, + "end_line": 4869 + } + ], + "holders": [ + { + "holder": "AngleSharp", + "start_line": 4447, + "end_line": 4447 + }, + { + "holder": "AngleSharp", + "start_line": 4869, + "end_line": 4869 + } + ], + "authors": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/lib/net472/AngleSharp.Css.xml", + "type": "file", + "name": "AngleSharp.Css.xml", + "base_name": "AngleSharp.Css", + "extension": ".xml", + "size": 703085, + "date": "2022-02-15", + "sha1": "8bd89c1f835d26b375a8201da6dcfc7c683d3c79", + "md5": "317b17ed50019d4bf9973fee3d9fdb18", + "sha256": "60fd8a6acb5edc630f77b87452f647a936ca11befc5523fca6c7aa869d882b43", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, UTF-8 Unicode text, with very long lines, 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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/lib/netstandard2.0", + "type": "directory", + "name": "netstandard2.0", + "base_name": "netstandard2.0", + "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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 1105517, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/lib/netstandard2.0/AngleSharp.Css.dll", + "type": "file", + "name": "AngleSharp.Css.dll", + "base_name": "AngleSharp.Css", + "extension": ".dll", + "size": 402432, + "date": "2022-02-15", + "sha1": "b90f84f163847e248c844aeb913bdcff14b96916", + "md5": "ca35d2cf46a9e4c24cb344862c040fd7", + "sha256": "2f8a228998d0b3e97b5e9b7f66e0d74215fe4fa17e9cba89073a49f088481140", + "mime_type": "application/x-dosexec", + "file_type": "PE32 executable (DLL) (console) Intel 80386 Mono/.Net assembly, for MS Windows", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [ + { + "type": "winexe", + "namespace": null, + "name": "AngleSharp.Css", + "version": "0.16.4+a754c9adb1d678341e9f489674a8ad7a7199eae8", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "AngleSharp.Css\nExtends the CSSOM from the core AngleSharp library.", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "author", + "name": "AngleSharp.Css", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": "Copyright \u00a9 AngleSharp, 2013-2019", + "holder": "AngleSharp", + "declared_license_expression": "unknown", + "declared_license_expression_spdx": "LicenseRef-scancode-unknown", + "license_detections": [ + { + "license_expression": "unknown", + "matches": [ + { + "score": 77.78, + "start_line": 1, + "end_line": 1, + "matched_length": 7, + "match_coverage": 100.0, + "matcher": "5-undetected", + "license_expression": "unknown", + "rule_identifier": "package-manifest-unknown-16117ed57856733eaaf6d91ea575b186a9dab3df", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/package-manifest-unknown-16117ed57856733eaaf6d91ea575b186a9dab3df", + "matched_text": "license {'LegalCopyright': 'Copyright \u00a9 AngleSharp, 2013-2019', 'LegalTrademarks': '', 'License': None}" + } + ], + "identifier": "unknown-73f5f4e3-0fd7-c629-d3b0-a8bf52447aff" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "LegalCopyright: Copyright \u00a9 AngleSharp, 2013-2019\nLegalTrademarks:\nLicense:\n", + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "windows_executable", + "purl": "pkg:winexe/AngleSharp.Css@0.16.4%2Ba754c9adb1d678341e9f489674a8ad7a7199eae8" + } + ], + "for_packages": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [ + { + "copyright": "Copyright AngleSharp, 2013-2019", + "start_line": 4455, + "end_line": 4456 + }, + { + "copyright": "Copyright AngleSharp, 2013-2019", + "start_line": 4876, + "end_line": 4877 + } + ], + "holders": [ + { + "holder": "AngleSharp", + "start_line": 4456, + "end_line": 4456 + }, + { + "holder": "AngleSharp", + "start_line": 4877, + "end_line": 4877 + } + ], + "authors": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/lib/netstandard2.0/AngleSharp.Css.xml", + "type": "file", + "name": "AngleSharp.Css.xml", + "base_name": "AngleSharp.Css", + "extension": ".xml", + "size": 703085, + "date": "2022-02-15", + "sha1": "8bd89c1f835d26b375a8201da6dcfc7c683d3c79", + "md5": "317b17ed50019d4bf9973fee3d9fdb18", + "sha256": "60fd8a6acb5edc630f77b87452f647a936ca11befc5523fca6c7aa869d882b43", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, UTF-8 Unicode text, with very long lines, 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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/package", + "type": "directory", + "name": "package", + "base_name": "package", + "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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": true, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 1, + "dirs_count": 3, + "size_count": 747, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/package/services", + "type": "directory", + "name": "services", + "base_name": "services", + "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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 1, + "dirs_count": 2, + "size_count": 747, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/package/services/metadata", + "type": "directory", + "name": "metadata", + "base_name": "metadata", + "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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 1, + "dirs_count": 1, + "size_count": 747, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/package/services/metadata/core-properties", + "type": "directory", + "name": "core-properties", + "base_name": "core-properties", + "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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 747, + "scan_errors": [] + }, + { + "path": "anglesharp.css.0.16.4/package/services/metadata/core-properties/038ebec9186049c09cd37775ad0ed8cc.psmdcp", + "type": "file", + "name": "038ebec9186049c09cd37775ad0ed8cc.psmdcp", + "base_name": "038ebec9186049c09cd37775ad0ed8cc", + "extension": ".psmdcp", + "size": 747, + "date": "2022-02-15", + "sha1": "141d3e4322ad30756fed92b95c811908aaedb21a", + "md5": "b41fb67a7d9c0e6e37802f3d1cc787fa", + "sha256": "163775e7f84f9a5ce5545dacd7964f126300c8de826c00d3453eb11ee4e114b3", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, 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": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} \ No newline at end of file diff --git a/samples/aws-java-sdk-core-1.12.262-sources.jar-v32rc4results-todo.json b/samples/aws-java-sdk-core-1.12.262-sources.jar-v32rc4results-todo.json new file mode 100644 index 00000000..bbb0ba47 --- /dev/null +++ b/samples/aws-java-sdk-core-1.12.262-sources.jar-v32rc4results-todo.json @@ -0,0 +1,49973 @@ +{ + "headers": [ + { + "tool_name": "scancode-toolkit", + "tool_version": "32.0.0rc4", + "options": { + "input": [ + "/repo1.maven.org/maven2/com/amazonaws/aws-java-sdk-core/1.12.262/aws-java-sdk-core-1.12.262-sources.jar-extract/" + ], + "--classify": true, + "--copyright": true, + "--csv": "//repo1.maven.org-results/maven2/com/amazonaws/aws-java-sdk-core/1.12.262/aws-java-sdk-core-1.12.262-sources.jar-v32rc4results.csv", + "--info": true, + "--json-pp": "//repo1.maven.org-results/maven2/com/amazonaws/aws-java-sdk-core/1.12.262/aws-java-sdk-core-1.12.262-sources.jar-v32rc4results.json", + "--license": true, + "--license-diagnostics": true, + "--license-references": true, + "--license-text": true, + "--license-text-diagnostics": true, + "--package": true, + "--processes": "16", + "--summary": true, + "--yaml": "//repo1.maven.org-results/maven2/com/amazonaws/aws-java-sdk-core/1.12.262/aws-java-sdk-core-1.12.262-sources.jar-v32rc4results.yaml" + }, + "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-04-21T000539.824192", + "end_timestamp": "2023-04-21T000617.628200", + "output_format_version": "3.0.0", + "duration": 37.80401682853699, + "message": null, + "errors": [], + "warnings": [], + "extra_data": { + "system_environment": { + "operating_system": "linux", + "cpu_architecture": "64", + "platform": "Linux-5.4.0-146-generic-x86_64-with-glibc2.27", + "platform_version": "#163-Ubuntu SMP Fri Mar 17 18:26:02 UTC 2023", + "python_version": "3.8.16 (default, Dec 7 2022, 01:12:13) \n[GCC 7.5.0]" + }, + "spdx_license_list_version": "3.20", + "files_count": 599 + } + }, + { + "tool_name": "scancode-toolkit", + "tool_version": "32.0.0rc4", + "options": { + "input": [ + "files-review/aws-java-sdk-core-1.12.262-sources.jar-v32rc4results.json" + ], + "--from-json": true, + "--json-pp": "files-review/aws-java-sdk-core-1.12.262-sources.jar-v32rc4results-todo.json", + "--todo": 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-04-25T214059.789270", + "end_timestamp": "2023-04-25T214101.183122", + "output_format_version": "3.0.0", + "duration": 1.3938610553741455, + "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": 599 + } + } + ], + "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": false, + "ambiguous_compound_licensing": true + }, + "declared_holder": "", + "primary_language": "Java", + "other_license_expressions": [ + { + "value": "apache-2.0", + "count": 587 + }, + { + "value": "unknown-license-reference AND apache-2.0", + "count": 5 + }, + { + "value": "unknown-license-reference AND apache-2.0 AND mit", + "count": 1 + } + ], + "other_holders": [ + { + "value": "Amazon.com, Inc. or its affiliates", + "count": 570 + }, + { + "value": "Amazon Technologies, Inc.", + "count": 19 + }, + { + "value": null, + "count": 10 + }, + { + "value": "James Murty", + "count": 6 + } + ], + "other_languages": [] + }, + "packages": [ + { + "type": "maven", + "namespace": "com.amazonaws", + "name": "aws-java-sdk-core", + "version": "1.12.262", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "AWS SDK for Java - Core\nThe AWS SDK for Java - Core module holds the classes that are used by the individual service clients to interact with Amazon Web Services. Users need to depend on aws-java-sdk artifact for accessing individual client classes.", + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": "https://aws.amazon.com/sdkforjava", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "holder": null, + "declared_license_expression": null, + "declared_license_expression_spdx": null, + "license_detections": [], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": null, + "notice_text": null, + "source_packages": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?classifier=sources" + ], + "extra_data": {}, + "repository_homepage_url": "https://repo1.maven.org/maven2/com/amazonaws/aws-java-sdk-core/1.12.262/", + "repository_download_url": "https://repo1.maven.org/maven2/com/amazonaws/aws-java-sdk-core/1.12.262/aws-java-sdk-core-1.12.262.jar", + "api_data_url": "https://repo1.maven.org/maven2/com/amazonaws/aws-java-sdk-core/1.12.262/aws-java-sdk-core-1.12.262.pom", + "package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_paths": [ + "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml" + ], + "datasource_ids": [ + "maven_pom" + ], + "purl": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262" + } + ], + "dependencies": [ + { + "purl": "pkg:maven/commons-logging/commons-logging", + "extracted_requirement": "${commons.logging.version}", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/commons-logging/commons-logging?uuid=0d875b4b-f9da-4e92-a7bc-d130f8e81caf", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/commons-codec/commons-codec", + "extracted_requirement": "${commons.codec.version}", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/commons-codec/commons-codec?uuid=2fab08d6-9fd0-434a-9e8d-3907226e560b", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/org.apache.httpcomponents/httpclient", + "extracted_requirement": "${httpcomponents.httpclient.version}", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/org.apache.httpcomponents/httpclient?uuid=87eeb2c4-e8a4-494b-b5f8-6ceddb732405", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/software.amazon.ion/ion-java", + "extracted_requirement": "${ion.java.version}", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/software.amazon.ion/ion-java?uuid=6473e0ec-6b6f-4e77-a128-e82da092e95e", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind", + "extracted_requirement": "${jackson.databind.version}", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/com.fasterxml.jackson.core/jackson-databind?uuid=eb1452dd-a1f8-46aa-82f8-749dfea6b336", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor", + "extracted_requirement": "${jackson.version}", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor?uuid=32ead870-ecd6-46f8-a6f8-ff59467b66b4", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/joda-time/joda-time", + "extracted_requirement": "${jodatime.version}", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/joda-time/joda-time?uuid=572bfb67-8133-4547-b9cd-05477a080c08", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/junit/junit", + "extracted_requirement": "${junit.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/junit/junit?uuid=8e6cea4f-5611-476d-ae63-8bac585f6355", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/com.github.tomakehurst/wiremock", + "extracted_requirement": "${wiremock.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/com.github.tomakehurst/wiremock?uuid=fbaab5c5-e10a-44c3-894f-c525606dc803", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/log4j/log4j", + "extracted_requirement": "${log4j.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/log4j/log4j?uuid=1d883fbe-72a9-4c85-8195-b85dc7055ac9", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/org.hamcrest/hamcrest-all", + "extracted_requirement": "${hamcrest.all.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/org.hamcrest/hamcrest-all?uuid=50b38b98-7f0b-4997-865a-f91f6df5cfe0", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/org.easymock/easymock", + "extracted_requirement": "${easymock.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/org.easymock/easymock?uuid=cf162a88-df4f-412e-a243-203d04eff67e", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/commons-io/commons-io", + "extracted_requirement": "${commons.io.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/commons-io/commons-io?uuid=2eba8b3f-9ed6-4ede-be68-317d5c1af0d7", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/org.mockito/mockito-all", + "extracted_requirement": "${mockito.all.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/org.mockito/mockito-all?uuid=0fe91971-3efb-4d48-b53f-8828bf9a2504", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/nl.jqno.equalsverifier/equalsverifier", + "extracted_requirement": "${equalsverifier.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/nl.jqno.equalsverifier/equalsverifier?uuid=0231961d-6baf-495b-b64f-b4dc8627c5a1", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/org.unitils/unitils-core", + "extracted_requirement": "${unitils.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/org.unitils/unitils-core?uuid=c68928ea-3153-41c1-abb1-ab3bba0a5678", + "for_package_uid": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a", + "datafile_path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "datasource_id": "maven_pom" + } + ], + "license_detections": [ + { + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337", + "license_expression": "apache-2.0", + "detection_count": 546, + "detection_log": [] + }, + { + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932", + "license_expression": "apache-2.0", + "detection_count": 35, + "detection_log": [] + }, + { + "identifier": "unknown_license_reference_and_apache_2_0-62a7ade9-df72-0b10-0cc1-0847080cc621", + "license_expression": "unknown-license-reference AND apache-2.0", + "detection_count": 5, + "detection_log": [] + }, + { + "identifier": "apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de", + "license_expression": "apache-2.0", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "apache_2_0-e659774f-919e-e940-2c6d-2256289ffcb7", + "license_expression": "apache-2.0", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "apache_2_0-971f58ba-4215-35ea-2fc7-494dc41cc264", + "license_expression": "apache-2.0", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa", + "license_expression": "apache-2.0", + "detection_count": 3, + "detection_log": [] + }, + { + "identifier": "unknown_license_reference_and_apache_2_0_and_mit-90e87c8b-a130-5b04-2ad1-1b2e9e8d7f50", + "license_expression": "unknown-license-reference AND apache-2.0 AND mit", + "detection_count": 1, + "detection_log": [] + } + ], + "license_references": [ + { + "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": "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": "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" + } + ], + "license_rule_references": [ + { + "license_expression": "apache-2.0", + "identifier": "apache-2.0_159.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_159.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": 81, + "relevance": 100, + "minimum_coverage": 0, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [ + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "ignorable_emails": [], + "text": "============LICENSE_START=======================================================\n================================================================================\nThis software file is distributed by \nunder the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nThis file is distributed on an \"AS IS\" BASIS, \nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n============LICENSE_END=========================================================" + }, + { + "license_expression": "apache-2.0", + "identifier": "apache-2.0_2.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_2.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": 119, + "relevance": 100, + "minimum_coverage": 80, + "referenced_filenames": [ + "NOTICE" + ], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [ + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "ignorable_emails": [], + "text": "Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." + }, + { + "license_expression": "apache-2.0", + "identifier": "apache-2.0_24.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.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": 77, + "relevance": 100, + "minimum_coverage": 0, + "referenced_filenames": [], + "notes": "Amazon Apache", + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [ + "http://aws.amazon.com/apache2.0" + ], + "ignorable_emails": [], + "text": "* Licensed under the Apache License, Version 2.0 (the \"License\").\n* You may not use this file except in compliance with the License.\n* A copy of the License is located at\n*\n* http://aws.amazon.com/apache2.0\n*\n* or in the \"license\" file accompanying this file. This file is distributed\n* on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n* express or implied. See the License for the specific language governing\n* permissions and limitations under the License." + }, + { + "license_expression": "apache-2.0", + "identifier": "apache-2.0_25_notice.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.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": 150, + "relevance": 100, + "minimum_coverage": 90, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [ + "http://www.apache.org/", + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "ignorable_emails": [], + "text": "* Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. 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,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\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 * ." + }, + { + "license_expression": "mit", + "identifier": "mit_761.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_761.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": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "Licensed under the MIT License (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at the root of this project." + }, + { + "license_expression": "unknown-license-reference", + "identifier": "unknown-license-reference_46.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/unknown-license-reference_46.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": 3, + "relevance": 90, + "minimum_coverage": 100, + "referenced_filenames": [ + "LICENSE.txt" + ], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "see LICENSE.txt" + } + ], + "todo": [ + { + "detection_id": "apache_2_0-971f58ba-4215-35ea-2fc7-494dc41cc264", + "review_comments": { + "imperfect-match-coverage": "The license detection likely is not conslusive as there was license matches with low score or coverage, and so this needs review. scancode would likely benifit from a license rule addition from this case, so please report this to scancode-toolkit github issues." + }, + "detection": { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 98.7, + "start_line": 4, + "end_line": 13, + "matched_length": 76, + "match_coverage": 98.7, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is [divalibuted]\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-971f58ba-4215-35ea-2fc7-494dc41cc264" + } + }, + { + "detection_id": "unknown_license_reference_and_apache_2_0_and_mit-90e87c8b-a130-5b04-2ad1-1b2e9e8d7f50", + "review_comments": { + "unknown-match": "The license detection is inconclusive, as the license matches have been matched to rules having unknown as their license key, and these needs to be reviewed." + }, + "detection": { + "license_expression": "unknown-license-reference AND apache-2.0 AND mit", + "matches": [ + { + "score": 90.0, + "start_line": 4, + "end_line": 4, + "matched_length": 3, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "unknown-license-reference", + "rule_identifier": "unknown-license-reference_46.RULE", + "rule_relevance": 90, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/unknown-license-reference_46.RULE", + "matched_text": "see LICENSE.txt" + }, + { + "score": 55.56, + "start_line": 4, + "end_line": 16, + "matched_length": 45, + "match_coverage": 55.56, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_159.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_159.RULE", + "matched_text": "LICENSE.[txt]\r\n * [for] [applicable] license [terms] [and] [NOTICE].[txt] [for] [applicable] [notices].\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]://[aws].[amazon].[com]/[apache2].0\r\n *\r\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\r\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\r\n * License for the specific language governing permissions and\r\n * limitations under the License." + }, + { + "score": 62.5, + "start_line": 8, + "end_line": 9, + "matched_length": 20, + "match_coverage": 62.5, + "matcher": "3-seq", + "license_expression": "mit", + "rule_identifier": "mit_761.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_761.RULE", + "matched_text": "you may not use this file except in compliance with the License.\r\n * You may obtain a copy of the License at:" + } + ], + "detection_log": [], + "identifier": "unknown_license_reference_and_apache_2_0_and_mit-90e87c8b-a130-5b04-2ad1-1b2e9e8d7f50" + } + } + ], + "files": [ + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract", + "type": "directory", + "name": "aws-java-sdk-core-1.12.262-sources.jar-extract", + "base_name": "aws-java-sdk-core-1.12.262-sources.jar-extract", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": true, + "is_key_file": false, + "for_todo": [], + "files_count": 599, + "dirs_count": 79, + "size_count": 3076672, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com", + "type": "directory", + "name": "com", + "base_name": "com", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": true, + "is_key_file": false, + "for_todo": [], + "files_count": 596, + "dirs_count": 74, + "size_count": 3071990, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws", + "type": "directory", + "name": "amazonaws", + "base_name": "amazonaws", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 596, + "dirs_count": 73, + "size_count": 3071990, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/AbortedException.java", + "type": "file", + "name": "AbortedException.java", + "base_name": "AbortedException", + "extension": ".java", + "size": 1241, + "date": "2022-07-15", + "sha1": "ec3a99008e0e2a727327b0020c01fbd16152ff7c", + "md5": "2e520b174014b54f2f01455dc838e592", + "sha256": "b87ee169abf54ec6c67a6fd01445f78cca86e9074c9737a290ae4bd07f496d7e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 52.74, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/AmazonClientException.java", + "type": "file", + "name": "AmazonClientException.java", + "base_name": "AmazonClientException", + "extension": ".java", + "size": 3074, + "date": "2022-07-15", + "sha1": "bbb515e32a181814bc05fcb282a88fdbe90dc732", + "md5": "c80511b9d478ab70d692935de470d6eb", + "sha256": "01a686d9377d7cb836d69e636ac1e391dbf849e8901a11ff7deaa67a252435d7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 19.64, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/AmazonServiceException.java", + "type": "file", + "name": "AmazonServiceException.java", + "base_name": "AmazonServiceException", + "extension": ".java", + "size": 10768, + "date": "2022-07-15", + "sha1": "bf00733fdc659ae2586d71e40c7b5dba5f890a8c", + "md5": "0e5ed654e4aadeeb805152b33f5fc14c", + "sha256": "f123ada6f5af594932a61479df5616d90f0bb202141931b2a6ca2ea6a4ad5466", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 6.34, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/AmazonWebServiceClient.java", + "type": "file", + "name": "AmazonWebServiceClient.java", + "base_name": "AmazonWebServiceClient", + "extension": ".java", + "size": 45035, + "date": "2022-07-15", + "sha1": "e6f775d5b04a8e13ae624bdf8d46385e12f60670", + "md5": "16b405cbf8a364b45cfc0002c2429419", + "sha256": "7e1bc2c8e12a97d3a8bbcc450ad181a0edbc72e1ac34d3bc21e7ca39477a4d9a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 1.86, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/AmazonWebServiceRequest.java", + "type": "file", + "name": "AmazonWebServiceRequest.java", + "base_name": "AmazonWebServiceRequest", + "extension": ".java", + "size": 26053, + "date": "2022-07-15", + "sha1": "3ab9f6fa43bcf20c78f3ec3548de858868e3dd9d", + "md5": "6a358ddb49b0489399deaab577a00e16", + "sha256": "6b7c1b3405398ccb2623d3acf3d6780070b99b411d3468734cc8d6017980e3ee", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 2.69, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/AmazonWebServiceResponse.java", + "type": "file", + "name": "AmazonWebServiceResponse.java", + "base_name": "AmazonWebServiceResponse", + "extension": ".java", + "size": 2775, + "date": "2022-07-15", + "sha1": "02a014659fa0b3db6feb6545e7afe14e7a414e3b", + "md5": "6cfd15da5e38bbb1989aba4f8b400ee5", + "sha256": "2721dbef1de4aec488914dc25aec6516087ae479db14c300b9c7d4eed744746b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 23.77, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/AmazonWebServiceResult.java", + "type": "file", + "name": "AmazonWebServiceResult.java", + "base_name": "AmazonWebServiceResult", + "extension": ".java", + "size": 1684, + "date": "2022-07-15", + "sha1": "2c1a7753e3d9fc974c3216421cd3a93610e467de", + "md5": "cef1423442266abc54e7ae600a1f744d", + "sha256": "8542bd3a9ebeef99b630e8af0a3b8e68ff7487e365b2e2a156d4ac04671bbb54", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 40.96, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/ApacheHttpClientConfig.java", + "type": "file", + "name": "ApacheHttpClientConfig.java", + "base_name": "ApacheHttpClientConfig", + "extension": ".java", + "size": 2059, + "date": "2022-07-15", + "sha1": "6aec8a6d2ad61db754ebcb9281ca98c77cb5f6e9", + "md5": "bccd838bf79f4f30754874d30b23a446", + "sha256": "319c52083966ca11cb747d0bdaa1855d2f1fdccd910426f3603581965a068ca9", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 35.32, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/ClientConfiguration.java", + "type": "file", + "name": "ClientConfiguration.java", + "base_name": "ClientConfiguration", + "extension": ".java", + "size": 104963, + "date": "2022-07-15", + "sha1": "b21d0f14ba58628331b3dd47c22ec90b6b092700", + "md5": "659dca24a9e0ea48e5dc9a55d526aaf2", + "sha256": "c6e56fad644de8b9e7497ddf27007fb5dbc4f0737d0757f9f923075ffe3d4ea3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 0.65, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/ClientConfigurationFactory.java", + "type": "file", + "name": "ClientConfigurationFactory.java", + "base_name": "ClientConfigurationFactory", + "extension": ".java", + "size": 2378, + "date": "2022-07-15", + "sha1": "949667241a723dff6423e842007a435dd1734646", + "md5": "b397ae3c287d7b1377afc5964ea04759", + "sha256": "08fcf2379daca5e2a92cefc48b7e34a8c30fce1cf28a8fee0e148f490c8f916f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 30.92, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/DefaultRequest.java", + "type": "file", + "name": "DefaultRequest.java", + "base_name": "DefaultRequest", + "extension": ".java", + "size": 10857, + "date": "2022-07-15", + "sha1": "4af567af9143f81e6cffdf6e158eb1ffa0dd1b16", + "md5": "44ee0c369004d7639ce4c170edb73a36", + "sha256": "ffb67c8d50f69870b030f0969f5b99d3706ebf2ed80d28e0767a1d9d8f8ca2a8", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 7.19, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/DnsResolver.java", + "type": "file", + "name": "DnsResolver.java", + "base_name": "DnsResolver", + "extension": ".java", + "size": 868, + "date": "2022-07-15", + "sha1": "911570b65c390a2cd5c9665372264c8695b5fad9", + "md5": "b13b85a67c25abe3d3e714d95e6824fe", + "sha256": "90daf0dcba7abfb5c12d72e9bd7a1271f1c4142d43d8ca15dfe717bd8ff04918", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 62.6, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/HandlerContextAware.java", + "type": "file", + "name": "HandlerContextAware.java", + "base_name": "HandlerContextAware", + "extension": ".java", + "size": 1654, + "date": "2022-07-15", + "sha1": "726dbf58c43f4b7a179493cad6a31cf1e36a741c", + "md5": "9b2835a310776ee2415180b489b4fdbf", + "sha256": "cb1a344536677f7dcbc9bb27916039ea92ac5121f05e939f4e70e5ce46efec91", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 32.77, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/HttpMethod.java", + "type": "file", + "name": "HttpMethod.java", + "base_name": "HttpMethod", + "extension": ".java", + "size": 731, + "date": "2022-07-15", + "sha1": "6c5d88825d159638507e8ba0299e03a22b8e470f", + "md5": "d0aa4090914f648600d26f9fbcb78968", + "sha256": "d2540cf679bcbc340d92ed878c6ae121b93827d17bee8bd2052f43a1b5ff37dd", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF, LF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 72.64, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/ImmutableRequest.java", + "type": "file", + "name": "ImmutableRequest.java", + "base_name": "ImmutableRequest", + "extension": ".java", + "size": 3614, + "date": "2022-07-15", + "sha1": "d7e9c028a75b5467099cc73c9ffb141d893a37f4", + "md5": "53a7af5f87a0df89ee83328698449321", + "sha256": "c0ab5a47c15102df31d021e260260b820f559d6c67656b47fbc89b7a570fa17c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 16.7, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/PredefinedClientConfigurations.java", + "type": "file", + "name": "PredefinedClientConfigurations.java", + "base_name": "PredefinedClientConfigurations", + "extension": ".java", + "size": 1679, + "date": "2022-07-15", + "sha1": "839f7f29b7c34d34ccdae1ec91691bdccdfab196", + "md5": "c4548a0fc7054975d90ff12a98a9925a", + "sha256": "33d165334015091647865548778770eb582f8d1d96f0b057d19d70519a401271", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 41.62, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/Protocol.java", + "type": "file", + "name": "Protocol.java", + "base_name": "Protocol", + "extension": ".java", + "size": 1720, + "date": "2022-07-15", + "sha1": "ff9236b0240509bd8fb2fe0861f3d055355d0d2e", + "md5": "137158214838a8da3a0735c6372678bc", + "sha256": "a0678d6cec3c4828e8bfb27f5ce3ef6cc1e92549ae60fedfd422a870e8715e31", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 33.05, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/ProxyAuthenticationMethod.java", + "type": "file", + "name": "ProxyAuthenticationMethod.java", + "base_name": "ProxyAuthenticationMethod", + "extension": ".java", + "size": 920, + "date": "2022-07-15", + "sha1": "f181747fde8571424c77522db23a13718b01ac10", + "md5": "b437ea3f1b3be9e1a17cd891f1bded72", + "sha256": "34041157ac5b881e0a8620a2cd49546ea4b949b71f2b357c8769c95300e03a6e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 61.11, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/ReadLimitInfo.java", + "type": "file", + "name": "ReadLimitInfo.java", + "base_name": "ReadLimitInfo", + "extension": ".java", + "size": 787, + "date": "2022-07-15", + "sha1": "22053414d0b5b057ef47b0ebd17ebc7c802c7dba", + "md5": "1122fc099ede64206e2873fd2dd108d9", + "sha256": "767f4d25221d23d03d9a8036aafc2acd39dd010aa3a120de727086052988ed4b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 68.14, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/Request.java", + "type": "file", + "name": "Request.java", + "base_name": "Request", + "extension": ".java", + "size": 4989, + "date": "2022-07-15", + "sha1": "68de98d563384a87d18b7ca6dada6c3397e6f235", + "md5": "0843f873a39f9bb7c4d7895f1ccd0fae", + "sha256": "b0dc940913ea73b16fcc9abc1814408055958d5174325283f27cf0b459303efa", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 12.69, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/RequestClientOptions.java", + "type": "file", + "name": "RequestClientOptions.java", + "base_name": "RequestClientOptions", + "extension": ".java", + "size": 5282, + "date": "2022-07-15", + "sha1": "9879b55e0520f029faa607cd4bf5562d1bb3bcd5", + "md5": "a8d1ff6b86db80dfa350e41ecd6e7d73", + "sha256": "89651b27948dbb7ce102217ecfc8ee462140ed285610c8891fc967041d6a27f7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 10.88, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/RequestConfig.java", + "type": "file", + "name": "RequestConfig.java", + "base_name": "RequestConfig", + "extension": ".java", + "size": 2564, + "date": "2022-07-15", + "sha1": "6021f410a934f82c84ea94e5e8749e7931481ecd", + "md5": "042118418d6ac0cc750f93efde360193", + "sha256": "220f637e8e13e5a1b4448d90b323f80017a645ac124ae7697888b456af0d980c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 27.21, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/ResetException.java", + "type": "file", + "name": "ResetException.java", + "base_name": "ResetException", + "extension": ".java", + "size": 1563, + "date": "2022-07-15", + "sha1": "dc66eb6373120b122eb30ba395401ae7a5deeaa4", + "md5": "35da5e12640c8bebb35a4ecdb993b363", + "sha256": "630046d76b716588e5e6499622b8bbed411443d942b8901414fa9a439af56763", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 44.77, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/Response.java", + "type": "file", + "name": "Response.java", + "base_name": "Response", + "extension": ".java", + "size": 1198, + "date": "2022-07-15", + "sha1": "484e6a574ea7892590cd58d7e95717efe4244268", + "md5": "f8cc8c8ca629c38306f852858e2a3137", + "sha256": "62ab5b1dc819f2e6114d9a7b3a6896efb0b69a0b26ad3d133c7aef1c1844db1c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 49.36, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/ResponseMetadata.java", + "type": "file", + "name": "ResponseMetadata.java", + "base_name": "ResponseMetadata", + "extension": ".java", + "size": 2543, + "date": "2022-07-15", + "sha1": "abaaf3bb1ee4cf5c121535f95e03522e46335eb5", + "md5": "f2418901d13fc57da19747693e62798c", + "sha256": "fe727df659a134585e69e7cafce47756adbb1f3cd87af49b57310f84ac57b35c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 23.99, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/SdkBaseException.java", + "type": "file", + "name": "SdkBaseException.java", + "base_name": "SdkBaseException", + "extension": ".java", + "size": 1731, + "date": "2022-07-15", + "sha1": "5779737a315d834871425f3eeb0ff127dab51b1c", + "md5": "9388d670482086e9fc151055f6daef80", + "sha256": "b49e9e8b556161ddca1cae0bcae1c20f2f094467f0d7549f282eb41a34c9c200", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 37.93, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/SdkClientException.java", + "type": "file", + "name": "SdkClientException.java", + "base_name": "SdkClientException", + "extension": ".java", + "size": 1798, + "date": "2022-07-15", + "sha1": "903c11fd406aa00c8f807e62b1485727ce73ca43", + "md5": "f61119dfb1a2115d5023bd9af2a74403", + "sha256": "28414b9a70318ba4b30797d95c093fbf534067a952568957d5fa3880751a7bcc", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 35.98, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/SDKGlobalConfiguration.java", + "type": "file", + "name": "SDKGlobalConfiguration.java", + "base_name": "SDKGlobalConfiguration", + "extension": ".java", + "size": 17861, + "date": "2022-07-15", + "sha1": "0ebd61957cbb2b48970e0392f91f5e4233e35ff1", + "md5": "c4a056beeeac5ac05602a5775159df78", + "sha256": "a593ce1dc587b450b0e9d8390781b2f63ca98f0f5e5f07b22f647dab0bda4851", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 3.45, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/SDKGlobalTime.java", + "type": "file", + "name": "SDKGlobalTime.java", + "base_name": "SDKGlobalTime", + "extension": ".java", + "size": 2005, + "date": "2022-07-15", + "sha1": "c9e5ff49a96a5d8302ba009c71dc0ba6295a681f", + "md5": "20fd436bf6160c06700a0168da157064", + "sha256": "1ffa4b6472e7ca26e41277ea4be00032f21c85dc0ee34ec07c36167e65fb9934", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 29.39, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/SdkThreadLocals.java", + "type": "file", + "name": "SdkThreadLocals.java", + "base_name": "SdkThreadLocals", + "extension": ".java", + "size": 1626, + "date": "2022-07-15", + "sha1": "5ae43bb4b27c2c9185ab681ddd7d5405622dc7d0", + "md5": "fb6cffbad0ee8991c5e67de833a7cc81", + "sha256": "75ddd711e0952f34e699291d5250347f8a02badaffdc0e354ee7b2cd1ce9899b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 35.81, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/ServiceNameFactory.java", + "type": "file", + "name": "ServiceNameFactory.java", + "base_name": "ServiceNameFactory", + "extension": ".java", + "size": 1718, + "date": "2022-07-15", + "sha1": "dae874a40f2da83488e915f723657fa7f5b8d043", + "md5": "655e42088f3b4e33bb75bac0077aa7fc", + "sha256": "1e485d6cb19c8642d8c33ed7ed01f29ae319e94c08b3e9331ceadae851dd729c", + "mime_type": "text/x-java", + "file_type": "Java source, ASCII text, with CRLF, LF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 41.18, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/SignableRequest.java", + "type": "file", + "name": "SignableRequest.java", + "base_name": "SignableRequest", + "extension": ".java", + "size": 2058, + "date": "2022-07-15", + "sha1": "c52350dd9624b47ca87f13b8fe91773ccd9baabe", + "md5": "642e644665a389d2a6c58ff71665e121", + "sha256": "634484abbe59ae4d6b35d0120dd7655489402ba2909213f8f4ef0fab99fdec18", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 28.84, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/SystemDefaultDnsResolver.java", + "type": "file", + "name": "SystemDefaultDnsResolver.java", + "base_name": "SystemDefaultDnsResolver", + "extension": ".java", + "size": 1013, + "date": "2022-07-15", + "sha1": "4f1141824c62ce8f985f794b4ca666c1ae38c49b", + "md5": "18e7ba310dfbbb13f79b7b0753f46128", + "sha256": "f69e5403404b32d5f79209c41c3f410f46ba8b225d61b28f7bd3c1123418869f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 57.89, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/adapters", + "type": "directory", + "name": "adapters", + "base_name": "adapters", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 3, + "dirs_count": 1, + "size_count": 3260, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/adapters/types", + "type": "directory", + "name": "types", + "base_name": "types", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 3260, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/adapters/types/StringToByteBufferAdapter.java", + "type": "file", + "name": "StringToByteBufferAdapter.java", + "base_name": "StringToByteBufferAdapter", + "extension": ".java", + "size": 1068, + "date": "2022-07-15", + "sha1": "fd7ff70e4678b366c1f916185edd4114df118e0c", + "md5": "2ff60dd8e4746bdd72a2e8526780d507", + "sha256": "a8617ef69b3f05dbecde17f4a7327c80d5984069c835b661a427be6ab4deca6e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 14, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 57.46, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/adapters/types/StringToInputStreamAdapter.java", + "type": "file", + "name": "StringToInputStreamAdapter.java", + "base_name": "StringToInputStreamAdapter", + "extension": ".java", + "size": 1244, + "date": "2022-07-15", + "sha1": "132239097f27766645cf520e05b29160d6c09e37", + "md5": "098d8db8b09444cbdd46fa1b6ea9ae1e", + "sha256": "6cd214bbe9d9ea4edb7ca7f3635afbae5ef293d1c1584e2a408296d54b902cf2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 14, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 52.74, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/adapters/types/TypeAdapter.java", + "type": "file", + "name": "TypeAdapter.java", + "base_name": "TypeAdapter", + "extension": ".java", + "size": 948, + "date": "2022-07-15", + "sha1": "a2c9484f15c4768438f7a0287b6a7a62fbc193c6", + "md5": "58e67d071d32eaccf36b4f28b64e5cd5", + "sha256": "c5159338f8740f2ac599ed62a5614b58e1381ca3018293886e44a3b1c8c50679", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 14, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 61.6, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/annotation", + "type": "directory", + "name": "annotation", + "base_name": "annotation", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 9, + "dirs_count": 0, + "size_count": 9807, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/annotation/Beta.java", + "type": "file", + "name": "Beta.java", + "base_name": "Beta", + "extension": ".java", + "size": 1273, + "date": "2022-07-15", + "sha1": "06a2ab3d2c9b112715225f1afdbce132f286fc0b", + "md5": "8574420091c48529cdbd576519cc3baf", + "sha256": "949c1d1bf435c9205c2d1bfe2ea145d2b401470a8cfe1ba5838584e99fb2f410", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 11, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 42.78, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/annotation/GuardedBy.java", + "type": "file", + "name": "GuardedBy.java", + "base_name": "GuardedBy", + "extension": ".java", + "size": 1128, + "date": "2022-07-15", + "sha1": "6bb0ba71f085cd3fa37ca9bdbd5845c7480b5ba0", + "md5": "e95e0a7394327bbb920532d4e1a27d20", + "sha256": "be1fe77397ec6434ae1747f416fa926f703e6cdce1709a9db5ebfadf00a1716f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 11, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 49.36, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/annotation/Immutable.java", + "type": "file", + "name": "Immutable.java", + "base_name": "Immutable", + "extension": ".java", + "size": 987, + "date": "2022-07-15", + "sha1": "b2c3fa4a9485f07e818d51eb17ea576c84ef1631", + "md5": "1d00820488e469bfe3273b12000d394c", + "sha256": "4f069b5135b6072e6874cff31585e73a0791db2cdded3475bd4597b040a57f86", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 11, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 57.89, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/annotation/NotThreadSafe.java", + "type": "file", + "name": "NotThreadSafe.java", + "base_name": "NotThreadSafe", + "extension": ".java", + "size": 1071, + "date": "2022-07-15", + "sha1": "bdf8521cf7d55b1106595a6c879185eeba79dad9", + "md5": "9fedc71fa88a80176d787b63788d6b79", + "sha256": "fc8300b902d9527cf13cbc277125bd85defc699b690c7cba86cb9796e0a5d46c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 11, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 52.74, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/annotation/package-info.java", + "type": "file", + "name": "package-info.java", + "base_name": "package-info", + "extension": ".java", + "size": 584, + "date": "2022-07-15", + "sha1": "0e0f8fe7611024bf2d31b609b8228888d0cfbb1c", + "md5": "9b74b6979b28d5ef51c6e43a5693e4cc", + "sha256": "2feb2b8eca6e27cbf985a0671e043706b1c634523a243cf723da27c74da8908f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 79.76, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/annotation/SdkInternalApi.java", + "type": "file", + "name": "SdkInternalApi.java", + "base_name": "SdkInternalApi", + "extension": ".java", + "size": 1190, + "date": "2022-07-15", + "sha1": "45f8193fe78af8767bd3ba8fa74fd80016b02c34", + "md5": "c8d660143f9132523fc0bc84681fa4e3", + "sha256": "e207cfe45b5de84dde86f05685e4e140cdc98275eae77825fbd8a8a44051b85d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 11, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 46.11, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/annotation/SdkProtectedApi.java", + "type": "file", + "name": "SdkProtectedApi.java", + "base_name": "SdkProtectedApi", + "extension": ".java", + "size": 1217, + "date": "2022-07-15", + "sha1": "aa7040cbefa4594630ac8911e9491570081ed8d3", + "md5": "71a30eac7fccbb32f090d5d83e7fffb2", + "sha256": "8e90f75dbb7618f40cd4ef7df9ca57ba03ed7cef01e1bfca761122f08d9b7f68", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 11, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 44.25, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/annotation/SdkTestInternalApi.java", + "type": "file", + "name": "SdkTestInternalApi.java", + "base_name": "SdkTestInternalApi", + "extension": ".java", + "size": 1301, + "date": "2022-07-15", + "sha1": "aad0b1a6b6cd368a653e0fcc1ec5a3f76fb07791", + "md5": "36e6065ea30c1a145fe37807188de49c", + "sha256": "5fc0479aa228161a5c557480006f41b65a53498bb1a9fac0c75fb319c05243ea", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 11, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 41.62, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/annotation/ThreadSafe.java", + "type": "file", + "name": "ThreadSafe.java", + "base_name": "ThreadSafe", + "extension": ".java", + "size": 1056, + "date": "2022-07-15", + "sha1": "11be91cb5b28da31fd84087c57c8371a400b2e19", + "md5": "cc12ff96c315a924fd4133c95f1489ec", + "sha256": "055fad912565527f5b99d33953b821e5d8a708eed6a3362cf39606dc9bc9a682", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 11, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 53.85, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/arn", + "type": "directory", + "name": "arn", + "base_name": "arn", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 18558, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/arn/Arn.java", + "type": "file", + "name": "Arn.java", + "base_name": "Arn", + "extension": ".java", + "size": 9645, + "date": "2022-07-15", + "sha1": "9dca0a8715fc352b4ae0d577ad9fc29fa65778c7", + "md5": "9a20e904e0de752f43a13149e6980c79", + "sha256": "3f9cf5210c4e98865ee7cbcbb3c0cf516ae6599db129a5fd7cd9305c007e183c", + "mime_type": "text/html", + "file_type": "HTML document, 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 8.01, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/arn/ArnConverter.java", + "type": "file", + "name": "ArnConverter.java", + "base_name": "ArnConverter", + "extension": ".java", + "size": 1234, + "date": "2022-07-15", + "sha1": "e306e85364ac760d2c0f5bece5730dab36494efb", + "md5": "ab40d1a3a62808ac0d121c82908a4524", + "sha256": "4ed73ea20fd9d69d130b3f7f63d413929db0d159eb5be96c9ce8b1599e20ef58", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 46.67, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/arn/ArnResource.java", + "type": "file", + "name": "ArnResource.java", + "base_name": "ArnResource", + "extension": ".java", + "size": 6264, + "date": "2022-07-15", + "sha1": "739581dff7fe908ec706361351c4d75531eff611", + "md5": "d538d5e703d4b7ad4523f11a82a92517", + "sha256": "2469cf8a281ad8d14bc114a75a2390d151405a031082cfdf959bc218ea6ebfb3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 13.25, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/arn/AwsResource.java", + "type": "file", + "name": "AwsResource.java", + "base_name": "AwsResource", + "extension": ".java", + "size": 1415, + "date": "2022-07-15", + "sha1": "22f5ea249e8b2b1bb416a0eb13b7874bc63e4211", + "md5": "53cb7ff9781013cc40895734fd2a6e67", + "sha256": "91484e6526b77869120aba4c6916c4bb3dbb9d30b4b4a0b13929911ca1f017e7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 39.9, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth", + "type": "directory", + "name": "auth", + "base_name": "auth", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 93, + "dirs_count": 10, + "size_count": 403868, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/AbstractAWSSigner.java", + "type": "file", + "name": "AbstractAWSSigner.java", + "base_name": "AbstractAWSSigner", + "extension": ".java", + "size": 19146, + "date": "2022-07-15", + "sha1": "2e8db844feca9496ff5fd067206ae7474effab47", + "md5": "be065195b6740134b3a712a856cce422", + "sha256": "14be8515f742818977a395761772df21dc5671104afb02cd4d80dcbc5deed6fc", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 4.27, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/AnonymousAWSCredentials.java", + "type": "file", + "name": "AnonymousAWSCredentials.java", + "base_name": "AnonymousAWSCredentials", + "extension": ".java", + "size": 1320, + "date": "2022-07-15", + "sha1": "d71c4cce5676e9d4a5e3059feda43256f346cda7", + "md5": "f0dcd3bca4ca2034121cb32048861bde", + "sha256": "a863ef1082f120fb2187d008fd8e1df21a135de78afac4e80732b4b65a45e5d8", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 46.67, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/AWS3Signer.java", + "type": "file", + "name": "AWS3Signer.java", + "base_name": "AWS3Signer", + "extension": ".java", + "size": 8620, + "date": "2022-07-15", + "sha1": "0c459086b9f1bc44fd5a046458e71966d25f32f2", + "md5": "84cf4f086def0123b44412134bc20702", + "sha256": "d396b889f98ba8766c5c6532f39811f248dbc2910203d87e9da7d12c7d78d283", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.57, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/AWS4Signer.java", + "type": "file", + "name": "AWS4Signer.java", + "base_name": "AWS4Signer", + "extension": ".java", + "size": 25148, + "date": "2022-07-15", + "sha1": "36b72d437545b80bacade6e7008e8a3022b1da5f", + "md5": "25a22dfb20e27668df9cc2a9559d3d73", + "sha256": "6911a62736c81f8ccc68c47f25e0aac08b6a499a43513c6c37dd665274bbabeb", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 3.38, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/AWS4UnsignedPayloadSigner.java", + "type": "file", + "name": "AWS4UnsignedPayloadSigner.java", + "base_name": "AWS4UnsignedPayloadSigner", + "extension": ".java", + "size": 1939, + "date": "2022-07-15", + "sha1": "e13ae16c2c0442323cb3fcbe74b7c2ced4317666", + "md5": "a630c63f34a9c46057e6016d0000e90f", + "sha256": "399678f8446ad45206c9c88c1918da2657f064ab6c7c712f2319636dbd29cb99", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 33.05, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/AWSCredentials.java", + "type": "file", + "name": "AWSCredentials.java", + "base_name": "AWSCredentials", + "extension": ".java", + "size": 1773, + "date": "2022-07-15", + "sha1": "26d0722e7f5ee131fab7b6a69c1bc01727f42081", + "md5": "b8f1a35502261d11be139355521bb028", + "sha256": "5cb0bce227f18e3ed01ee32194dbd2c8d1e1abc09f409859f5b073ef4c502ccf", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with CRLF, LF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 33.62, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/AWSCredentialsProvider.java", + "type": "file", + "name": "AWSCredentialsProvider.java", + "base_name": "AWSCredentialsProvider", + "extension": ".java", + "size": 1953, + "date": "2022-07-15", + "sha1": "64eadef15151a8b81cfa19f511033cb57ac0b45d", + "md5": "b40f1b06fe73f415b0aa432f56e89f83", + "sha256": "893d1d5a0c3828ac627d3d13609ef1bdf388b6f1c8845e257c41026f2c9905ca", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 30.56, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/AWSCredentialsProviderChain.java", + "type": "file", + "name": "AWSCredentialsProviderChain.java", + "base_name": "AWSCredentialsProviderChain", + "extension": ".java", + "size": 6139, + "date": "2022-07-15", + "sha1": "8695b166f2b859a67d05167433ed994c63f31f4a", + "md5": "12047119f3e7c29c86c26d693eaebd4b", + "sha256": "b631bc4a67daead79ae938784dd4c851007de99a8009040907801005123cc9d5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 12.58, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/AWSRefreshableSessionCredentials.java", + "type": "file", + "name": "AWSRefreshableSessionCredentials.java", + "base_name": "AWSRefreshableSessionCredentials", + "extension": ".java", + "size": 909, + "date": "2022-07-15", + "sha1": "69c2ca5d9c5f987207ee7d0c71791871de0b7e75", + "md5": "d58ebe48c5ce554b30d40aa94b1eaed8", + "sha256": "7198263009ce4b0f831688c1047e8592935c54c420e0c8d818e7ead57cd92e4a", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF, LF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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 * A copy of the License is located at\r\n *\r\n * http://aws.amazon.com/apache2.0\r\n *\r\n * or in the \"license\" file accompanying this file. This file is distributed\r\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\r\n * express or implied. See the License for the specific language governing\r\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 66.96, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/AWSSessionCredentials.java", + "type": "file", + "name": "AWSSessionCredentials.java", + "base_name": "AWSSessionCredentials", + "extension": ".java", + "size": 781, + "date": "2022-07-15", + "sha1": "af369dca2c828a022394c7801d166f0199124950", + "md5": "95fb86b2b30e9fbdcaafd010f6ae7351", + "sha256": "cd4629814c2c26a44bf4545431cd1d7378e24478d608ff28c046a3f14a9cfb98", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\r\n *\r\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\r\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\r\n * License for the specific language governing permissions and\r\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 67.68, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/AWSSessionCredentialsProvider.java", + "type": "file", + "name": "AWSSessionCredentialsProvider.java", + "base_name": "AWSSessionCredentialsProvider", + "extension": ".java", + "size": 684, + "date": "2022-07-15", + "sha1": "a5756c2d303237eeb56026b50a986cc7ce1281de", + "md5": "1f18e2c4616373f51b65b549200f660e", + "sha256": "07d3d3398a04716fcb5224db56c1ad7e1f57370380d48113e3e47c9c851fbce3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 75.28, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/AWSStaticCredentialsProvider.java", + "type": "file", + "name": "AWSStaticCredentialsProvider.java", + "base_name": "AWSStaticCredentialsProvider", + "extension": ".java", + "size": 1162, + "date": "2022-07-15", + "sha1": "9ac554217bda4db4b404dcb0611ab2000a0cb5df", + "md5": "7c894807da593a83d1de33c8c586b606", + "sha256": "42af12ffec6380233e34eaecb36ddf1fb3302ecd903aaffaa46089d5f46bcd57", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 57.89, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/BaseCredentialsFetcher.java", + "type": "file", + "name": "BaseCredentialsFetcher.java", + "base_name": "BaseCredentialsFetcher", + "extension": ".java", + "size": 9396, + "date": "2022-07-15", + "sha1": "e75f6e9a7d4592d5cb88259bc2e61bfd0ff6abf3", + "md5": "721adb2c798e036b99286210c3a9bd7b", + "sha256": "224af4e1bfdb55436e0a2b8b9ac0ea5aa1b334732a724f41f65401c920a5a927", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 7.37, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/BasicAWSCredentials.java", + "type": "file", + "name": "BasicAWSCredentials.java", + "base_name": "BasicAWSCredentials", + "extension": ".java", + "size": 1896, + "date": "2022-07-15", + "sha1": "b6a9ce02a478d504214e2c0e4996fef27622d040", + "md5": "dc2b90ab2c951da723636d4118a9873a", + "sha256": "014e5170ed3a6ea5bddc8de7c2d83bbc3c2d62fdd1ce1526681436242b76d526", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 35.98, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/BasicSessionCredentials.java", + "type": "file", + "name": "BasicSessionCredentials.java", + "base_name": "BasicSessionCredentials", + "extension": ".java", + "size": 1262, + "date": "2022-07-15", + "sha1": "91c569f4f9115e0db1ca2c1fc55b37cc06cbed1f", + "md5": "4c5bddfdafb07c0b2fe54f0a124023c1", + "sha256": "97c2b504004af29ad0cc8b3e2ca5ce87824cdf934ec91b60fdb8c04c3175707a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 49.26, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/CanHandleNullCredentials.java", + "type": "file", + "name": "CanHandleNullCredentials.java", + "base_name": "CanHandleNullCredentials", + "extension": ".java", + "size": 911, + "date": "2022-07-15", + "sha1": "0765c5e6fd22f2a4433c42fc0b91545cf4fee2b5", + "md5": "26ff6d34775cbf9af49190f27961791f", + "sha256": "2a4e0d43fb02070d09a7e4e505c161c086346882c15826585d491eba639c0479", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 61.11, + "copyrights": [ + { + "copyright": "Copyright (c) 2016. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/ClasspathPropertiesFileCredentialsProvider.java", + "type": "file", + "name": "ClasspathPropertiesFileCredentialsProvider.java", + "base_name": "ClasspathPropertiesFileCredentialsProvider", + "extension": ".java", + "size": 3754, + "date": "2022-07-15", + "sha1": "a66cee6c35f5858a709841b87ea0cccdd6835727", + "md5": "5df788a489e90ded599f41c5ca7932e5", + "sha256": "53d609a52c9980fcbc28bf1fabc7e7a7daa413f7adc311daa2739fc5d7db1f83", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 20.21, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/ContainerCredentialsFetcher.java", + "type": "file", + "name": "ContainerCredentialsFetcher.java", + "base_name": "ContainerCredentialsFetcher", + "extension": ".java", + "size": 1653, + "date": "2022-07-15", + "sha1": "1bcebad840082fb50fc330990bfa2e1ba23938fa", + "md5": "49f6d7e5da63f28397c704ca0ac307c0", + "sha256": "873dcc7079ebb48c50fefefb3e863bfad0bd3477e11cccd33162c07ae3126be3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 43.23, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/ContainerCredentialsProvider.java", + "type": "file", + "name": "ContainerCredentialsProvider.java", + "base_name": "ContainerCredentialsProvider", + "extension": ".java", + "size": 5207, + "date": "2022-07-15", + "sha1": "72f49da650053088da39f4bca792c8cda2ffd3ee", + "md5": "0c9726b8df9ea559e1093b1a34c8d231", + "sha256": "4f61d2f1e02e2f1aac261c3277ad1c17cc9952570b5140917389cd0b7e03ab6c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 13.24, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/ContainerCredentialsRetryPolicy.java", + "type": "file", + "name": "ContainerCredentialsRetryPolicy.java", + "base_name": "ContainerCredentialsRetryPolicy", + "extension": ".java", + "size": 1864, + "date": "2022-07-15", + "sha1": "462dc3bd675668fc58a278c5044861721a3cf32a", + "md5": "f5d35146272143715de236880d80b1fd", + "sha256": "6c4d3e10a92da72b9ae53fe0831f949f5832c9932242ee86a9378eb1d7603756", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 36.41, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/DefaultAWSCredentialsProviderChain.java", + "type": "file", + "name": "DefaultAWSCredentialsProviderChain.java", + "base_name": "DefaultAWSCredentialsProviderChain", + "extension": ".java", + "size": 2549, + "date": "2022-07-15", + "sha1": "a1e78664288df57d039ae0317076f4a1fb507d34", + "md5": "b4662c13eca1e9116899dfe296b563f6", + "sha256": "7f9b9fb2e77e4c0f70cf4879fed629bd1e1d50dc5738a97d980a69082769f19d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 28.62, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/EC2ContainerCredentialsProviderWrapper.java", + "type": "file", + "name": "EC2ContainerCredentialsProviderWrapper.java", + "base_name": "EC2ContainerCredentialsProviderWrapper", + "extension": ".java", + "size": 3576, + "date": "2022-07-15", + "sha1": "33ea81c82a477350b7ec7e6101970af6cb1f198d", + "md5": "019a29f426d9eb0fe5a2c5373ac6bfb0", + "sha256": "79534590440b30150c66df0024c1350b7e94e387c1f7c114fde5d979ed6ce01a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 18.41, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/EndpointPrefixAwareSigner.java", + "type": "file", + "name": "EndpointPrefixAwareSigner.java", + "base_name": "EndpointPrefixAwareSigner", + "extension": ".java", + "size": 1155, + "date": "2022-07-15", + "sha1": "ea76a66e4791bd87a8707441faacfcf2818d8f56", + "md5": "94939318ad70543e03e0bdeb015080c8", + "sha256": "c2f185ca18d289269bb917ca2a5739e94f5f27bccf1fa1056a5b6f94127d3712", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 40.12, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/EnvironmentVariableCredentialsProvider.java", + "type": "file", + "name": "EnvironmentVariableCredentialsProvider.java", + "base_name": "EnvironmentVariableCredentialsProvider", + "extension": ".java", + "size": 2910, + "date": "2022-07-15", + "sha1": "98ba3beb3600ad505f0b745dd4841b02045a1a1c", + "md5": "dcba565a6c5d45f53bf3aa5b800fa8b9", + "sha256": "558ddf6c7954555fb61a5f3ae5d436689ba9aac3251f9aa48dd1c4f861c1452b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 23.19, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/InstanceMetadataServiceCredentialsFetcher.java", + "type": "file", + "name": "InstanceMetadataServiceCredentialsFetcher.java", + "base_name": "InstanceMetadataServiceCredentialsFetcher", + "extension": ".java", + "size": 2712, + "date": "2022-07-15", + "sha1": "46e19389fe5d2a5d49c584c8d3cbd1fd694d9c21", + "md5": "bf1c66588ff50ed66dce14d655d9d92c", + "sha256": "19ecc49a20e444c3112d94ea951f56727d4285cb0b57ab30c3ae2586aa479c74", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 28.03, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/InstanceProfileCredentialsProvider.java", + "type": "file", + "name": "InstanceProfileCredentialsProvider.java", + "base_name": "InstanceProfileCredentialsProvider", + "extension": ".java", + "size": 7178, + "date": "2022-07-15", + "sha1": "1736ce9edd6caa8230315e78f8ee590f0c8fead7", + "md5": "609027961a7d2e40a1d0f28bcfe6ac1f", + "sha256": "009b0baf7ffe0bd8e50b83229f112b3cfe71d829ae32f2ebb22e85ef54a496c2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 12.36, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/NoOpSigner.java", + "type": "file", + "name": "NoOpSigner.java", + "base_name": "NoOpSigner", + "extension": ".java", + "size": 837, + "date": "2022-07-15", + "sha1": "6c85e01ac476a5ec2ac33d9908b023e50210e753", + "md5": "e8e92afb0e45f6074ee4dde6d3db326b", + "sha256": "3283ce814a16b08f3f01df7ba13c4f9cc092f0e2677f53f007905ab71b91de41", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 68.14, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/Presigner.java", + "type": "file", + "name": "Presigner.java", + "base_name": "Presigner", + "extension": ".java", + "size": 1407, + "date": "2022-07-15", + "sha1": "d79cebccdfa2b207155977fa59d4919c1f0e1103", + "md5": "c3aa80116cb8c63852713a49630e2a69", + "sha256": "8be179485f016515829b1c3d38ed22af41d1d90e85de5320c5c3b7481dec0f16", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 41.85, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/ProcessCredentialsProvider.java", + "type": "file", + "name": "ProcessCredentialsProvider.java", + "base_name": "ProcessCredentialsProvider", + "extension": ".java", + "size": 10907, + "date": "2022-07-15", + "sha1": "ce65be26a56995581a6c2861f813ad8f447a7dbf", + "md5": "9d329c4118525116cf3015be2ea9a39b", + "sha256": "9286423b95fed80b5120e9dc83265d822530031ff1c8c83525ca75c53c13236c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 7.95, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/PropertiesCredentials.java", + "type": "file", + "name": "PropertiesCredentials.java", + "base_name": "PropertiesCredentials", + "extension": ".java", + "size": 4679, + "date": "2022-07-15", + "sha1": "fdcc75b299febcf447e9633be6c8a2f7b7f330fd", + "md5": "9dc820f41368666c9c683349727ac25d", + "sha256": "6b144304207b6c7de85aef5be1714cd9fbd170cf60789863e983d9e4d8f1440f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 16.67, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/PropertiesFileCredentialsProvider.java", + "type": "file", + "name": "PropertiesFileCredentialsProvider.java", + "base_name": "PropertiesFileCredentialsProvider", + "extension": ".java", + "size": 2501, + "date": "2022-07-15", + "sha1": "a6f0b636d1cb4e8b93dc2b5605554fb424ad5613", + "md5": "94b5d9a003860c999feb3777773d1618", + "sha256": "3d6334f9ff66e7e7621f73ce337e335de6a790505966367fdb6f3cbc5de3f2c9", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 29.84, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/QueryStringSigner.java", + "type": "file", + "name": "QueryStringSigner.java", + "base_name": "QueryStringSigner", + "extension": ".java", + "size": 7063, + "date": "2022-07-15", + "sha1": "333b0b1969244c8e619faa4a37ae1f0393978e83", + "md5": "b688f3a9d0a627e7c2943ecc80bdfcfc", + "sha256": "3d4adc92e8b2bc97c21e3fb82eb26d414601c0352b77e44e0af2aabda91bb72f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 12.56, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/RegionAwareSigner.java", + "type": "file", + "name": "RegionAwareSigner.java", + "base_name": "RegionAwareSigner", + "extension": ".java", + "size": 947, + "date": "2022-07-15", + "sha1": "0d68504fceb98cb51414c0160337abdd77d8efb4", + "md5": "91d60d04d856739e5d398a14cb0166ab", + "sha256": "05c56c3fa3664f63b75c1837130e44b6761eb2ef3d4943396a6debbdef80006f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 56.2, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/RegionFromEndpointResolverAwareSigner.java", + "type": "file", + "name": "RegionFromEndpointResolverAwareSigner.java", + "base_name": "RegionFromEndpointResolverAwareSigner", + "extension": ".java", + "size": 1192, + "date": "2022-07-15", + "sha1": "c4bdc7b136104c2971fa3eaf111c139dd9ac9465", + "md5": "4aea66555ed77f3783b5a1bd4f1ac449", + "sha256": "656378ec4b4a6f8e2910126651b397b8f70f4fc8b01e77764dd264f1a348832c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 49.36, + "copyrights": [ + { + "copyright": "Copyright 2020-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/RequestSigner.java", + "type": "file", + "name": "RequestSigner.java", + "base_name": "RequestSigner", + "extension": ".java", + "size": 1125, + "date": "2022-07-15", + "sha1": "0b3777a48683dbd87b894a00ce545b38c3efe232", + "md5": "07ec54a74e712c56f5463b248a98bd54", + "sha256": "190c91e85fdfe0f60c45b889ab0f70095c08fe26f7b887318284dce73723bac2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 50.0, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/SdkClock.java", + "type": "file", + "name": "SdkClock.java", + "base_name": "SdkClock", + "extension": ".java", + "size": 2364, + "date": "2022-07-15", + "sha1": "5c5ebf391f4f22b387af3a41fe00e82683faec79", + "md5": "88bd6427e651a3bf3d94d5638ee31b3d", + "sha256": "f4ac6e697992574fefa7f017d4055a2a4142253cfe733e21833efffdb9a6fc75", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 31.3, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/ServiceAwareSigner.java", + "type": "file", + "name": "ServiceAwareSigner.java", + "base_name": "ServiceAwareSigner", + "extension": ".java", + "size": 952, + "date": "2022-07-15", + "sha1": "76a3543512f0f25da5a5a47314653a92f5912843", + "md5": "62d38c1f787ac9b5f000e48fb5d69b66", + "sha256": "5916b035d1fab727d024e35bae39e8496d8b4de958d2de7d0e02a720bda72885", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 56.2, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/SignatureVersion.java", + "type": "file", + "name": "SignatureVersion.java", + "base_name": "SignatureVersion", + "extension": ".java", + "size": 859, + "date": "2022-07-15", + "sha1": "04396de89e2d1a2b2363339c960e21f8265d40c2", + "md5": "fa5e25ac04552a15b1e1f095dede073a", + "sha256": "db0c644ed918a07aeb1305a64333c638eb3502459e3eeff3a22cb606cd827a5d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 65.81, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/Signer.java", + "type": "file", + "name": "Signer.java", + "base_name": "Signer", + "extension": ".java", + "size": 1247, + "date": "2022-07-15", + "sha1": "dfe353a0ad4e44b302140da13299c6028cf7e2a6", + "md5": "af89526955ef20c7db1287caadefc69f", + "sha256": "e34160c42902a54cafa01bee54f21ec1ab398e49636a60d4ff6f3f466a519162", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 44.77, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/SignerAsRequestSigner.java", + "type": "file", + "name": "SignerAsRequestSigner.java", + "base_name": "SignerAsRequestSigner", + "extension": ".java", + "size": 1634, + "date": "2022-07-15", + "sha1": "cff17f3af214bbf5a44ec0e186feeec16726d90e", + "md5": "ecddaa7890c0f6fa25b927fb2e113913", + "sha256": "8d78948514f114da6d9aff424fb1d276b22d7252799d944722c6eb2396348974", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 42.78, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/SignerFactory.java", + "type": "file", + "name": "SignerFactory.java", + "base_name": "SignerFactory", + "extension": ".java", + "size": 6982, + "date": "2022-07-15", + "sha1": "302cdac8be65ec39d4d1cf59f8079a9d3eb054ac", + "md5": "b4f4505e9ccdef548ded9f7f747329a0", + "sha256": "027f40a02686102ebee3b64f9282ebc368d84cb9075fed8a1943fcd55c16ec62", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.18, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/SignerParams.java", + "type": "file", + "name": "SignerParams.java", + "base_name": "SignerParams", + "extension": ".java", + "size": 1119, + "date": "2022-07-15", + "sha1": "28a54518ce954ea1b72275a4725b5d204b7765cf", + "md5": "6d28f988848ce9a71dd0dbbc6255c69c", + "sha256": "5081ed2526f9698f544ee30178189c90e55f0434bc5abb453e066db5f9f7f9cc", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 56.62, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/SignerTypeAware.java", + "type": "file", + "name": "SignerTypeAware.java", + "base_name": "SignerTypeAware", + "extension": ".java", + "size": 803, + "date": "2022-07-15", + "sha1": "8ce9d84d99010c7ec85ca70b09b83e39ee14e62b", + "md5": "b5c508d5a407939fc3663f3a60fd5377", + "sha256": "6d27f9e5b5267735a2b9957ddebfc867e2a323038b7625d0be70f12ad2471a08", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 68.75, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/SigningAlgorithm.java", + "type": "file", + "name": "SigningAlgorithm.java", + "base_name": "SigningAlgorithm", + "extension": ".java", + "size": 1631, + "date": "2022-07-15", + "sha1": "e4abe9a00ac9796dc6bcf3162686d38e79332abe", + "md5": "a17c9f16a4fb8c11cb940f92ccb0cf6a", + "sha256": "bcd0aaecfc2c4e70865acb6d9f7b93061ec69a95d102635e99944746feb9b75f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 44.25, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/StaticSignerProvider.java", + "type": "file", + "name": "StaticSignerProvider.java", + "base_name": "StaticSignerProvider", + "extension": ".java", + "size": 1190, + "date": "2022-07-15", + "sha1": "9dcef74efc71b40bc6914a0faa06d3d370e1afe8", + "md5": "a930fba01670ceaeb5e41508358d23c2", + "sha256": "dd5691c4a898ecb41524053e73ec4c0cba7b016e58ca1d57ff598bc0025c8e42", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 52.38, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/SystemPropertiesCredentialsProvider.java", + "type": "file", + "name": "SystemPropertiesCredentialsProvider.java", + "base_name": "SystemPropertiesCredentialsProvider", + "extension": ".java", + "size": 2289, + "date": "2022-07-15", + "sha1": "342caac408e0e56bdbb6213fdd4992fa8c270405", + "md5": "9a1fe605fe365f85649ebcc35dd282e3", + "sha256": "b6130f3df37629d0233bc72d58f14a19542863c0e30bb5ae1f96e6092cbfb73f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 31.56, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/WebIdentityTokenCredentialsProvider.java", + "type": "file", + "name": "WebIdentityTokenCredentialsProvider.java", + "base_name": "WebIdentityTokenCredentialsProvider", + "extension": ".java", + "size": 5684, + "date": "2022-07-15", + "sha1": "0f3354db3b28a136c59c7c919bffaa3a739886e5", + "md5": "3e341409ce40ba897b60f014de498ba7", + "sha256": "bec00e7a89c8e9a70f6d494f86ac9ba6acce22b5e5197774a3a4824dd2b6d7b3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 15.98, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/internal", + "type": "directory", + "name": "internal", + "base_name": "internal", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 12861, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/internal/AWS4SignerRequestParams.java", + "type": "file", + "name": "AWS4SignerRequestParams.java", + "base_name": "AWS4SignerRequestParams", + "extension": ".java", + "size": 7451, + "date": "2022-07-15", + "sha1": "d61127f1089b4a4fa38c22af49ab9c050bacb2e3", + "md5": "ab8c1673bf79798dc7fb041b6b0f5311", + "sha256": "c64b5e7e15bf935b280a5ffe2a586c1d096e19f3ea18298ca231ca97785785ce", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.22, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/internal/AWS4SignerUtils.java", + "type": "file", + "name": "AWS4SignerUtils.java", + "base_name": "AWS4SignerUtils", + "extension": ".java", + "size": 1881, + "date": "2022-07-15", + "sha1": "0952e7662ba0e4b78db2190b44d5035c6a5e8089", + "md5": "3a9615033f6688ee5ff740b498302b16", + "sha256": "ec3d09ab57e8b4ba10aaf7d904c458e52387f00bac1b0b577066034a15d0dd49", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 33.62, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/internal/SignerConstants.java", + "type": "file", + "name": "SignerConstants.java", + "base_name": "SignerConstants", + "extension": ".java", + "size": 1703, + "date": "2022-07-15", + "sha1": "1f3d4c4082e361f4915ad8c3a4a5fe51af8ff4c1", + "md5": "181b1cee79ea1744a9b4e74c0d473811", + "sha256": "54691625221b91ce99220862d5d4b302960aaba6a02655062738952c072eb168", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 31.69, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/internal/SignerKey.java", + "type": "file", + "name": "SignerKey.java", + "base_name": "SignerKey", + "extension": ".java", + "size": 1826, + "date": "2022-07-15", + "sha1": "c9895002e9d12f40fc9d7a72feb67394c3c98b4a", + "md5": "45a5954f421f19ddd338705b52077b2e", + "sha256": "0867b624f302992a6469e84e8d9969e177057251f528a4fd67d884dcda363c86", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 35.81, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy", + "type": "directory", + "name": "policy", + "base_name": "policy", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 21, + "dirs_count": 4, + "size_count": 107759, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/Action.java", + "type": "file", + "name": "Action.java", + "base_name": "Action", + "extension": ".java", + "size": 1807, + "date": "2022-07-15", + "sha1": "229e63cdb0b39e5187bb9558ca77a2f30029ec79", + "md5": "ecb014b276f71d19ba93be44a4f33f2d", + "sha256": "77c667282a08da8cc81e7acff2eb3c493f61a2c2acecf4aad5b3955a4d728be6", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 29.62, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/Condition.java", + "type": "file", + "name": "Condition.java", + "base_name": "Condition", + "extension": ".java", + "size": 6718, + "date": "2022-07-15", + "sha1": "a628deb9d8db20b61d436e0502157c67cf356767", + "md5": "7cef11a63ae8a018b2866f87a021db81", + "sha256": "d4bc68e099661b1569f3654b81bbd2ae40dae294382eb5720a900e5bb7e3f4ae", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.0, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/package-info.java", + "type": "file", + "name": "package-info.java", + "base_name": "package-info", + "extension": ".java", + "size": 2783, + "date": "2022-07-15", + "sha1": "9a98ed4370980656c5f6dd81435d0c2e0dbd27e9", + "md5": "f54b2a3fcd57c614c8d95c7c931cb44d", + "sha256": "d17797307ce8ae15dd3de8073066a2e0d1f708103d313e162f681210de2bb6b2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 19.44, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/Policy.java", + "type": "file", + "name": "Policy.java", + "base_name": "Policy", + "extension": ".java", + "size": 10452, + "date": "2022-07-15", + "sha1": "67bfcb8495dd45e5c2ee7fb4fc3363f4ce06fece", + "md5": "6cce5bbb7100e632a65b6125c3eed054", + "sha256": "11ea9db1842f48b718af5ac629d8280470682c1fbb0c481a9789d8fd6f64882a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 5.85, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/PolicyReaderOptions.java", + "type": "file", + "name": "PolicyReaderOptions.java", + "base_name": "PolicyReaderOptions", + "extension": ".java", + "size": 2246, + "date": "2022-07-15", + "sha1": "621ba5115235aa5fe12eeb33f5fb990e49ab5138", + "md5": "43dddb66d29d4274e88e9d90861ac86f", + "sha256": "9b5e389a6434c552b924b432a9d2df943ab0176635330e6b961ce12603e9ee65", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 30.2, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/Principal.java", + "type": "file", + "name": "Principal.java", + "base_name": "Principal", + "extension": ".java", + "size": 8333, + "date": "2022-07-15", + "sha1": "678f3e268f79afe4ffa9b08f8967e40d8dbfb8dd", + "md5": "829dfd6c22ecb39e51c1a0c4ba30e4e5", + "sha256": "1502221db87244e92ac1f7222f57c7384890ce461e0a8af0c5127dc74325c2b0", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.02, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/Resource.java", + "type": "file", + "name": "Resource.java", + "base_name": "Resource", + "extension": ".java", + "size": 3782, + "date": "2022-07-15", + "sha1": "09756cb1e0924d92a2ba82ec53fa7e5581d64896", + "md5": "5ac3407a60b652335d8714f4882a9a8d", + "sha256": "13691a375c4ac8e07a1d3cdab3087eaba56a0b50b00fc6514d97e6032bda8f3d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 16.01, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/Statement.java", + "type": "file", + "name": "Statement.java", + "base_name": "Statement", + "extension": ".java", + "size": 16377, + "date": "2022-07-15", + "sha1": "79e92a269431277e1dd82dd0ede5fc73472976da", + "md5": "9b1fbecfde6e7011d0b0ae44307c819e", + "sha256": "d1fe47e8e0ff89951d8481948a30f7c2f249530e2bed89cfd9fda637b07bcaa7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 3.77, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/actions", + "type": "directory", + "name": "actions", + "base_name": "actions", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 840, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/actions/package-info.java", + "type": "file", + "name": "package-info.java", + "base_name": "package-info", + "extension": ".java", + "size": 840, + "date": "2022-07-15", + "sha1": "a03ae8500793a965ff6eb5195e1993ca08ff4c20", + "md5": "df415a74b0deda8657a2cf73ff8126fa", + "sha256": "e2770ecfc6f36d7a7116f44880766834e75e8c173fb6cc7d833f94b6895f5710", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 61.6, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/conditions", + "type": "directory", + "name": "conditions", + "base_name": "conditions", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 24701, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/conditions/ArnCondition.java", + "type": "file", + "name": "ArnCondition.java", + "base_name": "ArnCondition", + "extension": ".java", + "size": 4141, + "date": "2022-07-15", + "sha1": "ae8a6e3618846dd87d5e0e0d6eb32cc20e43eb6c", + "md5": "85bda0eb273dd855221a37c302974c3d", + "sha256": "6180d73b22f82e0b3732d892d64e24c425a58c4649cbef29a1b61ed7fc66a8ee", + "mime_type": "text/html", + "file_type": "HTML document, 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 15.16, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/conditions/BooleanCondition.java", + "type": "file", + "name": "BooleanCondition.java", + "base_name": "BooleanCondition", + "extension": ".java", + "size": 1501, + "date": "2022-07-15", + "sha1": "c8831611e69630e2189a315a3375a62bbe0ba310", + "md5": "e3dedb6e8da21d536901cf0d9a3f34ec", + "sha256": "850d8c5b94666ce972fa4b2971813923875c1c37afc673783595adc24fb75165", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 40.96, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/conditions/ConditionFactory.java", + "type": "file", + "name": "ConditionFactory.java", + "base_name": "ConditionFactory", + "extension": ".java", + "size": 7267, + "date": "2022-07-15", + "sha1": "9e0268bb5b9d6103075ad6460f65290fbbc187f5", + "md5": "361ef5519632802a77131ffa89a62944", + "sha256": "ecdae5679fb814bd59ffe93196a6f95e877121a954a7d5734d104046111fdb1b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.01, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/conditions/DateCondition.java", + "type": "file", + "name": "DateCondition.java", + "base_name": "DateCondition", + "extension": ".java", + "size": 2122, + "date": "2022-07-15", + "sha1": "59b6b0f5d32811e3a80cd49fe1ef9b24b794db71", + "md5": "2a8309397ee6f0090a5a99f96f668c41", + "sha256": "5be2781760a3f9e9ffb6ca2af66c7679f1ae80cd80e29becc6359851176d4371", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 30.08, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/conditions/IpAddressCondition.java", + "type": "file", + "name": "IpAddressCondition.java", + "base_name": "IpAddressCondition", + "extension": ".java", + "size": 3850, + "date": "2022-07-15", + "sha1": "630def06f98c70591b0a3ce1dc3b249a211fae00", + "md5": "c1c98c1cceae995ae8e98c21d9b66961", + "sha256": "eaa851e5e3274fcd677dd3d265e49ac0c4f2f440e4c821cc7bc2bd604d8d062c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 16.01, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/conditions/NumericCondition.java", + "type": "file", + "name": "NumericCondition.java", + "base_name": "NumericCondition", + "extension": ".java", + "size": 1826, + "date": "2022-07-15", + "sha1": "82b767bb7559d85c0591717ea84350babc6cfd51", + "md5": "bb58bf8206a87221d38b03480f0aaf0c", + "sha256": "31647907c46ab10d63b5e8537f81b4880039746cb7edc27ff4b6d17701d0e6d3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 36.32, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/conditions/package-info.java", + "type": "file", + "name": "package-info.java", + "base_name": "package-info", + "extension": ".java", + "size": 1299, + "date": "2022-07-15", + "sha1": "83d9d9fc5c212e1c5b550567c16d8ca17f21455a", + "md5": "b0db0300109cfee00e24bc2bb32e18d5", + "sha256": "28823db569c9a51b322c34dd8683aa25bf24d480eb9c9be43410ff2e9f113cde", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 47.24, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/conditions/StringCondition.java", + "type": "file", + "name": "StringCondition.java", + "base_name": "StringCondition", + "extension": ".java", + "size": 2695, + "date": "2022-07-15", + "sha1": "a543dd54f9a04cf3e7e8901e17194c2a5d5393e9", + "md5": "746ec54e74b46ce6b8437b6b430056f4", + "sha256": "29c969eb2eb9a078d39cad2fe65b3ae69de4d0c3b14122dc30001c1ffcfeb29c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 26.55, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/internal", + "type": "directory", + "name": "internal", + "base_name": "internal", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 28763, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/internal/JsonDocumentFields.java", + "type": "file", + "name": "JsonDocumentFields.java", + "base_name": "JsonDocumentFields", + "extension": ".java", + "size": 1285, + "date": "2022-07-15", + "sha1": "c8af6f7de7345c23cd13b1441a57b127293b7579", + "md5": "60fb7e957a4f33b581df25140742ea8b", + "sha256": "fa1f73b6fb01d52978ccdcc16144a9479ccd51d40ed44d279ee97b27d5fede93", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 45.56, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/internal/JsonPolicyReader.java", + "type": "file", + "name": "JsonPolicyReader.java", + "base_name": "JsonPolicyReader", + "extension": ".java", + "size": 13438, + "date": "2022-07-15", + "sha1": "61af26ce4bb405de430fec9cd30f56a5ac92c926", + "md5": "afbe48f215c30cc16201d0e9e6b0caf8", + "sha256": "c807e4b869cbe3673a16ec7dd9d86f873847e964179015003160fee85846288c", + "mime_type": "text/x-java", + "file_type": "Java source, ASCII text, with very long lines", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 6.07, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/internal/JsonPolicyWriter.java", + "type": "file", + "name": "JsonPolicyWriter.java", + "base_name": "JsonPolicyWriter", + "extension": ".java", + "size": 14040, + "date": "2022-07-15", + "sha1": "29248e029bcc893dc71c69b7192ed9fab201e3a7", + "md5": "4cce1d8fbf92cfa561a04466ec22ff9a", + "sha256": "b53552a3c597b997f702c2578406d2427f025310b56cc34fd45ea604d423252b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 6.01, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/resources", + "type": "directory", + "name": "resources", + "base_name": "resources", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 957, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/policy/resources/package-info.java", + "type": "file", + "name": "package-info.java", + "base_name": "package-info", + "extension": ".java", + "size": 957, + "date": "2022-07-15", + "sha1": "696864cef49e46152c23b6a51a0ad9ff03fadf89", + "md5": "a97f8e46a88a75330b366a2a74d9f556", + "sha256": "982627fe503d1ef8594b992ec29d2e3bf3912c83275d64f5c59d62ed6224e740", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 53.85, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/presign", + "type": "directory", + "name": "presign", + "base_name": "presign", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 7537, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/presign/PresignerFacade.java", + "type": "file", + "name": "PresignerFacade.java", + "base_name": "PresignerFacade", + "extension": ".java", + "size": 4271, + "date": "2022-07-15", + "sha1": "995265929afc8e5c503f19eed69ebf11d535dd50", + "md5": "cb731913530efc2067d627afe259e6c8", + "sha256": "38a3c7ff0f238425fb982c436aec52130793c00f8c08c4102fdbef7c19d427d0", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 20.37, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/presign/PresignerParams.java", + "type": "file", + "name": "PresignerParams.java", + "base_name": "PresignerParams", + "extension": ".java", + "size": 3266, + "date": "2022-07-15", + "sha1": "51741dfc203993acc29e8009ff49db3deaed504d", + "md5": "fee98138159b639416867b90371a1455", + "sha256": "c3d4d5309622612c71289e3e1fc33eac8f3d26a7e2c86dcc2a3ea52b96db01b7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.75, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile", + "type": "directory", + "name": "profile", + "base_name": "profile", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 19, + "dirs_count": 2, + "size_count": 102702, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/package-info.java", + "type": "file", + "name": "package-info.java", + "base_name": "package-info", + "extension": ".java", + "size": 2185, + "date": "2022-07-15", + "sha1": "afacd1f74a965baf8cc7c486d762dc069fe9cdee", + "md5": "90e7a796edd2b3f2283794f10e697a13", + "sha256": "14a2aa919ed7bd593ecbfb21aee6fefd1e326f81cdb6eb48fd1f5bc8fc5ddb4b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.08, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/ProfileCredentialsProvider.java", + "type": "file", + "name": "ProfileCredentialsProvider.java", + "base_name": "ProfileCredentialsProvider", + "extension": ".java", + "size": 7200, + "date": "2022-07-15", + "sha1": "e75416b5791e38c69e61f299f54dddcc46562c31", + "md5": "1b328127c8f2b51e9e8f263c201c46a0", + "sha256": "c4c6897f9aaf23aa7ccc753386336fa68f66852d1cb359dfd719f463d65bcd3b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.06, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/ProfilesConfigFile.java", + "type": "file", + "name": "ProfilesConfigFile.java", + "base_name": "ProfilesConfigFile", + "extension": ".java", + "size": 9021, + "date": "2022-07-15", + "sha1": "8c9fc2cf264ef66781f46a537cb8a0703fe26703", + "md5": "e5a80c0a18d23f1d6f1c4eccbc17c5a8", + "sha256": "5fb347203fa37330267261fbfb5fd4123ac52698be0e53e2572dbdb994be8c18", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 8.89, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/ProfilesConfigFileWriter.java", + "type": "file", + "name": "ProfilesConfigFileWriter.java", + "base_name": "ProfilesConfigFileWriter", + "extension": ".java", + "size": 19561, + "date": "2022-07-15", + "sha1": "0260231b0edeea6fb732a50a2f9d9414c27ba73a", + "md5": "a2ca57591c22232f7196b7b73095046c", + "sha256": "fe81c204bf97bda9b55bb9568c194f7b944d086b79df783b2aa97468187dbdcb", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 4.39, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal", + "type": "directory", + "name": "internal", + "base_name": "internal", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 15, + "dirs_count": 1, + "size_count": 64735, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/AbstractProfilesConfigFileScanner.java", + "type": "file", + "name": "AbstractProfilesConfigFileScanner.java", + "base_name": "AbstractProfilesConfigFileScanner", + "extension": ".java", + "size": 6341, + "date": "2022-07-15", + "sha1": "8c8aece4f810d43c3efbbc693614799947484398", + "md5": "74390202be23aab0a44c0c4df99d2cdf", + "sha256": "24b6830b557d9fa9d17e72e65de42294db7c0a0f1d159966fbd3cee63b5b7032", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 13.28, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/AllProfiles.java", + "type": "file", + "name": "AllProfiles.java", + "base_name": "AllProfiles", + "extension": ".java", + "size": 1402, + "date": "2022-07-15", + "sha1": "0491808a8f6d7dc44e8c3a6c47610ff3a5732731", + "md5": "50ac81e2d000b36d892219d7e8b87a82", + "sha256": "0da9c2b80498cafab358b352e3421bc8616b16e439f6b41e0feb088222b12345", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 46.11, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/AwsProfileNameLoader.java", + "type": "file", + "name": "AwsProfileNameLoader.java", + "base_name": "AwsProfileNameLoader", + "extension": ".java", + "size": 2577, + "date": "2022-07-15", + "sha1": "572d44a4c14d5e87fbdd0dc2f64f7fcad5f07fcf", + "md5": "695a4c1c95b8aaa3d22979b18feca6a9", + "sha256": "7a2723b552c3a346c17ea1d1bd72172cd0e0a0422f04a684cfd26ce361127f4c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 27.5, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/BasicProfile.java", + "type": "file", + "name": "BasicProfile.java", + "base_name": "BasicProfile", + "extension": ".java", + "size": 3743, + "date": "2022-07-15", + "sha1": "091e600fd4a8252da5db39947c888fb1d078b9a2", + "md5": "60565bb71450034002a801a92f30f9fc", + "sha256": "dcee3eb912ce6e488e4e2fbd0118576acafc374a6e746626f51c78c3cfcec469", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 20.37, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/BasicProfileConfigFileLoader.java", + "type": "file", + "name": "BasicProfileConfigFileLoader.java", + "base_name": "BasicProfileConfigFileLoader", + "extension": ".java", + "size": 3639, + "date": "2022-07-15", + "sha1": "0f9010e82ab4244ed14db9ce45b089f5691e028e", + "md5": "c3fbba060d7e30adfdd922000fcadb94", + "sha256": "fbe4af0551f3bab954c1400e1a8de643aaf025279b063956f9c3e7dbc804c981", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.75, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/BasicProfileConfigLoader.java", + "type": "file", + "name": "BasicProfileConfigLoader.java", + "base_name": "BasicProfileConfigLoader", + "extension": ".java", + "size": 6378, + "date": "2022-07-15", + "sha1": "cbb54ff746315a4ad42caa9741a4a135e62ec301", + "md5": "bf3ffc78a63a70ba2963074602325f72", + "sha256": "f5bc7b9f29f10903e694bef3b8422cd891e1e20e8b7380066d56b7ff6f5206cb", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 12.66, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/Profile.java", + "type": "file", + "name": "Profile.java", + "base_name": "Profile", + "extension": ".java", + "size": 4236, + "date": "2022-07-15", + "sha1": "0ead7baef0ccfba31c5edada9a22e69015a6c8f2", + "md5": "423e72814c0042534781bf2a15a4c1e5", + "sha256": "c3ccce7ec06789baef7556f9fe7af5da124ed0f5c00f3abad6dda9cacd312293", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 18.03, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/ProfileAssumeRoleCredentialsProvider.java", + "type": "file", + "name": "ProfileAssumeRoleCredentialsProvider.java", + "base_name": "ProfileAssumeRoleCredentialsProvider", + "extension": ".java", + "size": 3757, + "date": "2022-07-15", + "sha1": "1b8ca85f7b6379da1bd6d8c137cc47b62dc1e779", + "md5": "81c2a2a2fc23edeb90fe6ffbfc687832", + "sha256": "03f89bcf3edfa1a28a01ddecc3ea5035ef29b3f8c7ff8a8f038f84673eebe96d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 22.78, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/ProfileKeyConstants.java", + "type": "file", + "name": "ProfileKeyConstants.java", + "base_name": "ProfileKeyConstants", + "extension": ".java", + "size": 2568, + "date": "2022-07-15", + "sha1": "e9990d2de61634f2296efabd276a080b953be7eb", + "md5": "c87d4a168cb08c2ac3a1c826520ebb24", + "sha256": "8a088fbbc0b404bbcca762cce2a300ecc172d408acde066d031d9da851d0377f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 23.77, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/ProfileProcessCredentialsProvider.java", + "type": "file", + "name": "ProfileProcessCredentialsProvider.java", + "base_name": "ProfileProcessCredentialsProvider", + "extension": ".java", + "size": 1527, + "date": "2022-07-15", + "sha1": "8d45066c73a71f193f55a30a57ea9a55ae63331e", + "md5": "4e9b65d8c55860230171429f68f30903", + "sha256": "baa6719847718ab87e585246dce7dc212e6840e0c0c7d8fe9351ac01d823c7b2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 49.68, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/ProfileStaticCredentialsProvider.java", + "type": "file", + "name": "ProfileStaticCredentialsProvider.java", + "base_name": "ProfileStaticCredentialsProvider", + "extension": ".java", + "size": 3196, + "date": "2022-07-15", + "sha1": "5fe49b976bb0a5284bb505f817edf44cd73701e4", + "md5": "23fd86b3e0b1ff9d2475c7d736a69e5c", + "sha256": "2b0fd69ce491208ee92c65d4bb2ec45a204fa8f17062256fa84859ed1fb1d0e1", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.93, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/securitytoken", + "type": "directory", + "name": "securitytoken", + "base_name": "securitytoken", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 25371, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/securitytoken/ProfileCredentialsService.java", + "type": "file", + "name": "ProfileCredentialsService.java", + "base_name": "ProfileCredentialsService", + "extension": ".java", + "size": 943, + "date": "2022-07-15", + "sha1": "57571019415d0fe21ef22756f63082a49dff86a4", + "md5": "96f0d77f7deb2682edefa3cebd5c658e", + "sha256": "64613d97101719e1c74ef2db9bd657590f33ab318d810e099a6e3bc1aeae92a6", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 64.71, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/securitytoken/RoleInfo.java", + "type": "file", + "name": "RoleInfo.java", + "base_name": "RoleInfo", + "extension": ".java", + "size": 19830, + "date": "2022-07-15", + "sha1": "b8c043fc4fce60af979f9e2727570a5d418955c6", + "md5": "740a7364b0c7b42b4b35a109828f7f9d", + "sha256": "bc5d6881fa9c4b3f9cf6084eb231442425956b83ae16b76e8d5625a521afc480", + "mime_type": "text/html", + "file_type": "HTML document, 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 3.31, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/securitytoken/STSProfileCredentialsServiceLoader.java", + "type": "file", + "name": "STSProfileCredentialsServiceLoader.java", + "base_name": "STSProfileCredentialsServiceLoader", + "extension": ".java", + "size": 1485, + "date": "2022-07-15", + "sha1": "7d07e85ac1b8cdaaf826f7987d01d532f3230554", + "md5": "f5256d17cbd7141df2150ca6c3a5b4be", + "sha256": "dbecdbc508ac3512ebde6ccc0db416ae5cec4f396a64ea8e90785903e23c3da4", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 48.73, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/auth/profile/internal/securitytoken/STSProfileCredentialsServiceProvider.java", + "type": "file", + "name": "STSProfileCredentialsServiceProvider.java", + "base_name": "STSProfileCredentialsServiceProvider", + "extension": ".java", + "size": 3113, + "date": "2022-07-15", + "sha1": "cb68a579e8d7ed428a56803b49b9f6853a79ed9c", + "md5": "eaf315272ccf3461e630f81fd4f733f1", + "sha256": "3452aa2eb6520c9dc799c2aa7cc2216d7b60c911673aebf0862820007e24cdd2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 28.1, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/cache", + "type": "directory", + "name": "cache", + "base_name": "cache", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 3672, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/cache/Cache.java", + "type": "file", + "name": "Cache.java", + "base_name": "Cache", + "extension": ".java", + "size": 839, + "date": "2022-07-15", + "sha1": "4f1966649ed88fad2d7cd5a2470499d29075c1ce", + "md5": "ad04b249da42b7908f33dfd5d5381dec", + "sha256": "afb6ae353c6826ab327c18d96135eb35735cb7398360039c45c57341a0289ff4", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 62.1, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/cache/CacheLoader.java", + "type": "file", + "name": "CacheLoader.java", + "base_name": "CacheLoader", + "extension": ".java", + "size": 986, + "date": "2022-07-15", + "sha1": "c3d90d47d27d366fb733d6aede4928368b203e3e", + "md5": "2c9f7fb2f2d889c9f3e2416b56d211a5", + "sha256": "f571390560b3631caae2126cba0bd4d61c630d62a20a5c3b4a3c3ac081add85d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 54.61, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/cache/EndpointDiscoveryCacheLoader.java", + "type": "file", + "name": "EndpointDiscoveryCacheLoader.java", + "base_name": "EndpointDiscoveryCacheLoader", + "extension": ".java", + "size": 1130, + "date": "2022-07-15", + "sha1": "2196ca451c7ca9b2a5de2257503577bd31da5728", + "md5": "9c9a036159565964731ec6af1fee5f80", + "sha256": "5e34d90bab6e7651fa31bb446c59f156c4f715271e551816461545c341f03f7a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 51.33, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/cache/KeyConverter.java", + "type": "file", + "name": "KeyConverter.java", + "base_name": "KeyConverter", + "extension": ".java", + "size": 717, + "date": "2022-07-15", + "sha1": "c36361b9953c5c910e4f8d466dd82319ed3ea4f6", + "md5": "a07ad97b0e8fbc49a0ebbd641d59dcbc", + "sha256": "c04586f5fe9ba8422c9032d838b618cd03fa9680c159fe3a25e912e040b7606a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 74.04, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/client", + "type": "directory", + "name": "client", + "base_name": "client", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 11, + "dirs_count": 1, + "size_count": 51415, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/client/AwsAsyncClientParams.java", + "type": "file", + "name": "AwsAsyncClientParams.java", + "base_name": "AwsAsyncClientParams", + "extension": ".java", + "size": 1043, + "date": "2022-07-15", + "sha1": "6a005633b2c04ba87a6add4a160a8c55e4c8bb1d", + "md5": "ad3440dd33fd21774e83e831eb9a3143", + "sha256": "0eb83a32a41112a7ed1e9824fa69a51b12025978795e358a7f98878e1cbaf8fa", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 56.62, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/client/AwsSyncClientParams.java", + "type": "file", + "name": "AwsSyncClientParams.java", + "base_name": "AwsSyncClientParams", + "extension": ".java", + "size": 2639, + "date": "2022-07-15", + "sha1": "6e58a1204f87f3d49656f03073d54c8d94ab7032", + "md5": "a3d2409f8f437e7207f5319efada4659", + "sha256": "067b4fb9b5b985b6173355bdad1f3711d1a15fee1ffebdb3f46f445f3aefd56a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 27.02, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/client/ClientExecutionParams.java", + "type": "file", + "name": "ClientExecutionParams.java", + "base_name": "ClientExecutionParams", + "extension": ".java", + "size": 2893, + "date": "2022-07-15", + "sha1": "66a2a5cbc8382b9e76d9053c800c4350bc3b2e35", + "md5": "fa05e02e9980f31dd803cfe88735a036", + "sha256": "4ab29b05bb8e28294af0ed919cf82df762d8596ee0dc61d691876d7ae05c2e37", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 27.9, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/client/ClientHandler.java", + "type": "file", + "name": "ClientHandler.java", + "base_name": "ClientHandler", + "extension": ".java", + "size": 1418, + "date": "2022-07-15", + "sha1": "69ff7ae2e46e75a0d045e88e6c326f38f8368828", + "md5": "fe9904e99f52f72e809a9d7525850602", + "sha256": "976b2531e4aebf24e5274650f3e6883129596e53e96064e6a3968f46c507a3cb", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 44.0, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/client/ClientHandlerImpl.java", + "type": "file", + "name": "ClientHandlerImpl.java", + "base_name": "ClientHandlerImpl", + "extension": ".java", + "size": 10120, + "date": "2022-07-15", + "sha1": "0e405ed27f5eaea6b548b9b6187cb8e6683f073d", + "md5": "64dfc4af62fc00836bda82727c9dbec2", + "sha256": "2e3de0ec4228d6ab5e95c68692ef1fd70b6fbda9fb52ac42e761f6b77fb4e430", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 10.61, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/client/ClientHandlerParams.java", + "type": "file", + "name": "ClientHandlerParams.java", + "base_name": "ClientHandlerParams", + "extension": ".java", + "size": 1704, + "date": "2022-07-15", + "sha1": "22a3a58a1e2b8f51485a27920e299fdf6831cba4", + "md5": "608bad9667fa30f9481f3b3085623eea", + "sha256": "aac5975de5d446ca8f133486c868274b2121018d8b92a05fb84479adbdab2e64", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 45.83, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/client/builder", + "type": "directory", + "name": "builder", + "base_name": "builder", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 31598, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/client/builder/AdvancedConfig.java", + "type": "file", + "name": "AdvancedConfig.java", + "base_name": "AdvancedConfig", + "extension": ".java", + "size": 2111, + "date": "2022-07-15", + "sha1": "b8c36e2c8fab87b7f58ceff0089edf22c57fda00", + "md5": "729b4f54c827dac433e762e5cd4c45fa", + "sha256": "e9289bc4a5d9dfc06df8ca405971cbbb88b2514a01028eafcf52d852e8ea4b16", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 30.2, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/client/builder/AwsAsyncClientBuilder.java", + "type": "file", + "name": "AwsAsyncClientBuilder.java", + "base_name": "AwsAsyncClientBuilder", + "extension": ".java", + "size": 4245, + "date": "2022-07-15", + "sha1": "85516e101be5be9c757d2182893027a128d14f60", + "md5": "ce454a258fd9e57e664fe3d7438d3d93", + "sha256": "1f3949564055b94cd3a952906a2215166165476f44acf3eafc5f5d5e5c0490c6", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 19.79, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/client/builder/AwsClientBuilder.java", + "type": "file", + "name": "AwsClientBuilder.java", + "base_name": "AwsClientBuilder", + "extension": ".java", + "size": 22211, + "date": "2022-07-15", + "sha1": "63ca98e1377899fd003ea0988f62d2c5e29c67ad", + "md5": "73115c9cffc70bb9b6e4f01c5bb5c77a", + "sha256": "6d73d2fb562838faa4648f26570e7b0946d0239948be9fe3d69aff16e1698c36", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 3.65, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/client/builder/AwsSyncClientBuilder.java", + "type": "file", + "name": "AwsSyncClientBuilder.java", + "base_name": "AwsSyncClientBuilder", + "extension": ".java", + "size": 2162, + "date": "2022-07-15", + "sha1": "220c91d2b6af3a5db708bdeca5293642b633dfb3", + "md5": "dbd4dc45442be0300763a9bd516125df", + "sha256": "39443a80aef9e9f4b1ff2720a2b80e50837e98151ee7c2e0076b1bef71dfa7dc", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 36.32, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/client/builder/ExecutorFactory.java", + "type": "file", + "name": "ExecutorFactory.java", + "base_name": "ExecutorFactory", + "extension": ".java", + "size": 869, + "date": "2022-07-15", + "sha1": "95e9f6ba3437675c326c903674e5804672565fc6", + "md5": "d33f49c1f365ca129c8e7aab35b0265f", + "sha256": "67ef5a46795279acc2de5bbd0b0302af8dfa690fe2ee7fef780894ce0de29e35", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 66.96, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/endpointdiscovery", + "type": "directory", + "name": "endpointdiscovery", + "base_name": "endpointdiscovery", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 21465, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/endpointdiscovery/AwsProfileEndpointDiscoveryProvider.java", + "type": "file", + "name": "AwsProfileEndpointDiscoveryProvider.java", + "base_name": "AwsProfileEndpointDiscoveryProvider", + "extension": ".java", + "size": 3071, + "date": "2022-07-15", + "sha1": "db62d8dfc84068395c4e090a747b22174580dcb8", + "md5": "f8d90967272c421c6af49aa1494fbc45", + "sha256": "13db507c170bbf3586cd084bf64345e0e32239b85cba6aa1a0df9613e23b4499", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 29.17, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/endpointdiscovery/Constants.java", + "type": "file", + "name": "Constants.java", + "base_name": "Constants", + "extension": ".java", + "size": 978, + "date": "2022-07-15", + "sha1": "67518d47e69d45a07ce99f20e7def6e28206c535", + "md5": "857484281be51bd9c79d5dbfb97d8178", + "sha256": "204128914c8907cf76fce62f63e268aad9c8dc205f47305ab004195f16a5b7fb", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 58.78, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/endpointdiscovery/DaemonThreadFactory.java", + "type": "file", + "name": "DaemonThreadFactory.java", + "base_name": "DaemonThreadFactory", + "extension": ".java", + "size": 952, + "date": "2022-07-15", + "sha1": "9d6a298eb705dfe4c3ba965879053e1743912bf3", + "md5": "37a9a1af9f8f829c0fed7b6edf0b5103", + "sha256": "d797d7ac9cc6048618f170d7bbc960bc469be983bd070e6d84a4d57162317394", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 61.6, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/endpointdiscovery/DefaultEndpointDiscoveryProviderChain.java", + "type": "file", + "name": "DefaultEndpointDiscoveryProviderChain.java", + "base_name": "DefaultEndpointDiscoveryProviderChain", + "extension": ".java", + "size": 966, + "date": "2022-07-15", + "sha1": "0e50be4616da49590c0fa633afab68b6b091ea83", + "md5": "4685f327138bf3c829295c926dc41934", + "sha256": "1b07b98b8c41ef572b997c1af6edad6eaebbcd32dff5340bb0d361b00fdb6110", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 72.64, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/endpointdiscovery/EndpointDiscoveryIdentifiersRefreshCache.java", + "type": "file", + "name": "EndpointDiscoveryIdentifiersRefreshCache.java", + "base_name": "EndpointDiscoveryIdentifiersRefreshCache", + "extension": ".java", + "size": 5354, + "date": "2022-07-15", + "sha1": "37aa48be27284e3fa82fd753897651c079eccd1e", + "md5": "9117a631c81eedb25fc21007bb132659", + "sha256": "ddb6ac2e3aaa04c0504f4cafadf3e84deaa4a087945216d05f747a468ff22846", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 14.72, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/endpointdiscovery/EndpointDiscoveryProvider.java", + "type": "file", + "name": "EndpointDiscoveryProvider.java", + "base_name": "EndpointDiscoveryProvider", + "extension": ".java", + "size": 714, + "date": "2022-07-15", + "sha1": "00ea447e453f9fef77a6c6232f6d5d2c7fcfdcd9", + "md5": "20d455d37f1b0f4bb58f8a9633bb0f89", + "sha256": "695b0990812e5a2cc646fad321bbb1d15561d6264c4fc026f437dbd3561d5509", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 78.57, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/endpointdiscovery/EndpointDiscoveryProviderChain.java", + "type": "file", + "name": "EndpointDiscoveryProviderChain.java", + "base_name": "EndpointDiscoveryProviderChain", + "extension": ".java", + "size": 1996, + "date": "2022-07-15", + "sha1": "f91295c6e221616d2a2b1fbd1b6dd37d22b5abab", + "md5": "eb7bb4d7dd19c72057264c0cd1389478", + "sha256": "7328e641bed274a50beb31f2331eaa27f03f8805f7bed49761788890f7a024ab", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 39.29, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/endpointdiscovery/EndpointDiscoveryRefreshCache.java", + "type": "file", + "name": "EndpointDiscoveryRefreshCache.java", + "base_name": "EndpointDiscoveryRefreshCache", + "extension": ".java", + "size": 4556, + "date": "2022-07-15", + "sha1": "5742ef5e69342ef6ea6d6812a1ccebf0b1faf353", + "md5": "0b611740a89a982b909ae0a5b189117d", + "sha256": "f0a197478e22dd2d71c31b1e5af1acadf015b2114987066def09a18baa5e64c1", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 16.63, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/endpointdiscovery/EnvironmentVariableEndpointDiscoveryProvider.java", + "type": "file", + "name": "EnvironmentVariableEndpointDiscoveryProvider.java", + "base_name": "EnvironmentVariableEndpointDiscoveryProvider", + "extension": ".java", + "size": 1448, + "date": "2022-07-15", + "sha1": "a088c588e165c409888f8836e618aeccf27f578b", + "md5": "57af7a675e6e44aa911f67f93a300283", + "sha256": "6c603ff2dac2a2c2176ca52153d3afcc0883447c7457d60d642976ac4218e4df", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 52.38, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/endpointdiscovery/SystemPropertyEndpointDiscoveryProvider.java", + "type": "file", + "name": "SystemPropertyEndpointDiscoveryProvider.java", + "base_name": "SystemPropertyEndpointDiscoveryProvider", + "extension": ".java", + "size": 1430, + "date": "2022-07-15", + "sha1": "3c013dac0c157d6259692b7ec9a9e8fbfdc7ef56", + "md5": "0f6c4db313c9b4f4f20a37c67a7a06a7", + "sha256": "712a9d1895dc44db5083c84278b037380c4893d365992e62bfd88ca39cf3c0ee", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 52.38, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event", + "type": "directory", + "name": "event", + "base_name": "event", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 14, + "dirs_count": 1, + "size_count": 53459, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event/DeliveryMode.java", + "type": "file", + "name": "DeliveryMode.java", + "base_name": "DeliveryMode", + "extension": ".java", + "size": 1590, + "date": "2022-07-15", + "sha1": "6b6aad6a9016f944588808a6ec5a08ce16cc17ee", + "md5": "8af1e2c464ca84d8d3755d5b3319d942", + "sha256": "b788b3ef7e29951cb2be510a30bdbf34e4310374664a2de92f9dba83be527509", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 40.1, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event/ProgressEvent.java", + "type": "file", + "name": "ProgressEvent.java", + "base_name": "ProgressEvent", + "extension": ".java", + "size": 7211, + "date": "2022-07-15", + "sha1": "1682a14c5645f1dbe343aa92308ec3ab81c7d1c9", + "md5": "f1b5fa54c477df57c427d2f9a3b99dc0", + "sha256": "6405cb9876465f9289596e265ca49d78a2fe8312aea111bc769eaa9f71772c7f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.48, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event/ProgressEventFilter.java", + "type": "file", + "name": "ProgressEventFilter.java", + "base_name": "ProgressEventFilter", + "extension": ".java", + "size": 998, + "date": "2022-07-15", + "sha1": "af412852a313a76ba119d30ab5ef86cbb7711276", + "md5": "db11734282d126343c017682e4ab8110", + "sha256": "27665591cd7da3a4701d74fe23a1501480677cf09a6ad4bfc0f3fd7d533b5237", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 56.2, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event/ProgressEventType.java", + "type": "file", + "name": "ProgressEventType.java", + "base_name": "ProgressEventType", + "extension": ".java", + "size": 6003, + "date": "2022-07-15", + "sha1": "e0ed7691abdc45c199a251c2ef24d9ee11a20dde", + "md5": "9833e176ab903d4f4ff5d6bf435863c3", + "sha256": "0b8d82c40f321d7b7dcfb6f0b1fb3b1b68ad5055ddb6375c40d141f2acfebd55", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.22, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event/ProgressInputStream.java", + "type": "file", + "name": "ProgressInputStream.java", + "base_name": "ProgressInputStream", + "extension": ".java", + "size": 7012, + "date": "2022-07-15", + "sha1": "00554b28abf5c7231284f210cfa744be82e8a3ca", + "md5": "5cc57b3cfdef5f0e17886fc3732b7034", + "sha256": "02ab3cb67d0c1d6aab2ad48051bf1ae644240810d547f32e52b689255d59d411", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 10.91, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event/ProgressListener.java", + "type": "file", + "name": "ProgressListener.java", + "base_name": "ProgressListener", + "extension": ".java", + "size": 4501, + "date": "2022-07-15", + "sha1": "7666df75cf0be86387dfe00773bc0a415638c0d8", + "md5": "bf777fe015b4b26a2ce04df39a45315e", + "sha256": "485beec8addcd714d7c2bcc7f2683c07f907a09c9afee8ec34baf3fcb830ede6", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 17.11, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event/ProgressListenerChain.java", + "type": "file", + "name": "ProgressListenerChain.java", + "base_name": "ProgressListenerChain", + "extension": ".java", + "size": 3795, + "date": "2022-07-15", + "sha1": "8ae5027e0c00efbb5a1567df1101a3b36c5128b2", + "md5": "b0dbd4597f7c149ea1d62ca6c48eb3e5", + "sha256": "9970518d01803e1a62a93f7efb75178456f79b1574588f76b41735af8a7fffc9", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 20.64, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event/ProgressTracker.java", + "type": "file", + "name": "ProgressTracker.java", + "base_name": "ProgressTracker", + "extension": ".java", + "size": 2225, + "date": "2022-07-15", + "sha1": "3a3c6615d1a60674b696471e919d6c3c413e9e0e", + "md5": "33ac6157e5e72a14296d38cd27fdd3b4", + "sha256": "752a718ab588960dc1e47e23a1e80d0ea71b5f126ef38edafd72238deae2d165", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 35.0, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event/RequestProgressInputStream.java", + "type": "file", + "name": "RequestProgressInputStream.java", + "base_name": "RequestProgressInputStream", + "extension": ".java", + "size": 1396, + "date": "2022-07-15", + "sha1": "d325f317e4a81d3706d2fea4eafb3266097b27c6", + "md5": "ba137ad6413196e377df93c0d3c13ea3", + "sha256": "aec745117ca393b856f0225ae09a5c5ca98d42163e533a83f338ca781d7bf531", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 51.68, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event/ResponseProgressInputStream.java", + "type": "file", + "name": "ResponseProgressInputStream.java", + "base_name": "ResponseProgressInputStream", + "extension": ".java", + "size": 1401, + "date": "2022-07-15", + "sha1": "5bfb3e4cf4756f648d4b45c59485790634bdfbea", + "md5": "12173614250368b5b781606de096bb5c", + "sha256": "b76f3b14548863d6228743a8b502e70717c2000c4bf124be2aee601960ec4e67", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 51.68, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event/SDKProgressPublisher.java", + "type": "file", + "name": "SDKProgressPublisher.java", + "base_name": "SDKProgressPublisher", + "extension": ".java", + "size": 10449, + "date": "2022-07-15", + "sha1": "cdfb69a091f40e7f17ddad291c1b7c2511e5cdcd", + "md5": "c4dc950668c3b8fdce4e3c65640a1b31", + "sha256": "ea6be676b4aa0ce60fe7e3ce0c39fdae1f9237294bbb7c4afeb7aa5b60d7ec98", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 7.24, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event/SyncProgressListener.java", + "type": "file", + "name": "SyncProgressListener.java", + "base_name": "SyncProgressListener", + "extension": ".java", + "size": 930, + "date": "2022-07-15", + "sha1": "bbef8c087cf3d6bdb628a2dede901395a7590d37", + "md5": "dcaa7006157ef4fa6007955d972f75d2", + "sha256": "7b2915e5e32516b2a3cffd97978be99273af7b2b1afa4d88437e2b771deb3f87", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 64.17, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event/request", + "type": "directory", + "name": "request", + "base_name": "request", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 5948, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event/request/Progress.java", + "type": "file", + "name": "Progress.java", + "base_name": "Progress", + "extension": ".java", + "size": 2103, + "date": "2022-07-15", + "sha1": "8aee44f711a3a1babe9cfbe9c37d24b02cc00110", + "md5": "69fec2f1ebf8a602c4fe00282d14c621", + "sha256": "2138ed6d6ead850ff3211639fe98e00f0fa7d762a3216fb0548d5d2134fccf80", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 32.49, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/event/request/ProgressSupport.java", + "type": "file", + "name": "ProgressSupport.java", + "base_name": "ProgressSupport", + "extension": ".java", + "size": 3845, + "date": "2022-07-15", + "sha1": "a4d8dd58e3a42aacb396d9fd6b442255b0a93807", + "md5": "1133ef6cf94cdfc307b464a43737db11", + "sha256": "c9300206be99d08492a727503855e72faa824fa33407f95c53745f8e508cce5c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 19.85, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/handlers", + "type": "directory", + "name": "handlers", + "base_name": "handlers", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 12, + "dirs_count": 0, + "size_count": 40337, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/handlers/AbstractRequestHandler.java", + "type": "file", + "name": "AbstractRequestHandler.java", + "base_name": "AbstractRequestHandler", + "extension": ".java", + "size": 1105, + "date": "2022-07-15", + "sha1": "f1c37460c880d118f2edf68c75e4293924f3da0f", + "md5": "392481318855efbe83bce9475ccb7070", + "sha256": "3ecfe23eae5761050b341b6de851a15e923deb89daf0469d2b3765e57e9dae59", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 54.23, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/handlers/AsyncHandler.java", + "type": "file", + "name": "AsyncHandler.java", + "base_name": "AsyncHandler", + "extension": ".java", + "size": 1395, + "date": "2022-07-15", + "sha1": "f4257e0719f6083b78e57395a9de7f20431c97ea", + "md5": "b36fe5edc089ed0e05ae19cc9f4c3203", + "sha256": "e8e316625432e79adfaf41f5c7fb4ee985b774b82137dc75871eeae76b8d5b36", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 42.54, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/handlers/CredentialsRequestHandler.java", + "type": "file", + "name": "CredentialsRequestHandler.java", + "base_name": "CredentialsRequestHandler", + "extension": ".java", + "size": 1560, + "date": "2022-07-15", + "sha1": "43c6f8e7825ed070d56f8b4d07f80439bf90bca7", + "md5": "e2ff3673d00a9499cc78456c5f7a6333", + "sha256": "07f1bb1d821fb3806be723f2a9113bcd13181e8293b2e8c5bb7aa6bfc18c809c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 39.29, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/handlers/HandlerAfterAttemptContext.java", + "type": "file", + "name": "HandlerAfterAttemptContext.java", + "base_name": "HandlerAfterAttemptContext", + "extension": ".java", + "size": 4354, + "date": "2022-07-15", + "sha1": "fe256c193516e2a4d9db480cd58a6572bf34384f", + "md5": "79adda7417892a15a8165054cbd97e3b", + "sha256": "d6b76e2e591903ba2d9006466f991ebf98c751b45708245bc1399e0b31b394f5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 18.51, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/handlers/HandlerBeforeAttemptContext.java", + "type": "file", + "name": "HandlerBeforeAttemptContext.java", + "base_name": "HandlerBeforeAttemptContext", + "extension": ".java", + "size": 2358, + "date": "2022-07-15", + "sha1": "284628e938ed9ac5f499846025efe9574d592592", + "md5": "b3e81600ede8436413c70df134fa0c41", + "sha256": "ebe50d614c59e5fca6582c74c4fc1fbfa99f116f4c2f63a492570c6775d67481", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 35.16, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/handlers/HandlerChainFactory.java", + "type": "file", + "name": "HandlerChainFactory.java", + "base_name": "HandlerChainFactory", + "extension": ".java", + "size": 6792, + "date": "2022-07-15", + "sha1": "0ffc4b6c91549a7abc8c9115d08b6e6acd142a4b", + "md5": "c870954d1736f45a74084f52a97a341d", + "sha256": "d987ca63f590046a5c8eac7b1fb5800e2e70bea6abece870a9c4d156b151fa3e", + "mime_type": "text/x-Algol68", + "file_type": "Algol 68 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 13.95, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/handlers/HandlerContextKey.java", + "type": "file", + "name": "HandlerContextKey.java", + "base_name": "HandlerContextKey", + "extension": ".java", + "size": 4672, + "date": "2022-07-15", + "sha1": "e94ce866d83a0a3117b4d48e23256742c5f0acfd", + "md5": "ac24843c7aa7d6c9027e8beaf2ece11e", + "sha256": "f49f9e7427c0b3a8f2fcaa2cd2bc53742a5bad0928b2bd405bf9790680b52936", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 15.68, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/handlers/IRequestHandler2.java", + "type": "file", + "name": "IRequestHandler2.java", + "base_name": "IRequestHandler2", + "extension": ".java", + "size": 6675, + "date": "2022-07-15", + "sha1": "0b06dd06fcc4c6c48b0779380a32a06461513fec", + "md5": "17169acfff0c94b20e1cf7c5c3304230", + "sha256": "30baa3547863a1642f1bdfca899e96e868f8ca9da55abbe3bc3f84f971765a7d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.42, + "copyrights": [ + { + "copyright": "Copyright (c) 2016. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/handlers/RequestHandler.java", + "type": "file", + "name": "RequestHandler.java", + "base_name": "RequestHandler", + "extension": ".java", + "size": 2017, + "date": "2022-07-15", + "sha1": "23162c9386709c470bbaf53563cb0c0786938cb4", + "md5": "e309b6f496a603d03b6f18f88195b5ad", + "sha256": "e58058e4240443a4ff7a8664372c42a2a397d45e2911749798d87bb6045fe2bc", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 30.08, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/handlers/RequestHandler2.java", + "type": "file", + "name": "RequestHandler2.java", + "base_name": "RequestHandler2", + "extension": ".java", + "size": 2611, + "date": "2022-07-15", + "sha1": "4bcf1555550dc835667c1a450a9eca76c39f715b", + "md5": "2443ac1af702e3f8c5d1fe75f0e1a6c1", + "sha256": "b9bd8ad4993cf3f03f4da2b2de3365e53f77bc9c5b6b4209d7b6b46bfa06f089", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 26.74, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/handlers/RequestHandler2Adaptor.java", + "type": "file", + "name": "RequestHandler2Adaptor.java", + "base_name": "RequestHandler2Adaptor", + "extension": ".java", + "size": 2443, + "date": "2022-07-15", + "sha1": "a61b71fc600c4e198ca12c4826c0262305e7c7a6", + "md5": "a6f1b7aa832cdc8c6bd6d212f8e03eed", + "sha256": "24f7cf2c3113592faffc8de3a1a44199fa71fe5140cd7b757964d50df520bdc4", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 31.3, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/handlers/StackedRequestHandler.java", + "type": "file", + "name": "StackedRequestHandler.java", + "base_name": "StackedRequestHandler", + "extension": ".java", + "size": 4355, + "date": "2022-07-15", + "sha1": "f28a44c858c5aab8a027bec612948bcfe489bb1a", + "md5": "f1197b351eddf12caa41d28aac26db31", + "sha256": "624e1672e9115265835da3020a948b3dc3f0f4e561307bb0d7f6734ec2f638b0", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 20.42, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http", + "type": "directory", + "name": "http", + "base_name": "http", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 65, + "dirs_count": 20, + "size_count": 322866, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/AbstractFileTlsKeyManagersProvider.java", + "type": "file", + "name": "AbstractFileTlsKeyManagersProvider.java", + "base_name": "AbstractFileTlsKeyManagersProvider", + "extension": ".java", + "size": 2511, + "date": "2022-07-15", + "sha1": "e3d384bde134fa43f65fe56d911bab069da04be6", + "md5": "d3e469c42c6987a89ea5d763c4f46b1d", + "sha256": "b9c41b9b6f6fae965b1ff2bb86e83feb44f702a0783d5a17a26f14d7c4b79ca9", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 28.95, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/AmazonHttpClient.java", + "type": "file", + "name": "AmazonHttpClient.java", + "base_name": "AmazonHttpClient", + "extension": ".java", + "size": 95065, + "date": "2022-07-15", + "sha1": "b9fc39de7f47a654aa4fdda2db6987dead2dc770", + "md5": "cbd8bbc3e906b60f6e1530d2697c0b1b", + "sha256": "ff19c926e2751f48c7caaa64ebb736612da664084b54b795cf9dcb973bcc11e0", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 1.08, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/AwsErrorResponseHandler.java", + "type": "file", + "name": "AwsErrorResponseHandler.java", + "base_name": "AwsErrorResponseHandler", + "extension": ".java", + "size": 3866, + "date": "2022-07-15", + "sha1": "10ec437f920d8dfe48c439f5780afd5c97eead2e", + "md5": "31ef13ad7289201bbe54cf5b2beede04", + "sha256": "7b87710fd3c8abd2f5f7ed955085d9adce60d3cd2c5a2624f258cbff57541d4c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 23.12, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/DefaultErrorResponseHandler.java", + "type": "file", + "name": "DefaultErrorResponseHandler.java", + "base_name": "DefaultErrorResponseHandler", + "extension": ".java", + "size": 9897, + "date": "2022-07-15", + "sha1": "ac8602f75eaec5acd17a8e71507014b2a0df95f2", + "md5": "4cae01ae12152eb668ff23a4cf55dcfd", + "sha256": "3c8270a4d82eaa9b7eaa71fea0381f698f4f194ff9abb0f22b186f6645954020", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 8.11, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/DelegatingDnsResolver.java", + "type": "file", + "name": "DelegatingDnsResolver.java", + "base_name": "DelegatingDnsResolver", + "extension": ".java", + "size": 1350, + "date": "2022-07-15", + "sha1": "cb2e8ad592aad856dfcd0aeef55711f393f6d8cd", + "md5": "f253ea6b8b12a7a3a64681c7919e3c43", + "sha256": "393af6757fde69e634f1e80659ca17e3c7698c719dffa20a6a2059f095e5e435", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 45.29, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/ExecutionContext.java", + "type": "file", + "name": "ExecutionContext.java", + "base_name": "ExecutionContext", + "extension": ".java", + "size": 9870, + "date": "2022-07-15", + "sha1": "f556682909c2864dd97b1ac360cffb67b40bbff5", + "md5": "9fbc03450f2ebf48a00e4528b4fdd6f0", + "sha256": "4703c541ff96ebb2354160343cab3df42fa0fa0a11b532390b64072c5209fc5b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 8.6, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/FileStoreTlsKeyManagersProvider.java", + "type": "file", + "name": "FileStoreTlsKeyManagersProvider.java", + "base_name": "FileStoreTlsKeyManagersProvider", + "extension": ".java", + "size": 1919, + "date": "2022-07-15", + "sha1": "b2a91008cf8130432048c8595d57bc04cde63a45", + "md5": "d32e0bee7899bd395a94459f04da72f7", + "sha256": "2ce112821d8b56a1c7a464e674a87c2f66cb127e224402afd566d6e7bf416a75", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 36.15, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/HttpMethodName.java", + "type": "file", + "name": "HttpMethodName.java", + "base_name": "HttpMethodName", + "extension": ".java", + "size": 1486, + "date": "2022-07-15", + "sha1": "b897aa5357c5310753bb0f75ddf5c1492eede10b", + "md5": "d344f7f9084b4e09840e47bd5b136242", + "sha256": "377b7d53b08489c72e67cb1f2281bc26ab076a4ffd49c92a71f26bdc0c6b3d4b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 44.51, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/HttpResponse.java", + "type": "file", + "name": "HttpResponse.java", + "base_name": "HttpResponse", + "extension": ".java", + "size": 6665, + "date": "2022-07-15", + "sha1": "d938915b686cf642d5532dd0efd04bd7538cd1f3", + "md5": "9bd9c8398eefc960353ef1666f0672d0", + "sha256": "9b0f15086478ff0053295e6d9ef7ef663b3876e945ad44631aed5bce138507bc", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 10.89, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/HttpResponseHandler.java", + "type": "file", + "name": "HttpResponseHandler.java", + "base_name": "HttpResponseHandler", + "extension": ".java", + "size": 3152, + "date": "2022-07-15", + "sha1": "2757c7ed90a55eb853cad0faa7fa0083704ed213", + "md5": "c47d0958acf9f6cf14eccfb8494af6d1", + "sha256": "820c6e02ab6072dde1ae8d0058475287c14adefb055db19e004884e30796f012", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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 * A copy of the License is located at\r\n *\r\n * http://aws.amazon.com/apache2.0\r\n *\r\n * or in the \"license\" file accompanying this file. This file is distributed\r\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\r\n * express or implied. See the License for the specific language governing\r\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 18.97, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/IdleConnectionReaper.java", + "type": "file", + "name": "IdleConnectionReaper.java", + "base_name": "IdleConnectionReaper", + "extension": ".java", + "size": 7600, + "date": "2022-07-15", + "sha1": "18f51346bf5f4827741cdc904b312fd4289d5056", + "md5": "bb216c856650c5385fff14024ade265a", + "sha256": "7edadd375729c539cf369990a09f5deaa25eaa46e00be60e2ebc5c9c5684e9cf", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.58, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/JsonErrorResponseHandler.java", + "type": "file", + "name": "JsonErrorResponseHandler.java", + "base_name": "JsonErrorResponseHandler", + "extension": ".java", + "size": 9089, + "date": "2022-07-15", + "sha1": "d3dcd7a334b457f7c3cea4f2346876cd1bd28a5f", + "md5": "03c5c2170d5a14c66ebb1505d24116b8", + "sha256": "28b737fe20fd2407b3a3bd69037fb962d12bd53abcdc5d10f00382b8cf429051", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 10.72, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/JsonResponseHandler.java", + "type": "file", + "name": "JsonResponseHandler.java", + "base_name": "JsonResponseHandler", + "extension": ".java", + "size": 7588, + "date": "2022-07-15", + "sha1": "f6d12e0715ca6e5bd2aa1252b59fbd664d662163", + "md5": "918b4e9e929cc3b5cc0e39c7390485d0", + "sha256": "7404630ec3c97ef2fbec9d06e96b50ff7ea1bffa6bfcba5cf2514d642545d6bd", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 14, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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 * A copy of the License is located at\r\n *\r\n * http://aws.amazon.com/apache2.0\r\n *\r\n * or in the \"license\" file accompanying this file. This file is distributed\r\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\r\n * express or implied. See the License for the specific language governing\r\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.37, + "copyrights": [ + { + "copyright": "Copyright (c) 2016 Amazon.com, Inc. or its affiliates", + "start_line": 3, + "end_line": 3 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 3, + "end_line": 3 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/NoneTlsKeyManagersProvider.java", + "type": "file", + "name": "NoneTlsKeyManagersProvider.java", + "base_name": "NoneTlsKeyManagersProvider", + "extension": ".java", + "size": 1254, + "date": "2022-07-15", + "sha1": "fec35532047d1c5cdf5ebe8d0fe81028fc064541", + "md5": "28ac64afe3ec4479738a99b5d0653dd4", + "sha256": "022d43f54dfa4926ade4fb07fcb61f8fd5444f271f20aa950983b770e0b95487", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 50.99, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/RepeatableInputStreamRequestEntity.java", + "type": "file", + "name": "RepeatableInputStreamRequestEntity.java", + "base_name": "RepeatableInputStreamRequestEntity", + "extension": ".java", + "size": 6542, + "date": "2022-07-15", + "sha1": "1acfd6d42c1489ec8d1f47024f51a0b9b67446af", + "md5": "6bfa8fb52588db71c35db3c85b2e515c", + "sha256": "95f784114edb5f72f1d3bfe54e59afe4c31b600fb26b7603081cdb674d61ebfe", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.02, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/SdkHttpMetadata.java", + "type": "file", + "name": "SdkHttpMetadata.java", + "base_name": "SdkHttpMetadata", + "extension": ".java", + "size": 2726, + "date": "2022-07-15", + "sha1": "1c726f6cb21971b70f9b43cc6a2aa89c091a39e7", + "md5": "f57a4f23be91c9708fe273d4a593226e", + "sha256": "fcb87e0eb561be624bfc17a83694c1dd668f4697ce42e3f9b69d20f378c56bc1", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.5, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/StaxResponseHandler.java", + "type": "file", + "name": "StaxResponseHandler.java", + "base_name": "StaxResponseHandler", + "extension": ".java", + "size": 8193, + "date": "2022-07-15", + "sha1": "ec34466ceb24378af8a272005f089f3adfba8c19", + "md5": "ec61db93d7fe2dae226851c5ac7404ce", + "sha256": "b8047a187cbd36ed3a1c61f574c82caa250a3a110cdaa7f209d3b0d4e2efbd53", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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 * A copy of the License is located at\r\n *\r\n * http://aws.amazon.com/apache2.0\r\n *\r\n * or in the \"license\" file accompanying this file. This file is distributed\r\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\r\n * express or implied. See the License for the specific language governing\r\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 10.01, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/SystemPropertyTlsKeyManagersProvider.java", + "type": "file", + "name": "SystemPropertyTlsKeyManagersProvider.java", + "base_name": "SystemPropertyTlsKeyManagersProvider", + "extension": ".java", + "size": 2701, + "date": "2022-07-15", + "sha1": "1d7c5c8b19c9f3ef0b4433006db9c4742ae078d0", + "md5": "ac361830291c484bc971ac2e22398537", + "sha256": "8f6981f265ec3f2e377bbbafc7ab4e0c96636ea15e508b76f94df0c618a8e2a7", + "mime_type": "text/html", + "file_type": "HTML document, 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.16, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/TlsKeyManagersProvider.java", + "type": "file", + "name": "TlsKeyManagersProvider.java", + "base_name": "TlsKeyManagersProvider", + "extension": ".java", + "size": 901, + "date": "2022-07-15", + "sha1": "cb4701b291a81a235af1c9a3c830d2394922320b", + "md5": "bdab639e6663196631f38a8ff7fb0655", + "sha256": "cf17072382692c589dd911d1685c5da9705e4d0b49f1eae10548be068cfc88b5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 61.11, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/UnreliableTestConfig.java", + "type": "file", + "name": "UnreliableTestConfig.java", + "base_name": "UnreliableTestConfig", + "extension": ".java", + "size": 2300, + "date": "2022-07-15", + "sha1": "0ded4d3fea7631147231ede87e8cc5b0a6f33fe9", + "md5": "4803f067dd0bf37532b71e56ec008e69", + "sha256": "4f9987829160f01495c3eb7e732c05aaa224fb8ed4eb6911209be7d0ae621b9d", + "mime_type": "text/x-c++", + "file_type": "C++ 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 33.92, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache", + "type": "directory", + "name": "apache", + "base_name": "apache", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 10, + "dirs_count": 5, + "size_count": 52233, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache/SdkProxyRoutePlanner.java", + "type": "file", + "name": "SdkProxyRoutePlanner.java", + "base_name": "SdkProxyRoutePlanner", + "extension": ".java", + "size": 2838, + "date": "2022-07-15", + "sha1": "ec8e0b703e7ea8630f9e3d163221c91615eade83", + "md5": "497794b42fd447374aa2f72dc2216b34", + "sha256": "8824df5bc1d8c1b8daa01d3cbec5d7fd14a4db1a7884ec29095b2afaf74209d7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.5, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache/client", + "type": "directory", + "name": "client", + "base_name": "client", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 5, + "dirs_count": 1, + "size_count": 22176, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache/client/impl", + "type": "directory", + "name": "impl", + "base_name": "impl", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 22176, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache/client/impl/ApacheConnectionManagerFactory.java", + "type": "file", + "name": "ApacheConnectionManagerFactory.java", + "base_name": "ApacheConnectionManagerFactory", + "extension": ".java", + "size": 9125, + "date": "2022-07-15", + "sha1": "36992d4844460b292eadf4f41f1c05564d0eaef7", + "md5": "e259f69508c2607ebc42cc6e2efa76c2", + "sha256": "f07f597297661edf57b4c6be6b7e6a1d140255dff5ea915641dec42f061d2545", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.96, + "copyrights": [ + { + "copyright": "Copyright (c) 2016. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache/client/impl/ApacheHttpClientFactory.java", + "type": "file", + "name": "ApacheHttpClientFactory.java", + "base_name": "ApacheHttpClientFactory", + "extension": ".java", + "size": 4712, + "date": "2022-07-15", + "sha1": "070ecca3497349c3e743f4320fffab0bb6d869b5", + "md5": "56a2880da799ca160b42340ff1fde598", + "sha256": "da6ff4eed4d109ecf59bc233f064f169db9a8ac81f12228047c7150714190972", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 17.82, + "copyrights": [ + { + "copyright": "Copyright (c) 2016. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache/client/impl/ConnectionManagerAwareHttpClient.java", + "type": "file", + "name": "ConnectionManagerAwareHttpClient.java", + "base_name": "ConnectionManagerAwareHttpClient", + "extension": ".java", + "size": 1096, + "date": "2022-07-15", + "sha1": "37bb919331b9bc8892836f8ea202112694964af4", + "md5": "5cedf3fa199bf9fbdca280c10d113a30", + "sha256": "d25c18a4f6fff462158092cf07b8a1c6134fd0124bedfbf0c858183d654177a4", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 55.4, + "copyrights": [ + { + "copyright": "Copyright (c) 2016. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache/client/impl/CRC32ChecksumResponseInterceptor.java", + "type": "file", + "name": "CRC32ChecksumResponseInterceptor.java", + "base_name": "CRC32ChecksumResponseInterceptor", + "extension": ".java", + "size": 3224, + "date": "2022-07-15", + "sha1": "f055575a204de53f497b0a1d353180227fddfe88", + "md5": "9010442ed1af7f5d41d4fb3e48c3a8a4", + "sha256": "e65c801713b9abb4fce397414d15da1ba608b79ce522fe1c1505628e85e4be8f", + "mime_type": "text/html", + "file_type": "HTML document, 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 23.33, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache/client/impl/SdkHttpClient.java", + "type": "file", + "name": "SdkHttpClient.java", + "base_name": "SdkHttpClient", + "extension": ".java", + "size": 4019, + "date": "2022-07-15", + "sha1": "a5d3e844fc601cc22168cfd760a56cadbb13c228", + "md5": "ac763dce41f7f61dd7dd8db030bcf73a", + "sha256": "d094bf51b916174dda988ee272d8da493c835323d1b611bad0515d113669cdd8", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 19.35, + "copyrights": [ + { + "copyright": "Copyright (c) 2016. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache/request", + "type": "directory", + "name": "request", + "base_name": "request", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 2, + "dirs_count": 1, + "size_count": 15173, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache/request/impl", + "type": "directory", + "name": "impl", + "base_name": "impl", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 15173, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache/request/impl/ApacheHttpRequestFactory.java", + "type": "file", + "name": "ApacheHttpRequestFactory.java", + "base_name": "ApacheHttpRequestFactory", + "extension": ".java", + "size": 14079, + "date": "2022-07-15", + "sha1": "93d3db112480f9b7024c0f3e24e8b9bb32078b08", + "md5": "7780e49afa04dd91b2a185e06728d615", + "sha256": "7d8c34b1de84c8bdf453378b5c7b020c1a2fa94fef925e0c7da20e798ad4be1f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 5.73, + "copyrights": [ + { + "copyright": "Copyright (c) 2016-2019. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache/request/impl/HttpGetWithBody.java", + "type": "file", + "name": "HttpGetWithBody.java", + "base_name": "HttpGetWithBody", + "extension": ".java", + "size": 1094, + "date": "2022-07-15", + "sha1": "b64225a5b2ce9ac49fb988d53af68f680b75a041", + "md5": "82a6f85c0e4aef05051617315efa68a6", + "sha256": "279fe39a92ed960ba6ff61acfebf8e62186f142bae167998f59edbb3f78d19e1", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 54.61, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache/utils", + "type": "directory", + "name": "utils", + "base_name": "utils", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 12046, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache/utils/ApacheUtils.java", + "type": "file", + "name": "ApacheUtils.java", + "base_name": "ApacheUtils", + "extension": ".java", + "size": 10950, + "date": "2022-07-15", + "sha1": "aab1bc79f5bd2289a4bfb38198ac944df0f2f7d1", + "md5": "69c58a764558c6321a92cca15481b473", + "sha256": "2870b83fc3a21f332b8bda2854bc03a55da8c99de8c8cb75b616e3dcc146e29c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 7.28, + "copyrights": [ + { + "copyright": "Copyright (c) 2016-2019. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/apache/utils/HttpContextUtils.java", + "type": "file", + "name": "HttpContextUtils.java", + "base_name": "HttpContextUtils", + "extension": ".java", + "size": 1096, + "date": "2022-07-15", + "sha1": "82037b285a924538aeab67edc8ff350e0c857c62", + "md5": "e1b64323f87b07cda6b75e5c1f1714fc", + "sha256": "993a2e9a8d552dbf42c744513c1a18304e1e5a81c749bbf78b522ae5d6e7b275", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 54.23, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/client", + "type": "directory", + "name": "client", + "base_name": "client", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 1855, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/client/ConnectionManagerFactory.java", + "type": "file", + "name": "ConnectionManagerFactory.java", + "base_name": "ConnectionManagerFactory", + "extension": ".java", + "size": 935, + "date": "2022-07-15", + "sha1": "cd801d898fcca75c0e3f1456672286713b0f53fa", + "md5": "11514da5828d106376ee761f99199521", + "sha256": "44744a1b56a3724324f34652671e2ed16737cf08d4703a8d5dee9ede5704a9c6", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 59.23, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/client/HttpClientFactory.java", + "type": "file", + "name": "HttpClientFactory.java", + "base_name": "HttpClientFactory", + "extension": ".java", + "size": 920, + "date": "2022-07-15", + "sha1": "d8e5acf63b0327b2682c8d3f91c04ae9c6dd3a56", + "md5": "ba3f564c18dc471d766792fda5339f54", + "sha256": "14cb16691e563c2240858e412dadb64b98474185ceb70357a588307a31ebb6ee", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 59.69, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/conn", + "type": "directory", + "name": "conn", + "base_name": "conn", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 10, + "dirs_count": 2, + "size_count": 31116, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/conn/ClientConnectionManagerFactory.java", + "type": "file", + "name": "ClientConnectionManagerFactory.java", + "base_name": "ClientConnectionManagerFactory", + "extension": ".java", + "size": 3259, + "date": "2022-07-15", + "sha1": "5908017f4c947ea58940d538bfcd36355c1d0a7f", + "md5": "c4938f918315a67cefdc08f9775d8f38", + "sha256": "992dd6d7fc551d15e316f3e980e735ea16e629dd20f92530ad1315ef5b38f3ca", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.58, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/conn/ClientConnectionRequestFactory.java", + "type": "file", + "name": "ClientConnectionRequestFactory.java", + "base_name": "ClientConnectionRequestFactory", + "extension": ".java", + "size": 3189, + "date": "2022-07-15", + "sha1": "2c713ab0d06679e08f7140643b370ee3a01d11d2", + "md5": "5faec2592686013325c4560cfaa88936", + "sha256": "a1c0168b6be72e231e599b8648233dff380fee6fde8a0439ae0a689e2cd54bac", + "mime_type": "text/x-c++", + "file_type": "C++ 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.16, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/conn/SdkConnectionKeepAliveStrategy.java", + "type": "file", + "name": "SdkConnectionKeepAliveStrategy.java", + "base_name": "SdkConnectionKeepAliveStrategy", + "extension": ".java", + "size": 1893, + "date": "2022-07-15", + "sha1": "04a6c90b05ee9664a15fcc09394726f43933ecc3", + "md5": "76db5731b77f21bac6fb23407ac82cbf", + "sha256": "6fb6cc3389777362480334ca871c463d2f741fd131933aa0f712ce2a22d77694", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 36.32, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/conn/SdkPlainSocketFactory.java", + "type": "file", + "name": "SdkPlainSocketFactory.java", + "base_name": "SdkPlainSocketFactory", + "extension": ".java", + "size": 1250, + "date": "2022-07-15", + "sha1": "82a5468f0b29c050991feb88a66602345c69a8c1", + "md5": "fdbc440f77def07e5d856edc6725adca", + "sha256": "31250e1af60d7357034cd1184dd770c54dcf9daa9b3fbb1d9c3e2152ebbdd72e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 48.12, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/conn/Wrapped.java", + "type": "file", + "name": "Wrapped.java", + "base_name": "Wrapped", + "extension": ".java", + "size": 730, + "date": "2022-07-15", + "sha1": "dedb1e0454a66ea871e9e9a365b5fcdf26c6871b", + "md5": "f9dfadf0932a18aa083e83ce35504c9d", + "sha256": "b900380f2f157c43a0cb85195adcd14fa1abeaffe9dcae225af2da70cfd549fc", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 72.64, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/conn/ssl", + "type": "directory", + "name": "ssl", + "base_name": "ssl", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 5, + "dirs_count": 1, + "size_count": 20795, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/conn/ssl/MasterSecretValidators.java", + "type": "file", + "name": "MasterSecretValidators.java", + "base_name": "MasterSecretValidators", + "extension": ".java", + "size": 3588, + "date": "2022-07-15", + "sha1": "e402154f23ae9701af3d1513a7aec3a5b41c25e8", + "md5": "2aaaf4299aabb5d535e26f153c457a77", + "sha256": "d8f39449c1c5d4702bc2f7ea96117e73ab365338022f88c4398fb9778819569c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 19.95, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/conn/ssl/SdkTLSSocketFactory.java", + "type": "file", + "name": "SdkTLSSocketFactory.java", + "base_name": "SdkTLSSocketFactory", + "extension": ".java", + "size": 7927, + "date": "2022-07-15", + "sha1": "ef213746bb58d9114087174dc04c51d0fcdc4f2a", + "md5": "050ef6af8a7515a6a4b088b6c06e4bc6", + "sha256": "fe4df31daa0c00bc9e75b563a688909bc3781f8af46e941984179d4a6ac33488", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.09, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/conn/ssl/ShouldClearSslSessionPredicate.java", + "type": "file", + "name": "ShouldClearSslSessionPredicate.java", + "base_name": "ShouldClearSslSessionPredicate", + "extension": ".java", + "size": 3961, + "date": "2022-07-15", + "sha1": "8a2f3767b80af49790e5d071827d150e1c55646d", + "md5": "3dcd265a67f0d241f349bdbb6b32538c", + "sha256": "927774b388b1fa828941b821cd8eda3bd70265c35ffe0072c497d8002bf631ab", + "mime_type": "text/html", + "file_type": "HTML document, 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 16.14, + "copyrights": [ + { + "copyright": "Copyright (c) 2016. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/conn/ssl/TLSProtocol.java", + "type": "file", + "name": "TLSProtocol.java", + "base_name": "TLSProtocol", + "extension": ".java", + "size": 1411, + "date": "2022-07-15", + "sha1": "a149dfc41fb3c44abb5a7e51eaf5ecf7d72cb6c7", + "md5": "650a1693e85a55ceefa053b9faa4fc3b", + "sha256": "41e5a45b3d9edb9b4db8c78c6e75603b36cf7a035af013fd0547b801cf840a94", + "mime_type": "text/html", + "file_type": "HTML document, 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 38.07, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/conn/ssl/privileged", + "type": "directory", + "name": "privileged", + "base_name": "privileged", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 3908, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/conn/ssl/privileged/PrivilegedMasterSecretValidator.java", + "type": "file", + "name": "PrivilegedMasterSecretValidator.java", + "base_name": "PrivilegedMasterSecretValidator", + "extension": ".java", + "size": 3908, + "date": "2022-07-15", + "sha1": "36e0c2b88b060462062f2e749a3e7c8057fdfa11", + "md5": "e384acf9688cd55f3f0f15c62cdfe2d2", + "sha256": "f29b5ec2f177bebd32dc1e28aa347d0a8590e9c7ca523e3611e1f476b6199eb0", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 19.3, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/exception", + "type": "directory", + "name": "exception", + "base_name": "exception", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1288, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/exception/HttpRequestTimeoutException.java", + "type": "file", + "name": "HttpRequestTimeoutException.java", + "base_name": "HttpRequestTimeoutException", + "extension": ".java", + "size": 1288, + "date": "2022-07-15", + "sha1": "7eb31cbbb825bb1bdb8459bf6857ef73f7d144a8", + "md5": "646350217cc7b9266b2d2fd568a9e05c", + "sha256": "8de62ba324c53e28d381b5de3fe902736097be4eb26c6a06189bce21e0ebab05", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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 * A copy of the License is located at\r\n *\r\n * http://aws.amazon.com/apache2.0\r\n *\r\n * or in the \"license\" file accompanying this file. This file is distributed\r\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\r\n * express or implied. See the License for the specific language governing\r\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 51.33, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/impl", + "type": "directory", + "name": "impl", + "base_name": "impl", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 2, + "dirs_count": 1, + "size_count": 2956, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/impl/client", + "type": "directory", + "name": "client", + "base_name": "client", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 2956, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/impl/client/HttpRequestNoRetryHandler.java", + "type": "file", + "name": "HttpRequestNoRetryHandler.java", + "base_name": "HttpRequestNoRetryHandler", + "extension": ".java", + "size": 1231, + "date": "2022-07-15", + "sha1": "4cd12f8d4d2bb4d8c93ffeae975a62d98c0798f6", + "md5": "91782d79ec53f130424f6b46d38a8ed2", + "sha256": "0a20d20b1c165ca89d52de4b3c69b422cf6149c015df047e28ce992f009f8714", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 53.1, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/impl/client/SdkHttpRequestRetryHandler.java", + "type": "file", + "name": "SdkHttpRequestRetryHandler.java", + "base_name": "SdkHttpRequestRetryHandler", + "extension": ".java", + "size": 1725, + "date": "2022-07-15", + "sha1": "03ee160c3df5047af231a01ffd9f8bec4ac64dc5", + "md5": "b8fa43bcc6e99e7ca68b13ff55a2be79", + "sha256": "3d040bff704b3ebe788353c3094ef3c68f0be41fa6ad3d812eec76b3870ce639", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 42.78, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/protocol", + "type": "directory", + "name": "protocol", + "base_name": "protocol", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 3495, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/protocol/SdkHttpRequestExecutor.java", + "type": "file", + "name": "SdkHttpRequestExecutor.java", + "base_name": "SdkHttpRequestExecutor", + "extension": ".java", + "size": 3495, + "date": "2022-07-15", + "sha1": "77411dcbd0d9ee4c87f429eb56f484f4352fbe4f", + "md5": "5c2ce0d45395dded49bac73c46369b36", + "sha256": "00b6113e4bde8f5a7eebea7213755a2b6d0a3f440d7d8e6b1f137c10b67291e9", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 24.14, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/request", + "type": "directory", + "name": "request", + "base_name": "request", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 1465, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/request/HttpRequestFactory.java", + "type": "file", + "name": "HttpRequestFactory.java", + "base_name": "HttpRequestFactory", + "extension": ".java", + "size": 1465, + "date": "2022-07-15", + "sha1": "8f8fba71b12d961691c0353c9a945ed966a707ab", + "md5": "1bc140d5928f03cdad841d5154ec88b6", + "sha256": "2621e26e32fc59352533f506f0196adf7683a75ba0b1e05350dab7f23335035b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 37.93, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/response", + "type": "directory", + "name": "response", + "base_name": "response", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 7939, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/response/AwsResponseHandlerAdapter.java", + "type": "file", + "name": "AwsResponseHandlerAdapter.java", + "base_name": "AwsResponseHandlerAdapter", + "extension": ".java", + "size": 7939, + "date": "2022-07-15", + "sha1": "1e6f50f0c48a04c0036296401a17bc68c75e8b9a", + "md5": "0c4ce824c89142bc4e7699a5068ff027", + "sha256": "49a865b92f514c6e4c34e5b9d720972a254137ae740dbe56477ec1920cd6547d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 10.27, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/settings", + "type": "directory", + "name": "settings", + "base_name": "settings", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 5750, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/settings/HttpClientSettings.java", + "type": "file", + "name": "HttpClientSettings.java", + "base_name": "HttpClientSettings", + "extension": ".java", + "size": 5750, + "date": "2022-07-15", + "sha1": "1972e6e9997df3ea9c82cb244a6df5c18cf79d78", + "md5": "470814dc5703a7833d162943f3506b66", + "sha256": "5cfe3fe8693c48c4cd59a77d57c035302b319052a3a8c46ccb94e00f26a8be0b", + "mime_type": "text/x-c", + "file_type": "C 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 17.46, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers", + "type": "directory", + "name": "timers", + "base_name": "timers", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 16, + "dirs_count": 2, + "size_count": 30094, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/package-info.java", + "type": "file", + "name": "package-info.java", + "base_name": "package-info", + "extension": ".java", + "size": 981, + "date": "2022-07-15", + "sha1": "72115e1c3b900581f5d409e9ad1ef2590242b347", + "md5": "0325e59e12ecbff5158b74f314f70174", + "sha256": "1bc40ec04f47dbf402cd4211d99338f5738ce9a3ceb8bcd36f7dc36e505528b9", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 55.0, + "copyrights": [ + { + "copyright": "Copyright (c) 2016. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/TimeoutThreadPoolBuilder.java", + "type": "file", + "name": "TimeoutThreadPoolBuilder.java", + "base_name": "TimeoutThreadPoolBuilder", + "extension": ".java", + "size": 3696, + "date": "2022-07-15", + "sha1": "cdfca336e011e4f8ec14c6531cda6f8263a6b332", + "md5": "c9eecd22acde97567cd66a73c180e183", + "sha256": "b66c6fd419eee765acd7c16964b652635f64c6e9c99a2079b64713293680b25c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 21.1, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/client", + "type": "directory", + "name": "client", + "base_name": "client", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 8, + "dirs_count": 0, + "size_count": 14874, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/client/ClientExecutionAbortTask.java", + "type": "file", + "name": "ClientExecutionAbortTask.java", + "base_name": "ClientExecutionAbortTask", + "extension": ".java", + "size": 1491, + "date": "2022-07-15", + "sha1": "10ef7f0d87de22e1897de102e56936c6a68f50de", + "md5": "6c7d50079bd930892752eb58623efdbf", + "sha256": "3c33a0f16b75658b6b1cf1c65ce0e48ceb3a5091234b4a16aac447ee70e76846", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 41.62, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/client/ClientExecutionAbortTaskImpl.java", + "type": "file", + "name": "ClientExecutionAbortTaskImpl.java", + "base_name": "ClientExecutionAbortTaskImpl", + "extension": ".java", + "size": 2355, + "date": "2022-07-15", + "sha1": "cc8b08cef00cd6832e4fd5fc3156888f5235c927", + "md5": "72abbe1a585f7658857352f02e011254", + "sha256": "f645230250d957dfd4131134699ae9c6f63f4789eb2596fdf3feeabb9f8884a4", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 32.22, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/client/ClientExecutionAbortTrackerTask.java", + "type": "file", + "name": "ClientExecutionAbortTrackerTask.java", + "base_name": "ClientExecutionAbortTrackerTask", + "extension": ".java", + "size": 1358, + "date": "2022-07-15", + "sha1": "e530b87c15890bc6de2befffef5f370e161a721f", + "md5": "49715d8adc737134194488bc5ef329ba", + "sha256": "cafd8659b463e90b7da3c68a64ea7f4e3a32b326678a5bc536dfa8585243047e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 45.03, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/client/ClientExecutionAbortTrackerTaskImpl.java", + "type": "file", + "name": "ClientExecutionAbortTrackerTaskImpl.java", + "base_name": "ClientExecutionAbortTrackerTaskImpl", + "extension": ".java", + "size": 2091, + "date": "2022-07-15", + "sha1": "830fd3243d541446306738d6f180213034b5a812", + "md5": "11e9fadf863f99275d7d515d24a3c7e2", + "sha256": "e795a3c776b33bf3d66cb0fedc1a84a6b16b4889ca98cde017131d9847c9e435", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 32.22, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/client/ClientExecutionTimeoutException.java", + "type": "file", + "name": "ClientExecutionTimeoutException.java", + "base_name": "ClientExecutionTimeoutException", + "extension": ".java", + "size": 1059, + "date": "2022-07-15", + "sha1": "a5f63f34441a68b20a3e4b0c8a1db26272beb0d1", + "md5": "0e8b2d7de66544fdebbe0cbc7d3da010", + "sha256": "c7944e537f06705a9a1589b742d69b9d61cc115a3d5c1364e3970ae7e2a48763", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 60.16, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/client/ClientExecutionTimer.java", + "type": "file", + "name": "ClientExecutionTimer.java", + "base_name": "ClientExecutionTimer", + "extension": ".java", + "size": 4100, + "date": "2022-07-15", + "sha1": "30a3e913ca39aa39c62742456407c52872590e14", + "md5": "2964fbc06411dcdb4d67dcbecfccb15a", + "sha256": "dc4d6dc63174525fa1e739153577e069cb59304fbf1f7bf18255112ce86b483b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 18.64, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/client/NoOpClientExecutionAbortTrackerTask.java", + "type": "file", + "name": "NoOpClientExecutionAbortTrackerTask.java", + "base_name": "NoOpClientExecutionAbortTrackerTask", + "extension": ".java", + "size": 1397, + "date": "2022-07-15", + "sha1": "0ce922e30c476744622a19d9607040961c44b997", + "md5": "a5b555fd29eab26d9d86bdd3b432394a", + "sha256": "5f3af07dd59055d68448ea03c65eea7731beaa6546875aa82356260bba68972f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 50.99, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/client/SdkInterruptedException.java", + "type": "file", + "name": "SdkInterruptedException.java", + "base_name": "SdkInterruptedException", + "extension": ".java", + "size": 1023, + "date": "2022-07-15", + "sha1": "40d187e3ccacb68f5105750fce598cf2f7b84f2e", + "md5": "d0d116a0cedf2cc56305b3cc3c6cfad4", + "sha256": "233d2ff1fc31f528f452cb18013646898b46b7f0c5c512d19f3bdb1ecce7bd82", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 61.11, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/request", + "type": "directory", + "name": "request", + "base_name": "request", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 10543, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/request/HttpRequestAbortTask.java", + "type": "file", + "name": "HttpRequestAbortTask.java", + "base_name": "HttpRequestAbortTask", + "extension": ".java", + "size": 888, + "date": "2022-07-15", + "sha1": "3b3ecc4da4b5641264f31c15bb62dc7d440c936f", + "md5": "399d0adc3863a6c1c09645a056d18ed0", + "sha256": "4e6d33e939744eeea7408e330d4f618d95b2d3c15d9dea1976affe8c27503f88", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 64.71, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/request/HttpRequestAbortTaskImpl.java", + "type": "file", + "name": "HttpRequestAbortTaskImpl.java", + "base_name": "HttpRequestAbortTaskImpl", + "extension": ".java", + "size": 1545, + "date": "2022-07-15", + "sha1": "b666a3ce8766b98e101fd786e5b733b71410e885", + "md5": "e978095bd71fccbd7692eda989bbea66", + "sha256": "2b89c769a292e6cb7f7f1654dafe0d9768dfd454fb348f6268717658225663ac", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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 * A copy of the License is located at\r\n *\r\n * http://aws.amazon.com/apache2.0\r\n *\r\n * or in the \"license\" file accompanying this file. This file is distributed\r\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\r\n * express or implied. See the License for the specific language governing\r\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 47.53, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/request/HttpRequestAbortTaskTracker.java", + "type": "file", + "name": "HttpRequestAbortTaskTracker.java", + "base_name": "HttpRequestAbortTaskTracker", + "extension": ".java", + "size": 1331, + "date": "2022-07-15", + "sha1": "53d27575c04922e82339da29ca868c7971cc2b06", + "md5": "f1eec43d465511a8fb69d36d6d0f8e9e", + "sha256": "6ba5069ee2f86ae301b50d30be6838335d0a1ea20ac04eda0feab4ded8b07c9e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 43.75, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/request/HttpRequestAbortTaskTrackerImpl.java", + "type": "file", + "name": "HttpRequestAbortTaskTrackerImpl.java", + "base_name": "HttpRequestAbortTaskTrackerImpl", + "extension": ".java", + "size": 1682, + "date": "2022-07-15", + "sha1": "aa6b7bc7bcd8122dcdfe9aa1196fc52c697a15ce", + "md5": "e84432d81dfc4071e469a42c33de7859", + "sha256": "ec492c2e678ed32219ab2b998de65b628dcd56a7e6982191b1f6540f1b410643", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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 * A copy of the License is located at\r\n *\r\n * http://aws.amazon.com/apache2.0\r\n *\r\n * or in the \"license\" file accompanying this file. This file is distributed\r\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\r\n * express or implied. See the License for the specific language governing\r\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 42.54, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/request/HttpRequestTimer.java", + "type": "file", + "name": "HttpRequestTimer.java", + "base_name": "HttpRequestTimer", + "extension": ".java", + "size": 3867, + "date": "2022-07-15", + "sha1": "5e436157c727f753ab008e81dafa56dd5314e637", + "md5": "a6c4b716c63bfb9592201f1f4a14d13b", + "sha256": "a395abc16bf7649cdcf820b249e4c4f397299fd7fd234730b5c6db21f3b42231", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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 * A copy of the License is located at\r\n *\r\n * http://aws.amazon.com/apache2.0\r\n *\r\n * or in the \"license\" file accompanying this file. This file is distributed\r\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\r\n * express or implied. See the License for the specific language governing\r\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 19.79, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/http/timers/request/NoOpHttpRequestAbortTaskTracker.java", + "type": "file", + "name": "NoOpHttpRequestAbortTaskTracker.java", + "base_name": "NoOpHttpRequestAbortTaskTracker", + "extension": ".java", + "size": 1230, + "date": "2022-07-15", + "sha1": "4d7e57b2957e545fda5490f77322ffe9f157e73c", + "md5": "985074c1025f36b0146f97a3240ac9b1", + "sha256": "4db6be9e25a28030ba9de6efd177d36e45cc62f536fe2a2cbd2f59e17eefce18", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 55.8, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal", + "type": "directory", + "name": "internal", + "base_name": "internal", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 64, + "dirs_count": 3, + "size_count": 188377, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/AmazonWebServiceRequestAdapter.java", + "type": "file", + "name": "AmazonWebServiceRequestAdapter.java", + "base_name": "AmazonWebServiceRequestAdapter", + "extension": ".java", + "size": 2824, + "date": "2022-07-15", + "sha1": "b31e650c4480280321a0f7cf368c1bac996d8e82", + "md5": "34ca7ede004a099160a05603fb2011b4", + "sha256": "74862201b1cc36fcfc125745e7f6f92bad88955cd76ebc4f9ad046c59a500bc0", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 30.31, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/BoundedLinkedHashMap.java", + "type": "file", + "name": "BoundedLinkedHashMap.java", + "base_name": "BoundedLinkedHashMap", + "extension": ".java", + "size": 1427, + "date": "2022-07-15", + "sha1": "1986276406f40202d80659619f317045ddf25bb8", + "md5": "b885bf6f71d38475484da62e368348cb", + "sha256": "7934fa372444b8c1c6eadd097d916baaf287535cf55396e9404fe843070a1fd5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 41.62, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/ConnectionUtils.java", + "type": "file", + "name": "ConnectionUtils.java", + "base_name": "ConnectionUtils", + "extension": ".java", + "size": 4004, + "date": "2022-07-15", + "sha1": "db96abfad61317aaea69f538ce9a3226110f5044", + "md5": "d1af72630176e737142db91ce9ecb4e1", + "sha256": "f423f6179f874c15b6f950479fa0cdf19a5fb0ee5d3e5787e3cce36d0cf82909", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 17.31, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/CRC32MismatchException.java", + "type": "file", + "name": "CRC32MismatchException.java", + "base_name": "CRC32MismatchException", + "extension": ".java", + "size": 1542, + "date": "2022-07-15", + "sha1": "0d8d9d4f3937120ddaebdfe9b7349b15893b2d42", + "md5": "04836a6bc459c9778689f4d86b07d16b", + "sha256": "d70eb8f37f02791829c3ce2fba5da2ad61d51568acba270557e96ba1fcba49dc", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 41.62, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/CredentialsEndpointProvider.java", + "type": "file", + "name": "CredentialsEndpointProvider.java", + "base_name": "CredentialsEndpointProvider", + "extension": ".java", + "size": 1656, + "date": "2022-07-15", + "sha1": "be88d26343d26d7afcf338dfd2219097e056a799", + "md5": "54f9d16fad586a78be83c7e92da034b6", + "sha256": "dedb2250116c3853eecb017b66073a54fba1a5e802b56767475293e4041772f7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 34.01, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/CustomBackoffStrategy.java", + "type": "file", + "name": "CustomBackoffStrategy.java", + "base_name": "CustomBackoffStrategy", + "extension": ".java", + "size": 726, + "date": "2022-07-15", + "sha1": "c6c42008fd27912b9175a4f2986fb5efc65f6315", + "md5": "4e4e185d7a188c04a2420687a468d3ae", + "sha256": "2cf3fa331ffd712882cae92c5c73393a122a8cd805326793ff66888a768f32d8", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 75.49, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/DateTimeJsonSerializer.java", + "type": "file", + "name": "DateTimeJsonSerializer.java", + "base_name": "DateTimeJsonSerializer", + "extension": ".java", + "size": 1250, + "date": "2022-07-15", + "sha1": "9ecc64c2bbb84245231f386555917a08c837e0c5", + "md5": "de581e77581180c78100ac13d9e78f93", + "sha256": "83099a201214851700fdcc56af6abc6fdb04ae6a7e170cefcd77ab971df4a161", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 49.68, + "copyrights": [ + { + "copyright": "Copyright (c) 2016. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/DefaultServiceEndpointBuilder.java", + "type": "file", + "name": "DefaultServiceEndpointBuilder.java", + "base_name": "DefaultServiceEndpointBuilder", + "extension": ".java", + "size": 2787, + "date": "2022-07-15", + "sha1": "b703290f67dcc33d2511c176f0e081376ad62959", + "md5": "e439543a716b777bc8d6870dbb85a900", + "sha256": "e93f0d89962c09f976a204ee42ca6ff443301d26fa33670746c68f03e1b17d1c", + "mime_type": "text/x-c", + "file_type": "C 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 26.64, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/DelegateInputStream.java", + "type": "file", + "name": "DelegateInputStream.java", + "base_name": "DelegateInputStream", + "extension": ".java", + "size": 1740, + "date": "2022-07-15", + "sha1": "06593680625560a1b422c16ccd5ebf8292e8e73f", + "md5": "98c6af074a6f01630b193bf434e32020", + "sha256": "b718c697a89ae98dde6cfcb10ed593c1b0ee948152c65b5efb549258cb5305e5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 35.48, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/DelegateSocket.java", + "type": "file", + "name": "DelegateSocket.java", + "base_name": "DelegateSocket", + "extension": ".java", + "size": 5844, + "date": "2022-07-15", + "sha1": "c723f02f104f397d4efdb7b687f7d2c1d472174d", + "md5": "e2132a51ec31eb2c42c3939159ea4798", + "sha256": "a8d76e37f63093099da6256c0b213fe0fada272838a3d7f9db4d5e0b02a5ed96", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 14.31, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/DelegateSSLSocket.java", + "type": "file", + "name": "DelegateSSLSocket.java", + "base_name": "DelegateSSLSocket", + "extension": ".java", + "size": 7917, + "date": "2022-07-15", + "sha1": "d482d45c10f83122e5a05514e5ab048a47c568bf", + "md5": "8682b0e6568887b64ce46297b7d00a15", + "sha256": "42ed5ff8a635be799369c325e05ecc2618707a46f4620e222dd463f5362410a6", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.44, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/DynamoDBBackoffStrategy.java", + "type": "file", + "name": "DynamoDBBackoffStrategy.java", + "base_name": "DynamoDBBackoffStrategy", + "extension": ".java", + "size": 1003, + "date": "2022-07-15", + "sha1": "d426d951b104bf6cac3756b91b90f5e1809665ef", + "md5": "fac7da7c4a86b1ca6d38e806b62604c0", + "sha256": "9347399f96e99e0bbf20e8d704e40985919acfc0480f8cda4b574405c1fe29c6", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 57.89, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/EC2MetadataClient.java", + "type": "file", + "name": "EC2MetadataClient.java", + "base_name": "EC2MetadataClient", + "extension": ".java", + "size": 5989, + "date": "2022-07-15", + "sha1": "65fdc7b8de25fc7fda6c7eb0a294788501f28cf2", + "md5": "6cce87a2d9e64b3aeed29f5ce8074799", + "sha256": "f01e456998d6608bd2da5c767512ae0b8177972699ab9c5c3f2beafd67e137e3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 12.34, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/EC2ResourceFetcher.java", + "type": "file", + "name": "EC2ResourceFetcher.java", + "base_name": "EC2ResourceFetcher", + "extension": ".java", + "size": 6834, + "date": "2022-07-15", + "sha1": "1c9ab6d7f99d394a2270fb8d0675cd87bd371433", + "md5": "67fae1cdff703931670407c3bef55650", + "sha256": "2f273141440eefd77c620f0cdb05cc62a8d140fd0c605b4fd7d08a119d623264", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.24, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/FIFOCache.java", + "type": "file", + "name": "FIFOCache.java", + "base_name": "FIFOCache", + "extension": ".java", + "size": 2698, + "date": "2022-07-15", + "sha1": "fb3efba433ee8af8216c3a8e4c3d2e95fc32b966", + "md5": "94c9d05bb2f7c053a5944af86ea4a1d2", + "sha256": "f698e90fe5617f0f3004d1d057fbadd89628f09b2c063afb93abdad4caea6d7f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.58, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/IdentityEndpointBuilder.java", + "type": "file", + "name": "IdentityEndpointBuilder.java", + "base_name": "IdentityEndpointBuilder", + "extension": ".java", + "size": 1265, + "date": "2022-07-15", + "sha1": "ecd40691012b3c961b66f1512d339117338f4e15", + "md5": "2ce1bcb61c27d36b00bc46b461701df1", + "sha256": "0bea38cd81536780cad974a27b5138b3be54a57dc28d44a17aafad65610b62aa", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 49.68, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/InstanceMetadataServiceResourceFetcher.java", + "type": "file", + "name": "InstanceMetadataServiceResourceFetcher.java", + "base_name": "InstanceMetadataServiceResourceFetcher", + "extension": ".java", + "size": 4836, + "date": "2022-07-15", + "sha1": "ce27fc9138c4d27e404ddaec47d8afd103773042", + "md5": "a3ef55eb285c831d420f744ba8fbee73", + "sha256": "cd2c587c77a969146bcbfdf0e475f58712e625068f3f469e76111e010f17e7e7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 14.57, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/ListWithAutoConstructFlag.java", + "type": "file", + "name": "ListWithAutoConstructFlag.java", + "base_name": "ListWithAutoConstructFlag", + "extension": ".java", + "size": 1557, + "date": "2022-07-15", + "sha1": "647c6ff1639edac8e1d815801f7e086c016f028a", + "md5": "4a3cb760faed5a1a3188050ac5d4dfe3", + "sha256": "1d659b1daf0beaebf2cac7c8ed73e592e94cd515a2820853647b9e2e6172076d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 42.54, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/MetricAware.java", + "type": "file", + "name": "MetricAware.java", + "base_name": "MetricAware", + "extension": ".java", + "size": 970, + "date": "2022-07-15", + "sha1": "d5068e8b80adc13ce035779bf51b5637b93550c1", + "md5": "31230fe8025b1094bd6a0810aa2a675e", + "sha256": "d0a5335c69dc398fb1e4456c11581bb2126346ce22f8d69166665d417d1652d8", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 55.4, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/MetricsInputStream.java", + "type": "file", + "name": "MetricsInputStream.java", + "base_name": "MetricsInputStream", + "extension": ".java", + "size": 2506, + "date": "2022-07-15", + "sha1": "1c37288b2461444d79716079bde102ebe388118b", + "md5": "a85e4d7dc3343d13ea2865ad464426a6", + "sha256": "652c0ddbfb06517069c64df0cd10ebc125baa9999979ddd211dd5287d2ed362d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 30.08, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/Releasable.java", + "type": "file", + "name": "Releasable.java", + "base_name": "Releasable", + "extension": ".java", + "size": 2590, + "date": "2022-07-15", + "sha1": "6b54e2774731c0e799125ce205e5568262437ce4", + "md5": "2ecabbe3f9aa52ba60ae1c8a7b0b140e", + "sha256": "7117d00c7ace73ae6bab949fa3422390a4b0491ee94d5261919721bfbfba6f38", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 20.48, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/ReleasableInputStream.java", + "type": "file", + "name": "ReleasableInputStream.java", + "base_name": "ReleasableInputStream", + "extension": ".java", + "size": 4538, + "date": "2022-07-15", + "sha1": "0b6cc4f171ba2b8351d5b22ef487e27dae08a026", + "md5": "9772790eda7d747f1a6f11010b653a3c", + "sha256": "1157f3f3ae6dc8fd3b96fdcbcbe51610444fa2005bcf6d9b0c299c674430bbbb", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "unknown-license-reference AND apache-2.0", + "detected_license_expression_spdx": "LicenseRef-scancode-unknown-license-reference AND Apache-2.0", + "license_detections": [ + { + "license_expression": "unknown-license-reference AND apache-2.0", + "matches": [ + { + "score": 90.0, + "start_line": 4, + "end_line": 4, + "matched_length": 3, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "unknown-license-reference", + "rule_identifier": "unknown-license-reference_46.RULE", + "rule_relevance": 90, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/unknown-license-reference_46.RULE", + "matched_text": "see LICENSE.txt" + }, + { + "score": 100.0, + "start_line": 7, + "end_line": 16, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "unknown_license_reference_and_apache_2_0-62a7ade9-df72-0b10-0cc1-0847080cc621" + } + ], + "license_clues": [], + "percentage_of_license_text": 15.44, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + }, + { + "copyright": "Portions copyright 2006-2009 James Murty", + "start_line": 4, + "end_line": 4 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + }, + { + "holder": "James Murty", + "start_line": 4, + "end_line": 4 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/ResettableInputStream.java", + "type": "file", + "name": "ResettableInputStream.java", + "base_name": "ResettableInputStream", + "extension": ".java", + "size": 12760, + "date": "2022-07-15", + "sha1": "45887c8a682264ccd65e68b3601691e85bdaa575", + "md5": "4a0e665a3cf338005aac4a48c9da332c", + "sha256": "663472c36455a2d1eb6c374445e573f6e9c5ce3d7bb4c2d9bfdf6f67317694be", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "unknown-license-reference AND apache-2.0", + "detected_license_expression_spdx": "LicenseRef-scancode-unknown-license-reference AND Apache-2.0", + "license_detections": [ + { + "license_expression": "unknown-license-reference AND apache-2.0", + "matches": [ + { + "score": 90.0, + "start_line": 4, + "end_line": 4, + "matched_length": 3, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "unknown-license-reference", + "rule_identifier": "unknown-license-reference_46.RULE", + "rule_relevance": 90, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/unknown-license-reference_46.RULE", + "matched_text": "see LICENSE.txt" + }, + { + "score": 100.0, + "start_line": 7, + "end_line": 16, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "unknown_license_reference_and_apache_2_0-62a7ade9-df72-0b10-0cc1-0847080cc621" + } + ], + "license_clues": [], + "percentage_of_license_text": 5.05, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + }, + { + "copyright": "Portions copyright 2006-2009 James Murty", + "start_line": 4, + "end_line": 4 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + }, + { + "holder": "James Murty", + "start_line": 4, + "end_line": 4 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkBufferedInputStream.java", + "type": "file", + "name": "SdkBufferedInputStream.java", + "base_name": "SdkBufferedInputStream", + "extension": ".java", + "size": 2999, + "date": "2022-07-15", + "sha1": "112e70f89806a27186b537a8e344a4154d4725df", + "md5": "edce5f6a69672af95feef044b6caac38", + "sha256": "2d6a4faa9ee72c6e0df7b95eb47b2b0db72fbaae8f75eb000a75e07764d78856", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 24.21, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkDigestInputStream.java", + "type": "file", + "name": "SdkDigestInputStream.java", + "base_name": "SdkDigestInputStream", + "extension": ".java", + "size": 3542, + "date": "2022-07-15", + "sha1": "bb0a64fe240e6d1a91493d27c8137d5bd3f638bc", + "md5": "8b009b2a5b94acc84c6d9284578bb4de", + "sha256": "438cc8b5abc36b6581d5a41e960d91393943d9e250d05863c526938fe72ee2b5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 16.89, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkFilterInputStream.java", + "type": "file", + "name": "SdkFilterInputStream.java", + "base_name": "SdkFilterInputStream", + "extension": ".java", + "size": 3843, + "date": "2022-07-15", + "sha1": "d8c9fdba6243fd1fd95d09651b7ca82933f2a690", + "md5": "a0f51b5258ea45f35cca16b1991f1de1", + "sha256": "955e265a4bca85b2d51a106b4778911cec4ed1c4927884fb5d1d7b45845322fb", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 19.15, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkFilterOutputStream.java", + "type": "file", + "name": "SdkFilterOutputStream.java", + "base_name": "SdkFilterOutputStream", + "extension": ".java", + "size": 1651, + "date": "2022-07-15", + "sha1": "bd228a9c7dc3aa33da912ca5a2b02bea463b4bcc", + "md5": "e745e15dbe738bb766a460c0c35f5252", + "sha256": "fad038c5eeb2cfaab127df5fa4f6c3cc68cccc1ea741f485e14b2153dcf62e67", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 40.1, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkFunction.java", + "type": "file", + "name": "SdkFunction.java", + "base_name": "SdkFunction", + "extension": ".java", + "size": 830, + "date": "2022-07-15", + "sha1": "b2eea4667fe7ebb9798d948c2bd387cd5124d88a", + "md5": "4418c3eb1377ce1ba63baa0da919ec25", + "sha256": "d1538f1de3d3edeffbdae017b61862c032b60d01bd01d7a67afa800d4c9b4a30", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 64.71, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkInputStream.java", + "type": "file", + "name": "SdkInputStream.java", + "base_name": "SdkInputStream", + "extension": ".java", + "size": 2987, + "date": "2022-07-15", + "sha1": "6bce22abf3c339e0e9a8be6055b0db94656d8c27", + "md5": "4e6cd8c03d4eaf604d534bcaf65736be", + "sha256": "eee5afa33050e858ee6f79d43013c44b656408c0b70401de13a1e939a828281b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 22.92, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkInternalList.java", + "type": "file", + "name": "SdkInternalList.java", + "base_name": "SdkInternalList", + "extension": ".java", + "size": 1509, + "date": "2022-07-15", + "sha1": "7b6ff74c66765de8bc2011be51250b54a7f3fa0e", + "md5": "656ee6b27f1dc80d990840598d45ea74", + "sha256": "24f0d2e5d38a06bbb661c9c032087deabd54d50daebe860552f495b817f808d0", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 42.78, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkInternalMap.java", + "type": "file", + "name": "SdkInternalMap.java", + "base_name": "SdkInternalMap", + "extension": ".java", + "size": 3067, + "date": "2022-07-15", + "sha1": "d5ab52fa0daf5d2e49e66fc2faa2bc1989913a73", + "md5": "efb36555c2da0ac9aaa533477b968c19", + "sha256": "213a35796073bbe9f9edadae34180a38df9855b61f78ac3e9a7113c14cbaac97", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 21.1, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkIOUtils.java", + "type": "file", + "name": "SdkIOUtils.java", + "base_name": "SdkIOUtils", + "extension": ".java", + "size": 1579, + "date": "2022-07-15", + "sha1": "76e7bff30e6b59a175f032e1611a688bc0a5c8dd", + "md5": "d433e005f3716153d1f04ffab1b8a765", + "sha256": "619e876087a43a6736f93e2c494ba9a9a1070dc0fefd88c21446f164bef7c225", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 40.74, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkMetricsSocket.java", + "type": "file", + "name": "SdkMetricsSocket.java", + "base_name": "SdkMetricsSocket", + "extension": ".java", + "size": 1505, + "date": "2022-07-15", + "sha1": "e47ed490608dbb2cd2083259399ceb45e9c70ce0", + "md5": "ac9a1adac5cd276e19a201ee4a8406e6", + "sha256": "c85cf6356ff508adfbdb3e52e4b78141b8460695f25164481f0c298d7c76ec17", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 44.25, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkPredicate.java", + "type": "file", + "name": "SdkPredicate.java", + "base_name": "SdkPredicate", + "extension": ".java", + "size": 975, + "date": "2022-07-15", + "sha1": "ad13fcd06a633812becd7f33582d96a2f32ac899", + "md5": "8db6c6250098e09756d332807558bf47", + "sha256": "60ee2b2e34996f81284921e9912f02284dfb791591554c679941aa997d25b3f4", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 57.46, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkRequestRetryHeaderProvider.java", + "type": "file", + "name": "SdkRequestRetryHeaderProvider.java", + "base_name": "SdkRequestRetryHeaderProvider", + "extension": ".java", + "size": 4499, + "date": "2022-07-15", + "sha1": "f0e8183dbf0ebd0e442aea2205455c9af391ad99", + "md5": "2916f3294be7f24e62ad73c8388d77a0", + "sha256": "7e1b50a0fe2869af43602a947e8b0d8796a08143c40929188daa86a93a0b0fd3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 14.96, + "copyrights": [ + { + "copyright": "Copyright 2019-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkSocket.java", + "type": "file", + "name": "SdkSocket.java", + "base_name": "SdkSocket", + "extension": ".java", + "size": 2423, + "date": "2022-07-15", + "sha1": "a180c8a680bfef22c7fb2f2ac73fa0f4075f66f1", + "md5": "0b230a2fdae7740e7cb89ee41fb0d700", + "sha256": "bdba2787de0fc59460cb1003aa1933aa1a83aff6d5f063c58446a21a85128ee1", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 28.84, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkSSLContext.java", + "type": "file", + "name": "SdkSSLContext.java", + "base_name": "SdkSSLContext", + "extension": ".java", + "size": 1753, + "date": "2022-07-15", + "sha1": "99a97c7964fe9fbf2252e8e1d126217211c1a8f2", + "md5": "6be43b017e722b7f45bdb0e071d41cf4", + "sha256": "07f5f037ec8244ff3d168bcd414dfc579216144b49eaccf1b183e1f08e54bddc", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 35.45, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkSSLMetricsSocket.java", + "type": "file", + "name": "SdkSSLMetricsSocket.java", + "base_name": "SdkSSLMetricsSocket", + "extension": ".java", + "size": 1642, + "date": "2022-07-15", + "sha1": "ce6db75ba7207e57e5bc5a0548173098d01823b4", + "md5": "2df44d3f9a695e1ee632d2297d6a289b", + "sha256": "9533a6f31935a0291bd7b5e0e4295c06f120f463dc572aa9ca737baebb516570", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 42.31, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkSSLSocket.java", + "type": "file", + "name": "SdkSSLSocket.java", + "base_name": "SdkSSLSocket", + "extension": ".java", + "size": 2447, + "date": "2022-07-15", + "sha1": "1d84e4fc23f2e52614bb186807ad7e80746ba335", + "md5": "36da2e2db35ad61b6e19aec258fd8a4c", + "sha256": "6f02727a881f2603625dc7b3c4b5b878d320d3dd8ddb045bfe87760e689efec7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 28.73, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/SdkThreadLocalsRegistry.java", + "type": "file", + "name": "SdkThreadLocalsRegistry.java", + "base_name": "SdkThreadLocalsRegistry", + "extension": ".java", + "size": 1704, + "date": "2022-07-15", + "sha1": "7b9087cb96e8ef026c9a5113530770c089d51f51", + "md5": "c88d3c51fe8bf567e9f7df742c650f88", + "sha256": "1d927b02ec99d03ec80253446eef3728354c4a6374f1a93527f7465e9ff1e395", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 37.2, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/ServiceEndpointBuilder.java", + "type": "file", + "name": "ServiceEndpointBuilder.java", + "base_name": "ServiceEndpointBuilder", + "extension": ".java", + "size": 1323, + "date": "2022-07-15", + "sha1": "e2d9caf3521bfd1954c7c42dcccdd11fdd2408b7", + "md5": "a63101f068ebe6158c968b24d9afbdc8", + "sha256": "86bbd8080bfe5b915729b4f1b9a65d767ce76e69dfd2413be3c49b3801b0d011", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 45.03, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/StaticCredentialsProvider.java", + "type": "file", + "name": "StaticCredentialsProvider.java", + "base_name": "StaticCredentialsProvider", + "extension": ".java", + "size": 1252, + "date": "2022-07-15", + "sha1": "4836ef670d71f73aeefd7f3e72d623b9ec65f49d", + "md5": "4cc0073c5cb4ca527604787f2566e567", + "sha256": "dfc9184181dadc16dfa12de52cd5279492d389843dee0d3161d76bbe8a0222b8", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 53.85, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/TokenBucket.java", + "type": "file", + "name": "TokenBucket.java", + "base_name": "TokenBucket", + "extension": ".java", + "size": 12675, + "date": "2022-07-15", + "sha1": "a7ab76d641d6aaee11d3c94957022f9aa1b75e53", + "md5": "bce0be85357f1c4d658c6cf3562bac62", + "sha256": "db60475cffa358a0eddc92284ff912e44088f177dec97db1c4adc2a4880b26b2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 5.61, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/auth", + "type": "directory", + "name": "auth", + "base_name": "auth", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 4, + "dirs_count": 0, + "size_count": 7527, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/auth/DefaultSignerProvider.java", + "type": "file", + "name": "DefaultSignerProvider.java", + "base_name": "DefaultSignerProvider", + "extension": ".java", + "size": 3343, + "date": "2022-07-15", + "sha1": "6fe0afbd70fc612bb6608f55c2bb87693cc29320", + "md5": "002ed454b801e24b0b7c0c2eda74c00a", + "sha256": "7324e8c6081e72e468342e89a754637de0e325acd7603109de592cffbd587600", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 14, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.75, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/auth/NoOpSignerProvider.java", + "type": "file", + "name": "NoOpSignerProvider.java", + "base_name": "NoOpSignerProvider", + "extension": ".java", + "size": 1036, + "date": "2022-07-15", + "sha1": "1057f8a205aa7bfd97aa8196e10b4d1c88d8f353", + "md5": "93ea868e6e8c46a308cd2375aa1c6a93", + "sha256": "6715097c55e05d8ff20b104e67ff18bf10d44b4fbdfb11db7405289b4e3d53d4", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 14, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 58.78, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/auth/SignerProvider.java", + "type": "file", + "name": "SignerProvider.java", + "base_name": "SignerProvider", + "extension": ".java", + "size": 771, + "date": "2022-07-15", + "sha1": "e887d3e0eff9077fd9000621a7c0d7d9bc88d4c1", + "md5": "5a98e90133038470e4cd9e40a839adbd", + "sha256": "80f31d351b16469abc83795f8c0bd06649844ef36bbbf991572d045141c5fb95", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 14, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 71.3, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/auth/SignerProviderContext.java", + "type": "file", + "name": "SignerProviderContext.java", + "base_name": "SignerProviderContext", + "extension": ".java", + "size": 2377, + "date": "2022-07-15", + "sha1": "fbb0ef071ed5e0d0581c409029b603c04a89da7f", + "md5": "051c2bd00301eaedf8fbf45739058d76", + "sha256": "f005556f67217539281b74dcca0de0d4693de6ed5315a6f7c620e1ff2a517b52", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 14, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 32.22, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/config", + "type": "directory", + "name": "config", + "base_name": "config", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 12, + "dirs_count": 0, + "size_count": 35780, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/config/awssdk_config_default.json", + "type": "file", + "name": "awssdk_config_default.json", + "base_name": "awssdk_config_default", + "extension": ".json", + "size": 4277, + "date": "2022-07-15", + "sha1": "cb95bb6cc68f5664f7b30d5dd75b468ebde65bb1", + "md5": "135cd57374d211644c4393515a883814", + "sha256": "3245110e6f298af494512a0c6b525f22187535e15eef0ae06689e7cb0c38b48d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/config/Builder.java", + "type": "file", + "name": "Builder.java", + "base_name": "Builder", + "extension": ".java", + "size": 682, + "date": "2022-07-15", + "sha1": "e6c7e75f046dea786b1debf26a5158a2df817690", + "md5": "e168746625c3aed7839d15a0bf9e32e1", + "sha256": "f9ed95e0f84c8d18c2040475b03e1c7a10d6cb4d6a35449516a0d259a35c4387", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 76.24, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/config/EndpointDiscoveryConfig.java", + "type": "file", + "name": "EndpointDiscoveryConfig.java", + "base_name": "EndpointDiscoveryConfig", + "extension": ".java", + "size": 972, + "date": "2022-07-15", + "sha1": "0909fd4a782ba3e62d59efe7de09345818ce0d24", + "md5": "4fbed9379d09a3f7430e95aa1df9949e", + "sha256": "6a45fb6da71bde33a95e471a9df8e5b598143aca2f5da7ce3951fb358cba3c97", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 68.14, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/config/HostRegexToRegionMapping.java", + "type": "file", + "name": "HostRegexToRegionMapping.java", + "base_name": "HostRegexToRegionMapping", + "extension": ".java", + "size": 2062, + "date": "2022-07-15", + "sha1": "82761d46d0d669997e6471fc23749b4749d53276", + "md5": "8bf80be49ed8c7779ba04bae20040e41", + "sha256": "9fd30c7c4f0bd0a20ea3d524607f706bd61a94a23fc8535abe9ee414ae683b04", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 39.09, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/config/HostRegexToRegionMappingJsonHelper.java", + "type": "file", + "name": "HostRegexToRegionMappingJsonHelper.java", + "base_name": "HostRegexToRegionMappingJsonHelper", + "extension": ".java", + "size": 1423, + "date": "2022-07-15", + "sha1": "ec69bbd70bb212679c89deb780eec9f2dfa76b39", + "md5": "4ccb983fd4ccf0c084bcd935c77f0c5f", + "sha256": "1aaf706bd41ae9aef21a1a738cc0448fe03ddc743a472eff10f9f11325ef0c98", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 51.33, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/config/HttpClientConfig.java", + "type": "file", + "name": "HttpClientConfig.java", + "base_name": "HttpClientConfig", + "extension": ".java", + "size": 2338, + "date": "2022-07-15", + "sha1": "4d60efa6729dde6ee1fc794e3723d281fb119d16", + "md5": "31daa06b9917917c96db74dde5d9f748", + "sha256": "4cd8c6df5e631cf27bb26ca2464c7250de5458f10295050f990f30bc6ced30a7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 31.17, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/config/HttpClientConfigJsonHelper.java", + "type": "file", + "name": "HttpClientConfigJsonHelper.java", + "base_name": "HttpClientConfigJsonHelper", + "extension": ".java", + "size": 2019, + "date": "2022-07-15", + "sha1": "eb476c45e4b13bd20f74c260ed0108d8df817f90", + "md5": "89def0da927f4260094c9a2ff3c6ed87", + "sha256": "3c50455c2f99774e60bb93b7e86fa77b1586d2b87dc7e93c2bd92b2795314357", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 38.69, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/config/InternalConfig.java", + "type": "file", + "name": "InternalConfig.java", + "base_name": "InternalConfig", + "extension": ".java", + "size": 13965, + "date": "2022-07-15", + "sha1": "7611f6c31afa02f6a5c3006e9ec18e1120e7f235", + "md5": "328eabb4cbb072a97e7f18e9c20cbeb3", + "sha256": "768e2c2bdb604d1a4df76760809e3b77aa9dece883270e4fba55297c6ea9bd4e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 6.38, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/config/InternalConfigJsonHelper.java", + "type": "file", + "name": "InternalConfigJsonHelper.java", + "base_name": "InternalConfigJsonHelper", + "extension": ".java", + "size": 4179, + "date": "2022-07-15", + "sha1": "0d04c77a55ced31e3144b885579a8d765b8dc1e5", + "md5": "c52e7d3e3252379f3f6774939321b625", + "sha256": "df723b4509fdf1cf0b358cfabd2d1ae27e162878a925bf728fb602d81661b587", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 22.0, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/config/JsonIndex.java", + "type": "file", + "name": "JsonIndex.java", + "base_name": "JsonIndex", + "extension": ".java", + "size": 1361, + "date": "2022-07-15", + "sha1": "e2f2b910f2716710d76f9e6fa332ba9737647ce1", + "md5": "6b390e701160066eee0a93f98751a84d", + "sha256": "805b85043e818786f2e22e0dcf78a1054f60f5735c97bcc6fe19496e67bbed36", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 44.51, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/config/SignerConfig.java", + "type": "file", + "name": "SignerConfig.java", + "base_name": "SignerConfig", + "extension": ".java", + "size": 1109, + "date": "2022-07-15", + "sha1": "2e6171ff40afab5b01bc150b195a1e8eb637309d", + "md5": "e998895aea9a2932a28a9c84ae5424cd", + "sha256": "fd68efc3333665ab7bfcba52e2a8be2c0a5b0994848f7fe363be6d3b7b916eda", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 58.33, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/config/SignerConfigJsonHelper.java", + "type": "file", + "name": "SignerConfigJsonHelper.java", + "base_name": "SignerConfigJsonHelper", + "extension": ".java", + "size": 1393, + "date": "2022-07-15", + "sha1": "e1a8dfa50abfae1892e879b57d87034fd83c3eb1", + "md5": "4dc5ff338fb5d4f80eb410b8f3b05f3a", + "sha256": "2dd908b68c3aa18472569af7d26bde1457783fff37a73e2dc90a0004012ee6f2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 45.83, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/http", + "type": "directory", + "name": "http", + "base_name": "http", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 5, + "dirs_count": 0, + "size_count": 11602, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/http/CompositeErrorCodeParser.java", + "type": "file", + "name": "CompositeErrorCodeParser.java", + "base_name": "CompositeErrorCodeParser", + "extension": ".java", + "size": 1505, + "date": "2022-07-15", + "sha1": "0151a52d0a592564f11370e4365e51e943d06396", + "md5": "a88cc8864090d54c62348d56b26e8557", + "sha256": "8ccecbbcb2499dc5cd6d31796289ce3e4b667d0b8e0c9228a37aac97291f4f74", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\"). You may not\n * use this file except in compliance with the License. A copy of the License is\n * located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed on\n * an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 46.39, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/http/ErrorCodeParser.java", + "type": "file", + "name": "ErrorCodeParser.java", + "base_name": "ErrorCodeParser", + "extension": ".java", + "size": 890, + "date": "2022-07-15", + "sha1": "2accedb384810727aeee42fedd3ade5896be7842", + "md5": "e9d1ab79a80dee28b321f041073cfa19", + "sha256": "2320ef8f92f34244453a5b7c425a74d9128b731d4b2a46bef88eb6b67fa2147e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\"). You may not\n * use this file except in compliance with the License. A copy of the License is\n * located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed on\n * an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 64.17, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/http/IonErrorCodeParser.java", + "type": "file", + "name": "IonErrorCodeParser.java", + "base_name": "IonErrorCodeParser", + "extension": ".java", + "size": 2826, + "date": "2022-07-15", + "sha1": "898fb3528f5ec74b6373c11cca43d3d689428fa6", + "md5": "ac11ee3bb6eb027991d472dc27d1100b", + "sha256": "fc2fdce8787a2f2ab52723a1ce2bf7d51cc55de4b34fe849d49d66f4e59cb24b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\"). You may not\n * use this file except in compliance with the License. A copy of the License is\n * located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed on\n * an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.58, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/http/JsonErrorCodeParser.java", + "type": "file", + "name": "JsonErrorCodeParser.java", + "base_name": "JsonErrorCodeParser", + "extension": ".java", + "size": 3266, + "date": "2022-07-15", + "sha1": "fbed11a5e4f980e490e4b5778e4161b6c8c7625b", + "md5": "1d14ae6f3fd70ff22ea7c9c19d139caf", + "sha256": "802e24544662043e4d73796f0ed2af1f3548f3db5ab3781743a9d9984e38e112", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 21.88, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/internal/http/JsonErrorMessageParser.java", + "type": "file", + "name": "JsonErrorMessageParser.java", + "base_name": "JsonErrorMessageParser", + "extension": ".java", + "size": 3115, + "date": "2022-07-15", + "sha1": "a0ef32b756bcfe9f1d526cc457f88a71df6c905c", + "md5": "fa7ce14d751e0f1b082d57fcff5dc231", + "sha256": "80001b589c2361dae27b8ea903b1761be7bc16a5543eba0f2afd086a89a96868", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 22.51, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/jmx", + "type": "directory", + "name": "jmx", + "base_name": "jmx", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 5, + "dirs_count": 1, + "size_count": 13664, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/jmx/JmxInfoProviderSupport.java", + "type": "file", + "name": "JmxInfoProviderSupport.java", + "base_name": "JmxInfoProviderSupport", + "extension": ".java", + "size": 2798, + "date": "2022-07-15", + "sha1": "b303c95f275ce54383a641de0eb44dfaf19b7d6e", + "md5": "9c96e9f061df02645e42ebbbe6593061", + "sha256": "9b717b180a388fcb2d1d608851e6d5385902ae0a6191e8e9855ddeeec5c1518a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 26.59, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/jmx/MBeans.java", + "type": "file", + "name": "MBeans.java", + "base_name": "MBeans", + "extension": ".java", + "size": 4501, + "date": "2022-07-15", + "sha1": "1b183d29e6895520afd3310cf9f525beaced1dc4", + "md5": "ee2dbbeaf47b2deb634bcb2c9efe6dc5", + "sha256": "351ab65055fb34664985fcde6340c33fdab858832f19b5373439d12bca0a5ce7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 16.78, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/jmx/SdkMBeanRegistrySupport.java", + "type": "file", + "name": "SdkMBeanRegistrySupport.java", + "base_name": "SdkMBeanRegistrySupport", + "extension": ".java", + "size": 1547, + "date": "2022-07-15", + "sha1": "89c98fa23aea2609acddd59d74af43bd9b195601", + "md5": "b6a295892b7ac96d45c83c0fd572dbab", + "sha256": "d071280206f2ceaea983ea69d0f1b8080d2d163407ad4202047d2069c02d0102", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 45.83, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/jmx/spi", + "type": "directory", + "name": "spi", + "base_name": "spi", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 4818, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/jmx/spi/JmxInfoProvider.java", + "type": "file", + "name": "JmxInfoProvider.java", + "base_name": "JmxInfoProvider", + "extension": ".java", + "size": 2420, + "date": "2022-07-15", + "sha1": "bae307acbc08d3e39b0d91bcec432fdea7191a93", + "md5": "6d77e4297a5c366fc07b0d77ab9ae544", + "sha256": "9d9f3e85b02ce12ff968c945af5b1cead3c4a89807c74bb076299e54a7ec430e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 30.73, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/jmx/spi/SdkMBeanRegistry.java", + "type": "file", + "name": "SdkMBeanRegistry.java", + "base_name": "SdkMBeanRegistry", + "extension": ".java", + "size": 2398, + "date": "2022-07-15", + "sha1": "940326e43d039ac6123f962a2a08fb0504b23345", + "md5": "5af98e881e2c6690f94f6bc27e49fb67", + "sha256": "7714d4e16f8e50cba05bc7e40317fcbf24680c4cb25148f4cbb05d93470702b6", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 27.24, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/log", + "type": "directory", + "name": "log", + "base_name": "log", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 7, + "dirs_count": 0, + "size_count": 19500, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/log/CommonsLog.java", + "type": "file", + "name": "CommonsLog.java", + "base_name": "CommonsLog", + "extension": ".java", + "size": 2673, + "date": "2022-07-15", + "sha1": "8d2e37db372768a07aa74a4aebfb4c0d804291dd", + "md5": "3dd50702b112f270f05479612c26fd84", + "sha256": "9d033d74c3ffa9ca98ed36879f13f9dfdea5549741d569cc98b563dd92905b81", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.41, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/log/CommonsLogFactory.java", + "type": "file", + "name": "CommonsLogFactory.java", + "base_name": "CommonsLogFactory", + "extension": ".java", + "size": 1138, + "date": "2022-07-15", + "sha1": "9b27db90c61eda01a97b397f4f5ab36e4298f5ec", + "md5": "dcef23c63fd1d1f8e54d5cf47c971df9", + "sha256": "00aea7186072e5ccf9080b3320306ae2df0b77cf0bd1eec71c44f2edf33a7e9b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 53.85, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/log/InternalLog.java", + "type": "file", + "name": "InternalLog.java", + "base_name": "InternalLog", + "extension": ".java", + "size": 2859, + "date": "2022-07-15", + "sha1": "4f887eebd60f8f354f0d09070393c0d0a2ca133d", + "md5": "18593243c722944b697980e32e92b6f9", + "sha256": "71109432361e8f4e38b4f8a9a8d131ef19501ffb3d8ff0ffc775c85146f1e4ba", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.25, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/log/InternalLogApi.java", + "type": "file", + "name": "InternalLogApi.java", + "base_name": "InternalLogApi", + "extension": ".java", + "size": 5449, + "date": "2022-07-15", + "sha1": "88aeb5d37ba18934a90dc5309f3ee00e0e21cf20", + "md5": "e87bdbb6923654e35860be1e259faeec", + "sha256": "5df1e3ba2959a1445888f2907684e4c6a3c9fc71000610d24990f58a9f650808", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 15, + "matched_length": 119, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_2.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_2.RULE", + "matched_text": "Licensed to the Apache Software Foundation (ASF) under one or more\n * contributor license agreements. See the NOTICE file distributed with\n * this work for additional information regarding copyright ownership.\n * The ASF licenses this file to You under the Apache License, Version 2.0\n * (the \"License\"); you may not use this file except in compliance with\n * the License. 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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de" + } + ], + "license_clues": [], + "percentage_of_license_text": 18.74, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/log/InternalLogFactory.java", + "type": "file", + "name": "InternalLogFactory.java", + "base_name": "InternalLogFactory", + "extension": ".java", + "size": 3313, + "date": "2022-07-15", + "sha1": "3118ba858ae701894dff159e4c7945bbb93d5efa", + "md5": "8b6767c8395669baa8296dcdec4d4c03", + "sha256": "492af76e9689326e20c73ab4eaa2d4688fae0491ce55f3be1eb35ffde7b5481c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 20.42, + "copyrights": [ + { + "copyright": "Copyright (c) 2016. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/log/JulLog.java", + "type": "file", + "name": "JulLog.java", + "base_name": "JulLog", + "extension": ".java", + "size": 3012, + "date": "2022-07-15", + "sha1": "a89c5c0bf10b0b444ee2e2a66e5c05dd653a000b", + "md5": "6965d7a2a99cd24664d82445e53b1a36", + "sha256": "9aca2271f5edba94d13c5d4e2962919288a9b497776387d0a649329cf36ebb29", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 21.51, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/log/JulLogFactory.java", + "type": "file", + "name": "JulLogFactory.java", + "base_name": "JulLogFactory", + "extension": ".java", + "size": 1056, + "date": "2022-07-15", + "sha1": "2ca1a9956c24669de34ea9bf9b6c2e43f5e3d670", + "md5": "6696602f6b03202683fa2d45afb208a3", + "sha256": "73d798d1d5b24cce086be7e0fc9afdc6c82f29fb5afb028a6df93a29574a8498", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 55.4, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics", + "type": "directory", + "name": "metrics", + "base_name": "metrics", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 20, + "dirs_count": 1, + "size_count": 80891, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/AwsSdkMetrics.java", + "type": "file", + "name": "AwsSdkMetrics.java", + "base_name": "AwsSdkMetrics", + "extension": ".java", + "size": 36892, + "date": "2022-07-15", + "sha1": "901b4843e89c6ce81d07a1a52271126e9f534bfe", + "md5": "6d9ee006d7494eae624004454d6a7d25", + "sha256": "aa6d87e68ca1f6535d89f3d95ffe4328a6c808e361ff99cd78fc433648e9e7ff", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 2.13, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/ByteThroughputHelper.java", + "type": "file", + "name": "ByteThroughputHelper.java", + "base_name": "ByteThroughputHelper", + "extension": ".java", + "size": 1637, + "date": "2022-07-15", + "sha1": "ae103f18c9288990f567f5721991ff309fdbff33", + "md5": "d6faf371e23fab405957c119f10a7c47", + "sha256": "ba042332358f6e65407192653e7caa3dcd764393371cbaa41e4d2adefbcb850c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 42.08, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/ByteThroughputProvider.java", + "type": "file", + "name": "ByteThroughputProvider.java", + "base_name": "ByteThroughputProvider", + "extension": ".java", + "size": 2022, + "date": "2022-07-15", + "sha1": "2717e4fe63f75ce8a808dc12009b02dfc0e6a63f", + "md5": "4ac6561865e8683b0f58e98da31ff5d2", + "sha256": "2a8c554b106e78e80df0fbe7911131a35ead8321faaed1d153bb772db81c9d9b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 34.38, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/MetricAdmin.java", + "type": "file", + "name": "MetricAdmin.java", + "base_name": "MetricAdmin", + "extension": ".java", + "size": 4599, + "date": "2022-07-15", + "sha1": "281d1ded26e15f5f68f062b66f0de30262371a63", + "md5": "bc1d39e7483583adca45d653850a54a7", + "sha256": "0699d14124e8cfea726df8b6d5fb1d7b345d7839f6b28c46e00efd05cf248274", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 19.31, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/MetricAdminMBean.java", + "type": "file", + "name": "MetricAdminMBean.java", + "base_name": "MetricAdminMBean", + "extension": ".java", + "size": 5996, + "date": "2022-07-15", + "sha1": "a862d8d2c6ffdfdad4be62481201567086a80783", + "md5": "d14d6a0d880a1ff89182669fae2152e1", + "sha256": "59d7a4dad0c85041aba7a2815fd77e00c62347e331c81b8cd3a575b8a9a7680c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.01, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/MetricCollector.java", + "type": "file", + "name": "MetricCollector.java", + "base_name": "MetricCollector", + "extension": ".java", + "size": 2506, + "date": "2022-07-15", + "sha1": "10f52a0c5e971944048a16df6c5448bafd42f152", + "md5": "fd6f94e045512fa5b5509bff80ce8262", + "sha256": "4e0cc4006685014bb4a06de372ccd79bccc3eee172b98cad98bf35b0ece9450c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 27.3, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/MetricFilterInputStream.java", + "type": "file", + "name": "MetricFilterInputStream.java", + "base_name": "MetricFilterInputStream", + "extension": ".java", + "size": 1824, + "date": "2022-07-15", + "sha1": "f7ced540f9d582648e5d2501a19d8140770dcd99", + "md5": "187b3a09dc7ae0bfdea83b8070715823", + "sha256": "0c1cc544a992492d9c941519ccfa49659d64285fb91721cb820d331676cb2184", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 35.81, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/MetricInputStreamEntity.java", + "type": "file", + "name": "MetricInputStreamEntity.java", + "base_name": "MetricInputStreamEntity", + "extension": ".java", + "size": 3916, + "date": "2022-07-15", + "sha1": "c8b848b1a79dff9795600f98f144975982fdc871", + "md5": "88465fe8682e54dfc803042bb7d59c63", + "sha256": "f558b9777c7b8b874a3fbd0c6a9d2f50a8dab48189f93eac6ca9bcc44b1867a6", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 19.59, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/MetricType.java", + "type": "file", + "name": "MetricType.java", + "base_name": "MetricType", + "extension": ".java", + "size": 921, + "date": "2022-07-15", + "sha1": "8da7a38adfc102f1e47998c0cc84cde58597f078", + "md5": "f949228ebea39823176211830d91e4fc", + "sha256": "28eecc44e13d53986a358134c14a644383aff7f7c8a1e023d701414cb1e28d40", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 58.78, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/package-info.java", + "type": "file", + "name": "package-info.java", + "base_name": "package-info", + "extension": ".java", + "size": 6756, + "date": "2022-07-15", + "sha1": "f09b8539937a5d512ed0d96c1aa3b978c025da72", + "md5": "e89a2b599fb2aae63ead291e568867dc", + "sha256": "c2415006920efeee4daafbb396cb0aca111e546f9ed9486d9a683dfa9e8c7530", + "mime_type": "text/html", + "file_type": "HTML document, 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.19, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/RequestMetricCollector.java", + "type": "file", + "name": "RequestMetricCollector.java", + "base_name": "RequestMetricCollector", + "extension": ".java", + "size": 1784, + "date": "2022-07-15", + "sha1": "1a6677671dbb0d8bf37fc85f849feb420e7b006f", + "md5": "350da11ee68b07a171bb1b363b3622ff", + "sha256": "2a16510f88b67e43ec8cdd08b3bf0dbe783128820841b952c02fccd3594524ca", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 36.32, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/RequestMetricType.java", + "type": "file", + "name": "RequestMetricType.java", + "base_name": "RequestMetricType", + "extension": ".java", + "size": 825, + "date": "2022-07-15", + "sha1": "d8da0ade54984b2c18cdb6f17d7c8379bd484d5b", + "md5": "0dad3c8b746b4ac54c331bcdfd694d16", + "sha256": "d931f61ce2a1e7b5e3969305eeff605e82eaf12a79a14f78418a0c35a51ac62b", + "mime_type": "text/html", + "file_type": "HTML document, 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 66.96, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/ServiceLatencyProvider.java", + "type": "file", + "name": "ServiceLatencyProvider.java", + "base_name": "ServiceLatencyProvider", + "extension": ".java", + "size": 2063, + "date": "2022-07-15", + "sha1": "ef14bc6bd8bd6d33e3358d1787024d0ecc3a3da7", + "md5": "45677e4fc36eb57f72a86627325eefc7", + "sha256": "4dc33bbec39d29860636a6d4baceafa66e7bace7a0eb2edd566821a38df230f2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 36.15, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/ServiceMetricCollector.java", + "type": "file", + "name": "ServiceMetricCollector.java", + "base_name": "ServiceMetricCollector", + "extension": ".java", + "size": 1804, + "date": "2022-07-15", + "sha1": "b9df8c57d8bc7fe1fbdf32a0b03d63de66f680b6", + "md5": "9bd855b2921448fcb43a6efcc3cdb5d4", + "sha256": "ba4b9df5e41ff734da83686fd2d62107fa33012a74808b17dfc170d4eeaab3c2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 37.75, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/ServiceMetricType.java", + "type": "file", + "name": "ServiceMetricType.java", + "base_name": "ServiceMetricType", + "extension": ".java", + "size": 1232, + "date": "2022-07-15", + "sha1": "c677f08d29b5b75a11a067c15d4e8cb2eb37ea78", + "md5": "e21fd468cfb454e06de1975f346253fc", + "sha256": "6152e15408c4f8271ba10bb40e3ab38eb88ee58f394cebdfab64d8107853b179", + "mime_type": "text/html", + "file_type": "HTML document, 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 47.83, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/SimpleMetricType.java", + "type": "file", + "name": "SimpleMetricType.java", + "base_name": "SimpleMetricType", + "extension": ".java", + "size": 1079, + "date": "2022-07-15", + "sha1": "869ff202fb0ac780104b32117f1fd8148b65fbb9", + "md5": "0f98d5779e7cef902fb32a743db499bb", + "sha256": "43a1beb71c81982a1b8ce0e8af89038abcf49d781ba69ab66ffd0e5bc0ebc88d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 54.61, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/SimpleServiceMetricType.java", + "type": "file", + "name": "SimpleServiceMetricType.java", + "base_name": "SimpleServiceMetricType", + "extension": ".java", + "size": 1044, + "date": "2022-07-15", + "sha1": "00243fb90a27fc644da01880ac58f24c3562ffbe", + "md5": "839b5217fcfe34bad5e045052e1a6606", + "sha256": "03f1efd26bb4cf9e6630af5e5d787101513d6b46482ad3608507407426cd422d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 58.78, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/SimpleThroughputMetricType.java", + "type": "file", + "name": "SimpleThroughputMetricType.java", + "base_name": "SimpleThroughputMetricType", + "extension": ".java", + "size": 1130, + "date": "2022-07-15", + "sha1": "b499c9b8d06e40c2acdc1722bba201540c15ee17", + "md5": "62b56bedae8c74fc23562ab3615f1cb0", + "sha256": "5f663d0903f8f824041f1b22548b12c4a57f7104d0327c2d3d3b1a74e827e144", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 61.11, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/ThroughputMetricType.java", + "type": "file", + "name": "ThroughputMetricType.java", + "base_name": "ThroughputMetricType", + "extension": ".java", + "size": 740, + "date": "2022-07-15", + "sha1": "ca6df978b85fa560849f9c49cc2555ce36ec6205", + "md5": "8bc33cf9f3536fa2b15026ddcff91c2b", + "sha256": "c75eec837bb2b6130e981f6cc7488f26c82d1daa84a160c4526ba4b6604bbaf9", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 76.24, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/internal", + "type": "directory", + "name": "internal", + "base_name": "internal", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 2121, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/metrics/internal/ServiceMetricTypeGuesser.java", + "type": "file", + "name": "ServiceMetricTypeGuesser.java", + "base_name": "ServiceMetricTypeGuesser", + "extension": ".java", + "size": 2121, + "date": "2022-07-15", + "sha1": "e69e423d17cbe27b642fb38f36cdfbcd13be1c85", + "md5": "426bb3e631715c92545ebf612e16f268", + "sha256": "17231a8ddb22bde5d5b4d55f42555f378df9904ff37524293b7f011ed3a409d9", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 32.35, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring", + "type": "directory", + "name": "monitoring", + "base_name": "monitoring", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 16, + "dirs_count": 1, + "size_count": 70917, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/ApiCallAttemptMonitoringEvent.java", + "type": "file", + "name": "ApiCallAttemptMonitoringEvent.java", + "base_name": "ApiCallAttemptMonitoringEvent", + "extension": ".java", + "size": 9099, + "date": "2022-07-15", + "sha1": "6aa0c5c443428508328fbad6d718ab8a3c1f031b", + "md5": "c90daf49b3082ff88784a11369bb830b", + "sha256": "71fd665f246435a2358c7f13b2955f065bf576a894d0a5ccaac38ebf562d561d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 8.93, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/ApiCallMonitoringEvent.java", + "type": "file", + "name": "ApiCallMonitoringEvent.java", + "base_name": "ApiCallMonitoringEvent", + "extension": ".java", + "size": 7319, + "date": "2022-07-15", + "sha1": "55a570db08efd84d6ad17b0454f45f4373223cac", + "md5": "6fa155044db1981658bd6bf2f3079a19", + "sha256": "d2c9a52c1ca1c8344db2ae507fee9788250df321825f667563e4ab5174e8eebd", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 10.46, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/ApiMonitoringEvent.java", + "type": "file", + "name": "ApiMonitoringEvent.java", + "base_name": "ApiMonitoringEvent", + "extension": ".java", + "size": 4079, + "date": "2022-07-15", + "sha1": "51ceb17d504d7b9cc08fe80538b91e5dc81cf5d3", + "md5": "a68af055ad130008d8fd088225268811", + "sha256": "c126ff33edc127631dd3fa28eebf190d408a1c7ca8da28b6b78cc74b665b5d07", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 16.28, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/CsmConfiguration.java", + "type": "file", + "name": "CsmConfiguration.java", + "base_name": "CsmConfiguration", + "extension": ".java", + "size": 3866, + "date": "2022-07-15", + "sha1": "47351fd06eeb2ac4c96c2bf7af89bd5233baaee6", + "md5": "cbf6000f3ef3fc0bfb260e017d8d38fc", + "sha256": "f1d322431f425244866b97db6954c630959d30c1f4ee4fb66b3f7ca6f3cb989d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 18.08, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/CsmConfigurationProvider.java", + "type": "file", + "name": "CsmConfigurationProvider.java", + "base_name": "CsmConfigurationProvider", + "extension": ".java", + "size": 1003, + "date": "2022-07-15", + "sha1": "dcfc74eb6e91816c272196f4e90195b3ef5576ac", + "md5": "29fbbb790e2e332ad56404ed39cd6107", + "sha256": "abacb93205329b54a54af05a4678a7cc9ea106618613cdbaa7149bccaada0e2a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 62.1, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/CsmConfigurationProviderChain.java", + "type": "file", + "name": "CsmConfigurationProviderChain.java", + "base_name": "CsmConfigurationProviderChain", + "extension": ".java", + "size": 2050, + "date": "2022-07-15", + "sha1": "91ef37e0c87433b5bafc167a7391f78aba1cb9fe", + "md5": "814ca4f605636bd44fd6ff3be2253c3f", + "sha256": "9e90f40bd2b6f4cd9791ca80a8f0f4f9164c594beb9b9ee600de5fec216611c4", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 36.15, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/DefaultCsmConfigurationProviderChain.java", + "type": "file", + "name": "DefaultCsmConfigurationProviderChain.java", + "base_name": "DefaultCsmConfigurationProviderChain", + "extension": ".java", + "size": 1819, + "date": "2022-07-15", + "sha1": "bd392ea742a00a15aac0bd181633029ef140450f", + "md5": "f961f07adae602675a4bd929d6858fef", + "sha256": "bf34907bf1bd652c947f858dbdda337c734ba2385f6064bf3f33b39d0c7039e1", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 44.51, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/EnvironmentVariableCsmConfigurationProvider.java", + "type": "file", + "name": "EnvironmentVariableCsmConfigurationProvider.java", + "base_name": "EnvironmentVariableCsmConfigurationProvider", + "extension": ".java", + "size": 2919, + "date": "2022-07-15", + "sha1": "c53b914658064685b9b0aea0ebf5fd569991111c", + "md5": "d8bbdb658b3a3a090efe8d161644788b", + "sha256": "f9c6cd3f18b60f8bc2ceb0048ab7d5c8a6cdef92be012509a22f86118108a7ee", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 23.19, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/MonitoringEvent.java", + "type": "file", + "name": "MonitoringEvent.java", + "base_name": "MonitoringEvent", + "extension": ".java", + "size": 797, + "date": "2022-07-15", + "sha1": "64ee48f9d186647834e9595ac8d92780a0de3740", + "md5": "5377979865865b441a7ccc9cbc2ba541", + "sha256": "dcc5393a9e9ce0b5b952d443b2d84db6693dc7973370063e6d802be95da578f3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 65.81, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/MonitoringListener.java", + "type": "file", + "name": "MonitoringListener.java", + "base_name": "MonitoringListener", + "extension": ".java", + "size": 956, + "date": "2022-07-15", + "sha1": "52a5d89d48f11e7cd19981053336d0ecccfc010d", + "md5": "ea604b9735e593d9db2ef1e4721ff4f7", + "sha256": "f8739b3c65edde54a8995f5042f82c3137dab05ac3497ec1121273cdef4ee610", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 63.11, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/ProfileCsmConfigurationProvider.java", + "type": "file", + "name": "ProfileCsmConfigurationProvider.java", + "base_name": "ProfileCsmConfigurationProvider", + "extension": ".java", + "size": 6053, + "date": "2022-07-15", + "sha1": "606eb3bb127d667b9fcea09f8724aa752443bf69", + "md5": "f9e52fa70007f347c6cbd87f8189869a", + "sha256": "83ef74a5486ede93b12b8fe69e3a1d71dc1db48cc9d46b46ebffa1acbb545175", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 13.34, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/StaticCsmConfigurationProvider.java", + "type": "file", + "name": "StaticCsmConfigurationProvider.java", + "base_name": "StaticCsmConfigurationProvider", + "extension": ".java", + "size": 1118, + "date": "2022-07-15", + "sha1": "44273bd3ad2b5d1b20fb8ef2827764fd740f2adb", + "md5": "0bd5d4c62edbd0898d8488291641b7d6", + "sha256": "81d864fa9686998eedd488a081dd0635bd3841bc867cc55059cbdc9b31f15f2e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 59.69, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/SystemPropertyCsmConfigurationProvider.java", + "type": "file", + "name": "SystemPropertyCsmConfigurationProvider.java", + "base_name": "SystemPropertyCsmConfigurationProvider", + "extension": ".java", + "size": 2848, + "date": "2022-07-15", + "sha1": "f8c419f9af0d84db28a0158b94d611801625c419", + "md5": "f7711e48f33ce9167bd4700f9661d9c6", + "sha256": "4f4227112e643bb4137a293fa9cc2ce5aface097233e865774a168fd24ac4d44", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 24.6, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/internal", + "type": "directory", + "name": "internal", + "base_name": "internal", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 26991, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/internal/AgentMonitoringListener.java", + "type": "file", + "name": "AgentMonitoringListener.java", + "base_name": "AgentMonitoringListener", + "extension": ".java", + "size": 3706, + "date": "2022-07-15", + "sha1": "825d6e332b69def8bcc7535b14952b5a6540e90a", + "md5": "779fe48d46813c78e6f2c6b3e87e4d2a", + "sha256": "78080eb27d620c2f957408e831b511bfd9c066165deb8af0aa31348dfe611789", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 20.1, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/internal/AsynchronousAgentDispatcher.java", + "type": "file", + "name": "AsynchronousAgentDispatcher.java", + "base_name": "AsynchronousAgentDispatcher", + "extension": ".java", + "size": 6527, + "date": "2022-07-15", + "sha1": "5323311f4f6be5c53b8a20db9bf5a03433f44da1", + "md5": "280dde426eb8ba84a8188b08d4116311", + "sha256": "61134c8c63d6a201d46380c4f6f6a066d5311687cf63114087385b9bc91885fd", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 12.01, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/monitoring/internal/ClientSideMonitoringRequestHandler.java", + "type": "file", + "name": "ClientSideMonitoringRequestHandler.java", + "base_name": "ClientSideMonitoringRequestHandler", + "extension": ".java", + "size": 16758, + "date": "2022-07-15", + "sha1": "356975e97f557d33aa4b443b56e1e17f26efeec3", + "md5": "48fcd4a1b4b0ce6ea0d3a39381825875", + "sha256": "4efddf9c9cff62edfc515573ebc5570ae5eef5d5cb63cd5b2ff1c5ab4f6fe911", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 5.95, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/partitions", + "type": "directory", + "name": "partitions", + "base_name": "partitions", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 10, + "dirs_count": 1, + "size_count": 633976, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/partitions/endpoints.json", + "type": "file", + "name": "endpoints.json", + "base_name": "endpoints", + "extension": ".json", + "size": 599123, + "date": "2022-07-15", + "sha1": "329ca8ac6c82afed8ce66a43de98606caf7091ad", + "md5": "abe5f6c800c0cca17551a3ff5eba2b81", + "sha256": "f73cc43e0e7e0b1ee03c719a292e632e21a24b203a400f968e3968b2ffcfa7bd", + "mime_type": "application/json", + "file_type": "JSON data", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/partitions/PartitionMetadataProvider.java", + "type": "file", + "name": "PartitionMetadataProvider.java", + "base_name": "PartitionMetadataProvider", + "extension": ".java", + "size": 6406, + "date": "2022-07-15", + "sha1": "75cbb8a7d2f0e0be66b6f706a356cf1b3d3189e3", + "md5": "9ec9aefdad02ddd088ed7f516a163f46", + "sha256": "bbd050eabc0b54598b9989eb61cc2d620fab1851d16cf7160160241299f355d6", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 12.85, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/partitions/PartitionRegionImpl.java", + "type": "file", + "name": "PartitionRegionImpl.java", + "base_name": "PartitionRegionImpl", + "extension": ".java", + "size": 7284, + "date": "2022-07-15", + "sha1": "ac679a35c8de1af1fe1fb07a1f812f3cc2a3274e", + "md5": "82dbc3d4dd0606779ff3da066fba4814", + "sha256": "3ff73cd12f4d7003387d15033269a77858cbdc35c93528e814c2918046c5d2e1", + "mime_type": "text/x-c", + "file_type": "C 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.21, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/partitions/PartitionsLoader.java", + "type": "file", + "name": "PartitionsLoader.java", + "base_name": "PartitionsLoader", + "extension": ".java", + "size": 3698, + "date": "2022-07-15", + "sha1": "f4f93134818ec0c29fcfa274cd3dd97400f40a14", + "md5": "297e920334a79cd4e585777218d2adfd", + "sha256": "6f6db23fd7171a9527d7f9e5c033b6f2aeefceae62196aa83fb3825cfb0c276a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 19.95, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/partitions/model", + "type": "directory", + "name": "model", + "base_name": "model", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 17465, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/partitions/model/CredentialScope.java", + "type": "file", + "name": "CredentialScope.java", + "base_name": "CredentialScope", + "extension": ".java", + "size": 1678, + "date": "2022-07-15", + "sha1": "02b5055d260a88553d0ee5138f00814f492b1291", + "md5": "fe1482a5c7d385fd1103e1c66cbf9b87", + "sha256": "b013e39dae4ea86b66e05348a2b8b3bc7ac30dd1b90222c76dc5820306decae3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 36.49, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/partitions/model/Endpoint.java", + "type": "file", + "name": "Endpoint.java", + "base_name": "Endpoint", + "extension": ".java", + "size": 4905, + "date": "2022-07-15", + "sha1": "ef9d7e596fccaad5030fd70367f360874724cd20", + "md5": "e659261b0282c4eeb3327f1e4d286b86", + "sha256": "4fd62228b634ea6caa8c96b311e3772389b1e082630f2c77e9fa4dee1a667bf3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 17.54, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/partitions/model/Partition.java", + "type": "file", + "name": "Partition.java", + "base_name": "Partition", + "extension": ".java", + "size": 4763, + "date": "2022-07-15", + "sha1": "00fab7ef09a832fc73833596443cc47215d1ac93", + "md5": "d696a3b747d55ee6d8b3bdc908dc81ca", + "sha256": "f2833b95185fcb93e1f222c0df7c288827ff1b993bd01f383aa208df4ba71b7b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 15.88, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/partitions/model/Partitions.java", + "type": "file", + "name": "Partitions.java", + "base_name": "Partitions", + "extension": ".java", + "size": 1670, + "date": "2022-07-15", + "sha1": "7816679f810e608f6e20d66f1757c58bea4ed36c", + "md5": "b64ba18e0112cc0f2ff0b6fbc3d650c7", + "sha256": "f70769955658f9363cdfb758598f37d75e23bc199db678b88664588e3961f942", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 11, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\"). You may not use this file except in compliance with\n * the License. A copy of the License is located at\n *

\n * http://aws.amazon.com/apache2.0\n *

\n * or in the \"license\" file accompanying this file. This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions\n * and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-e659774f-919e-e940-2c6d-2256289ffcb7" + } + ], + "license_clues": [], + "percentage_of_license_text": 39.29, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/partitions/model/Region.java", + "type": "file", + "name": "Region.java", + "base_name": "Region", + "extension": ".java", + "size": 1135, + "date": "2022-07-15", + "sha1": "18569773f96d8ce7ba931243b20a7d7fba932d7a", + "md5": "9960940d607f4c77f31fb442f4867a4a", + "sha256": "1ba8a8aaf86e4ba8236afd1084d0a4d00ca955abe9f9356fb07bc58b5512df17", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 55.4, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/partitions/model/Service.java", + "type": "file", + "name": "Service.java", + "base_name": "Service", + "extension": ".java", + "size": 3314, + "date": "2022-07-15", + "sha1": "f69e74ecab2139b6a675aace0eae2eb801e549ca", + "md5": "88851e550a9deefe8dd69facad56f7a6", + "sha256": "411599d48c6c74141de473b4f3df5583894abf35d429dbade79c0fdb37f30b9b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 22.13, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/profile", + "type": "directory", + "name": "profile", + "base_name": "profile", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 8, + "dirs_count": 3, + "size_count": 13145, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/profile/path", + "type": "directory", + "name": "path", + "base_name": "path", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 8, + "dirs_count": 2, + "size_count": 13145, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/profile/path/AwsDirectoryBasePathProvider.java", + "type": "file", + "name": "AwsDirectoryBasePathProvider.java", + "base_name": "AwsDirectoryBasePathProvider", + "extension": ".java", + "size": 1420, + "date": "2022-07-15", + "sha1": "4b45ed83e54f097b3e87de578c71f4751a71df4c", + "md5": "003617c03fc2e426053ca59f999eb062", + "sha256": "8325c90665b836177fd8613bafafe0303158306e6568e60562f19b501c1a25e5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 45.56, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/profile/path/AwsProfileFileLocationProvider.java", + "type": "file", + "name": "AwsProfileFileLocationProvider.java", + "base_name": "AwsProfileFileLocationProvider", + "extension": ".java", + "size": 2451, + "date": "2022-07-15", + "sha1": "81be5487abc7145eb4c99a479d291c626bd96d4d", + "md5": "90060438e7bbc7b14f036e207a640025", + "sha256": "3e0019af31acf7aadf3d31b3f99914db697b67bb47f7993c9926961edce570cf", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 28.95, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/profile/path/AwsProfileFileLocationProviderChain.java", + "type": "file", + "name": "AwsProfileFileLocationProviderChain.java", + "base_name": "AwsProfileFileLocationProviderChain", + "extension": ".java", + "size": 1678, + "date": "2022-07-15", + "sha1": "bb4f3224ac1e969ac818080a6daf52cd8f6926f8", + "md5": "d478aba104b2af09b7e59aa87364a1c3", + "sha256": "cbd115940101853752b716eb403d82a4f313f5bb130de614fe72e3b1f21b2d1d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 41.4, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/profile/path/config", + "type": "directory", + "name": "config", + "base_name": "config", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 2686, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/profile/path/config/ConfigEnvVarOverrideLocationProvider.java", + "type": "file", + "name": "ConfigEnvVarOverrideLocationProvider.java", + "base_name": "ConfigEnvVarOverrideLocationProvider", + "extension": ".java", + "size": 1356, + "date": "2022-07-15", + "sha1": "ffdf253e921d5b89a5e4fc74952deda9ed285089", + "md5": "d0706e70a2cf29ff79dbc22b320e3179", + "sha256": "96a05703df89a8cd57ec015b32d4014e336ef9c7e0354fb66e9f644e9fef0e9e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 46.67, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/profile/path/config/SharedConfigDefaultLocationProvider.java", + "type": "file", + "name": "SharedConfigDefaultLocationProvider.java", + "base_name": "SharedConfigDefaultLocationProvider", + "extension": ".java", + "size": 1330, + "date": "2022-07-15", + "sha1": "c5df420fbffaba18a227fa990d97848545c175f5", + "md5": "51c7fa5db951a47f8b0e05a511edaa01", + "sha256": "d5d3bbe838b08aa1a95efbfe8ee244cbc720c555886c7bf904a23f2d3d13f1ba", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 46.11, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/profile/path/cred", + "type": "directory", + "name": "cred", + "base_name": "cred", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 3, + "dirs_count": 0, + "size_count": 4910, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/profile/path/cred/CredentialsDefaultLocationProvider.java", + "type": "file", + "name": "CredentialsDefaultLocationProvider.java", + "base_name": "CredentialsDefaultLocationProvider", + "extension": ".java", + "size": 1340, + "date": "2022-07-15", + "sha1": "d1d13f3ae2974c63e739c552bb3e20f3d9f50fa8", + "md5": "f60d04bec866b893f0104136155538f3", + "sha256": "5e52c4ae66f7e3db4d1235064c78bd2634a7031077aa186854d8ffd9c24fe0a9", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 49.36, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/profile/path/cred/CredentialsEnvVarOverrideLocationProvider.java", + "type": "file", + "name": "CredentialsEnvVarOverrideLocationProvider.java", + "base_name": "CredentialsEnvVarOverrideLocationProvider", + "extension": ".java", + "size": 1505, + "date": "2022-07-15", + "sha1": "d2276d76c9a71fb522db2975abd77354465344e0", + "md5": "64dfc2866d64216ddb4e9491ad006af0", + "sha256": "5cd4f47868808c2ffc46261af805420c8d8607f5e01a91d8d0eed83bb54c7656", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 44.51, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/profile/path/cred/CredentialsLegacyConfigLocationProvider.java", + "type": "file", + "name": "CredentialsLegacyConfigLocationProvider.java", + "base_name": "CredentialsLegacyConfigLocationProvider", + "extension": ".java", + "size": 2065, + "date": "2022-07-15", + "sha1": "e610a1614a9fc0db280f4bed05d4719b54aaed2c", + "md5": "54837237480f49ce4a297334f4a1f759", + "sha256": "258e1d74d31c2752a842ecda11a8053d0d6c8f144637d582cb6fd7bf784d0a4e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 31.82, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol", + "type": "directory", + "name": "protocol", + "base_name": "protocol", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 42, + "dirs_count": 2, + "size_count": 163163, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/DefaultMarshallingType.java", + "type": "file", + "name": "DefaultMarshallingType.java", + "base_name": "DefaultMarshallingType", + "extension": ".java", + "size": 1199, + "date": "2022-07-15", + "sha1": "c3e05c59144888cf17000e12331f58072b2e08d0", + "md5": "5f5b72439a2b8b6bc795a43218a5fc19", + "sha256": "1f7819bd884af6e42752b9c034d5a89f8daceccada2e39db03f9fa2eaaa55713", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 50.99, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/DefaultValueSupplier.java", + "type": "file", + "name": "DefaultValueSupplier.java", + "base_name": "DefaultValueSupplier", + "extension": ".java", + "size": 1143, + "date": "2022-07-15", + "sha1": "db88685bf8a38ffdea21f7b533024ebdd0e22b04", + "md5": "bbb81eebbaf61735cecdd6e45bf63f3e", + "sha256": "2daa8a699d1dc8f2cec364d611c50874935d604da82970f3bfaf7e15de9199b3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 47.53, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/MarshallingInfo.java", + "type": "file", + "name": "MarshallingInfo.java", + "base_name": "MarshallingInfo", + "extension": ".java", + "size": 5790, + "date": "2022-07-15", + "sha1": "79f11dc286faf4316cb937833101cf5b02e33eb9", + "md5": "61955ba0776f2fa52b86c512e2347f4c", + "sha256": "d477c719fd41a78ad2b5e5c545d1f34616b3b36d8b0682df8a1369c95dbac165", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 13.18, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/MarshallingType.java", + "type": "file", + "name": "MarshallingType.java", + "base_name": "MarshallingType", + "extension": ".java", + "size": 3026, + "date": "2022-07-15", + "sha1": "60c2465f551bb70fe3fdd420f41e8842d78f35e0", + "md5": "c01dcc407fad15e4119c33537211b9d5", + "sha256": "6adc18a9ca26c5e7d9da095d50f6e4c5120dc80b6ee937bb88229fb977573ca9", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 23.84, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/MarshallLocation.java", + "type": "file", + "name": "MarshallLocation.java", + "base_name": "MarshallLocation", + "extension": ".java", + "size": 1459, + "date": "2022-07-15", + "sha1": "7b3813c972209da65b8dc6fd6cb8c89bf759cf01", + "md5": "8e18643eafab8d0c053cbc9a2f0139d6", + "sha256": "7dfdb522a7588b8345f17f198ddfc08ee33d10f1da7c7683daabafd74f574e40", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 39.29, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/OperationInfo.java", + "type": "file", + "name": "OperationInfo.java", + "base_name": "OperationInfo", + "extension": ".java", + "size": 5716, + "date": "2022-07-15", + "sha1": "9efef8133402885d07d2d47fcc89f29abca13312", + "md5": "efa9d374fbc6ca76c7540ad026fcca8a", + "sha256": "4de23cbddd8c001f386f29a9357213bace76ac430b65b3ddfcb18cab1b79d82e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 13.73, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/Protocol.java", + "type": "file", + "name": "Protocol.java", + "base_name": "Protocol", + "extension": ".java", + "size": 1294, + "date": "2022-07-15", + "sha1": "f3c007a5066a4943aa1ea022ad70ebec5cfb4919", + "md5": "646bbc12a39be9357f38759e1e449443", + "sha256": "147be3c37ca966de752e4a364c3c6fc47a4cf4147ca834226c7fcfeb8c4a9467", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 42.54, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/ProtocolMarshaller.java", + "type": "file", + "name": "ProtocolMarshaller.java", + "base_name": "ProtocolMarshaller", + "extension": ".java", + "size": 1566, + "date": "2022-07-15", + "sha1": "d2d572a0554cc39d3a3251d6598b62841da80ebd", + "md5": "09183859395d70d13619ede75bd52514", + "sha256": "3cb4a9765301d5253d48956c0a8720f4df9b7918564946e1a4fd19198d9681a5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 37.93, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/ProtocolRequestMarshaller.java", + "type": "file", + "name": "ProtocolRequestMarshaller.java", + "base_name": "ProtocolRequestMarshaller", + "extension": ".java", + "size": 1830, + "date": "2022-07-15", + "sha1": "ec72f0f94811cf5a082db117bec1fe19ed1f6268", + "md5": "c56505d8c98c60e0a9f3e388b197a72e", + "sha256": "88a5ee67314c5c8b0d65fd01cd079a3739c9294c78cf92a5d9dbf04a8e6ea17e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 36.32, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/StructuredPojo.java", + "type": "file", + "name": "StructuredPojo.java", + "base_name": "StructuredPojo", + "extension": ".java", + "size": 1090, + "date": "2022-07-15", + "sha1": "3d8712bda85557b0d17c813a4062d3c5072d4b40", + "md5": "ab516eba3ceae3ceed06162d28cc4ba9", + "sha256": "346bc12d407d04688dcd953cd286ba8e2121e943b5d3abdab1996eec64393a10", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 55.4, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json", + "type": "directory", + "name": "json", + "base_name": "json", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 32, + "dirs_count": 1, + "size_count": 139050, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/IonFactory.java", + "type": "file", + "name": "IonFactory.java", + "base_name": "IonFactory", + "extension": ".java", + "size": 3229, + "date": "2022-07-15", + "sha1": "492ad2f017018087f71056cf491116c7eb2db5da", + "md5": "3ae801d975eb543eaaff07339e0856a9", + "sha256": "f55ea40b8e738de03b05e65903d8c69eaaca1879d3fd7c4a2946d55b80b6ff06", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\"). You may not\n * use this file except in compliance with the License. A copy of the License is\n * located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed on\n * an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 20.98, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/IonParser.java", + "type": "file", + "name": "IonParser.java", + "base_name": "IonParser", + "extension": ".java", + "size": 11812, + "date": "2022-07-15", + "sha1": "0af853f97f45cedcccd51b40d404689ffb1769ff", + "md5": "a55b295c6274744b215540097b5487e1", + "sha256": "c963fbb678fa7fb2cedb5dae98ddb272a79a27891152f191017de3e1cabde58e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\"). You may not\n * use this file except in compliance with the License. A copy of the License is\n * located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed on\n * an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 7.84, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/JsonClientMetadata.java", + "type": "file", + "name": "JsonClientMetadata.java", + "base_name": "JsonClientMetadata", + "extension": ".java", + "size": 3229, + "date": "2022-07-15", + "sha1": "39bcb7f39988022630efe8ec53093bddaa1585f5", + "md5": "203bc73c46fff5559de72aa6357047a0", + "sha256": "9b7a8d8212e39ccf889c18b572ff4b1f08fb9d0bc2acf5b593ad620942004ade", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 27.9, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/JsonContent.java", + "type": "file", + "name": "JsonContent.java", + "base_name": "JsonContent", + "extension": ".java", + "size": 3099, + "date": "2022-07-15", + "sha1": "fe0afb0811205216f5b3feb4caef994c51745844", + "md5": "5b6d1d91576093ab73d11fc87976eba3", + "sha256": "9a15f1d101959ba1658b1d5f396771f965eb1560bb1d75803feab319b378e744", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 24.14, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/JsonContentTypeResolver.java", + "type": "file", + "name": "JsonContentTypeResolver.java", + "base_name": "JsonContentTypeResolver", + "extension": ".java", + "size": 1859, + "date": "2022-07-15", + "sha1": "73c115e2897b55124bea17d25591ec2e59b12371", + "md5": "b9480c5b0edf908bcfb88fc24ca62767", + "sha256": "41d2b81b6955e2dce59ba3f75522742380b0b816b4c198e5f415f29bee135022", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 35.32, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/JsonContentTypeResolverImpl.java", + "type": "file", + "name": "JsonContentTypeResolverImpl.java", + "base_name": "JsonContentTypeResolverImpl", + "extension": ".java", + "size": 1288, + "date": "2022-07-15", + "sha1": "ca71994d74636b2f384e22e9ceac9d63c1368c99", + "md5": "cd6dfab54183abfcb86470ccc2a3943f", + "sha256": "ec0ec7a59c7410123601ed6bd3159f250c12a4b7843b7c06765d3898c6a43713", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 50.33, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/JsonErrorResponseMetadata.java", + "type": "file", + "name": "JsonErrorResponseMetadata.java", + "base_name": "JsonErrorResponseMetadata", + "extension": ".java", + "size": 1840, + "date": "2022-07-15", + "sha1": "2eacc5d0997ce69a8abb1816527b2dd8da1e9c1e", + "md5": "c2c2a4f6d9eb275ea5cf6a73b58814e6", + "sha256": "41578db4634112654e28b8f121e86ad620a606340c406ff05a4dd9daddd504e0", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 39.09, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/JsonErrorShapeMetadata.java", + "type": "file", + "name": "JsonErrorShapeMetadata.java", + "base_name": "JsonErrorShapeMetadata", + "extension": ".java", + "size": 2164, + "date": "2022-07-15", + "sha1": "da6de667f4f40575b0ca9a979c0bb08e5b33c1fe", + "md5": "9e64c54737790fc7353a1afccd59c43a", + "sha256": "3291e569a003a8b7c17096b917540b9a772894634b9f03a9e42f4b6e30758df8", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 38.12, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/JsonOperationMetadata.java", + "type": "file", + "name": "JsonOperationMetadata.java", + "base_name": "JsonOperationMetadata", + "extension": ".java", + "size": 1635, + "date": "2022-07-15", + "sha1": "691ba6e4fc6916b7d364579ef48d31203b6a6c78", + "md5": "0866b8cb0c7f5f20bab2d2e34017e3eb", + "sha256": "6d99e8c642e015db9d6c103154373c13d7efc02dabee195108e140ce82a6472e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 46.11, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/JsonProtocolMarshallerBuilder.java", + "type": "file", + "name": "JsonProtocolMarshallerBuilder.java", + "base_name": "JsonProtocolMarshallerBuilder", + "extension": ".java", + "size": 4809, + "date": "2022-07-15", + "sha1": "d46bb4edd48520795ab4d51dc4a8d0497c6e1913", + "md5": "f4e2094140234b44fda63e00ab7666cf", + "sha256": "8954a38d65e4210b5a49acee883528937067e170f955ee4ef2d9186ca1ba7598", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 18.2, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/SdkCborGenerator.java", + "type": "file", + "name": "SdkCborGenerator.java", + "base_name": "SdkCborGenerator", + "extension": ".java", + "size": 3005, + "date": "2022-07-15", + "sha1": "9fb32cd2bc2ba8b55f3ddf0afa49d5a3f81444ae", + "md5": "1df11e05e6b6cc090c38dafa3150656a", + "sha256": "cb2a9ab78776e0c274ad4f8054c351e8af044cc06facd87ce2c1fbfcc771b3c0", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 14, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 22.85, + "copyrights": [ + { + "copyright": "Copyright (c) 2016 Amazon.com, Inc. or its affiliates", + "start_line": 3, + "end_line": 3 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 3, + "end_line": 3 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/SdkIonGenerator.java", + "type": "file", + "name": "SdkIonGenerator.java", + "base_name": "SdkIonGenerator", + "extension": ".java", + "size": 6520, + "date": "2022-07-15", + "sha1": "344a08ddd4e3adf1c6a4aca3a9291cdb3b8f6504", + "md5": "68473618d8d1f4a8663e2f3ef3706d3f", + "sha256": "a69758016104c88890491d44be0b581793a860e921e9acd139411b282c36e42d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 13.58, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/SdkJsonGenerator.java", + "type": "file", + "name": "SdkJsonGenerator.java", + "base_name": "SdkJsonGenerator", + "extension": ".java", + "size": 8466, + "date": "2022-07-15", + "sha1": "d32c3147bc3a2fc11fe724c68784a3e1ddf0b7fd", + "md5": "da4e6aaec86b3b2564373e6042c135f3", + "sha256": "df5aad668525b1388d9b546822ba4d79587e2974cde817fc063623d5cd2c0e93", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 10.25, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/SdkJsonMarshallerFactory.java", + "type": "file", + "name": "SdkJsonMarshallerFactory.java", + "base_name": "SdkJsonMarshallerFactory", + "extension": ".java", + "size": 1175, + "date": "2022-07-15", + "sha1": "567cd658f83a2bdab00618cb80a133781ea0f692", + "md5": "0f560433a2421793b7a8c90708e02171", + "sha256": "4ccfbe1a3c7c6233d11b5ee4044f7c0deda895d7eaf7c88bc0a9c92f71ca2e99", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 53.1, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/SdkJsonProtocolFactory.java", + "type": "file", + "name": "SdkJsonProtocolFactory.java", + "base_name": "SdkJsonProtocolFactory", + "extension": ".java", + "size": 7002, + "date": "2022-07-15", + "sha1": "75ae09aa75c3f9fb8266dcbc7e55263d07cb5665", + "md5": "e376a527c192332fcd66113dd7473e49", + "sha256": "3249731f4b85e0065ce75ffaa9b53fc5766688eead3c5cc77a7c48a78220bb65", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 14, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 13.8, + "copyrights": [ + { + "copyright": "Copyright (c) 2016 Amazon.com, Inc. or its affiliates", + "start_line": 3, + "end_line": 3 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 3, + "end_line": 3 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/SdkStructuredCborFactory.java", + "type": "file", + "name": "SdkStructuredCborFactory.java", + "base_name": "SdkStructuredCborFactory", + "extension": ".java", + "size": 3949, + "date": "2022-07-15", + "sha1": "925175f84bc3e5a076f31b343bcfe5721d3a5b3f", + "md5": "5e8e3f1f5f4903d0687321c4d4222dc2", + "sha256": "2495e361c6bd77b12b9a8507efa24128116541e7198fbd2f36d464aca7683d4d", + "mime_type": "text/x-c++", + "file_type": "C++ 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 14, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 22.45, + "copyrights": [ + { + "copyright": "Copyright (c) 2016 Amazon.com, Inc. or its affiliates", + "start_line": 3, + "end_line": 3 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 3, + "end_line": 3 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/SdkStructuredIonFactory.java", + "type": "file", + "name": "SdkStructuredIonFactory.java", + "base_name": "SdkStructuredIonFactory", + "extension": ".java", + "size": 5031, + "date": "2022-07-15", + "sha1": "99b28d2e12234f010d84d370f8cbf445e2305407", + "md5": "e0141442a7810f7718a9ff4cd49e4234", + "sha256": "ca4850be0902f77eafcac2da2bf7bfe504c01e9484d9da424fe2d82d76b902df", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 17.15, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/SdkStructuredJsonFactory.java", + "type": "file", + "name": "SdkStructuredJsonFactory.java", + "base_name": "SdkStructuredJsonFactory", + "extension": ".java", + "size": 2336, + "date": "2022-07-15", + "sha1": "b9a091abf8c5841bd987df2adc35c8ebf316685e", + "md5": "9fc36fa0abbfd4292eb07351f405ca9b", + "sha256": "75a6e2054acbf9992d1069d06c540900c7b3f2f257349e87dc98b9d9ff8f833c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 32.08, + "copyrights": [ + { + "copyright": "Copyright (c) 2016. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/SdkStructuredJsonFactoryImpl.java", + "type": "file", + "name": "SdkStructuredJsonFactoryImpl.java", + "base_name": "SdkStructuredJsonFactoryImpl", + "extension": ".java", + "size": 3857, + "date": "2022-07-15", + "sha1": "5f81b7794245fe99519db7f5878b2260d00e8b3d", + "md5": "f57485b9a45a059e1d1d70f4142d0bd3", + "sha256": "e7a46e87824187893730790b57a9bf88ca27d40dcbd32bf25c7fc0812a3b908e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.58, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/SdkStructuredPlainJsonFactory.java", + "type": "file", + "name": "SdkStructuredPlainJsonFactory.java", + "base_name": "SdkStructuredPlainJsonFactory", + "extension": ".java", + "size": 4651, + "date": "2022-07-15", + "sha1": "cac8294b79296d512dbcc5066e015b6268be36b8", + "md5": "75c04b57efac0c3b8adcb081a6f1958d", + "sha256": "cf52367a9d062842640743fcc2bf052b57a4524687f9bd62885b639debee62d5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 14, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 19.64, + "copyrights": [ + { + "copyright": "Copyright (c) 2016 Amazon.com, Inc. or its affiliates", + "start_line": 3, + "end_line": 3 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 3, + "end_line": 3 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/StructuredJsonGenerator.java", + "type": "file", + "name": "StructuredJsonGenerator.java", + "base_name": "StructuredJsonGenerator", + "extension": ".java", + "size": 4475, + "date": "2022-07-15", + "sha1": "2b0ec50e984c5855b4fe9af959480577989de777", + "md5": "30fc1e481207ce5d21e40c4682b5be71", + "sha256": "931fc93e25e21224484b9eb422778bff2865db877c8910172c7ad49837ce18a7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 14, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 21.04, + "copyrights": [ + { + "copyright": "Copyright (c) 2016 Amazon.com, Inc. or its affiliates", + "start_line": 3, + "end_line": 3 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 3, + "end_line": 3 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/StructuredJsonMarshaller.java", + "type": "file", + "name": "StructuredJsonMarshaller.java", + "base_name": "StructuredJsonMarshaller", + "extension": ".java", + "size": 1214, + "date": "2022-07-15", + "sha1": "67d72455eede4c6fc1b67f32640dcb1e713f1021", + "md5": "433f01c09b17d3b8c4b6e6327ea4c045", + "sha256": "9306a5069b59ea981b0f93a78331f6f757124c5c6d5fe8af9a5411873bd0f19f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 49.68, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/internal", + "type": "directory", + "name": "internal", + "base_name": "internal", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 10, + "dirs_count": 0, + "size_count": 52405, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/internal/EmptyBodyJsonMarshaller.java", + "type": "file", + "name": "EmptyBodyJsonMarshaller.java", + "base_name": "EmptyBodyJsonMarshaller", + "extension": ".java", + "size": 1726, + "date": "2022-07-15", + "sha1": "52e1d520d1d0a54a6ddab837e56c6f59f8c02b25", + "md5": "b68e566901b51f90ee36352decbf84f4", + "sha256": "dba25e3e3cce05e56eb36a4874b429f827ad6c116c00375c83b3fdc5fb0e8186", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 40.74, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/internal/HeaderMarshallers.java", + "type": "file", + "name": "HeaderMarshallers.java", + "base_name": "HeaderMarshallers", + "extension": ".java", + "size": 3046, + "date": "2022-07-15", + "sha1": "beeba7770d68e9b6ec6e5ef3efe1398312771a9f", + "md5": "12c1f4ef3b3d958c25a1b57f330ccec0", + "sha256": "fdc5dc495500af731e8fea499bb32384646091e37f2c8840a01802a575cf67f4", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 26.01, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/internal/JsonMarshaller.java", + "type": "file", + "name": "JsonMarshaller.java", + "base_name": "JsonMarshaller", + "extension": ".java", + "size": 1464, + "date": "2022-07-15", + "sha1": "b69c99d23c25818e36595277c5c5a8a99f253e22", + "md5": "446daab1f607596444e64b28a17f6638", + "sha256": "d4f096c5c9e1ca5cb8dbd7c4421ea6462a72c9a5ff585c8a52a049c84fd31d19", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 43.02, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/internal/JsonMarshallerContext.java", + "type": "file", + "name": "JsonMarshallerContext.java", + "base_name": "JsonMarshallerContext", + "extension": ".java", + "size": 6052, + "date": "2022-07-15", + "sha1": "9f4946e69ef18ede1c31f5abb8664c26446ca539", + "md5": "b12b6c7f2caae333c473277203d6957a", + "sha256": "4d98cf48c073e5915c21d24f0b99db11080b895b9bd69a784aa729b404e7629b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 15.04, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/internal/JsonProtocolMarshaller.java", + "type": "file", + "name": "JsonProtocolMarshaller.java", + "base_name": "JsonProtocolMarshaller", + "extension": ".java", + "size": 11500, + "date": "2022-07-15", + "sha1": "686e57a7d9210dc9ea483a73fd6bc153131fce3a", + "md5": "97a5b4d7b65542a361166723da73c20d", + "sha256": "2a3bd2972852c55b45f22dcd707c4d1a128f9ba0a3a893446794a1cef913a706", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 98.7, + "start_line": 4, + "end_line": 13, + "matched_length": 76, + "match_coverage": 98.7, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is [divalibuted]\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-971f58ba-4215-35ea-2fc7-494dc41cc264" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.5, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [ + "apache_2_0-971f58ba-4215-35ea-2fc7-494dc41cc264" + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/internal/MarshallerRegistry.java", + "type": "file", + "name": "MarshallerRegistry.java", + "base_name": "MarshallerRegistry", + "extension": ".java", + "size": 8009, + "date": "2022-07-15", + "sha1": "94928840467304b3eae397187f0409caebc90ed3", + "md5": "37716391c3830c67d7af18e07632678d", + "sha256": "758c75562a65784d9a9c7f445ffae7c2590e5459e3580c0ac31a409e6e78b2af", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.81, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/internal/QueryParamMarshallers.java", + "type": "file", + "name": "QueryParamMarshallers.java", + "base_name": "QueryParamMarshallers", + "extension": ".java", + "size": 3835, + "date": "2022-07-15", + "sha1": "4460c7d1ab38925582c645288f59e4be3953d02c", + "md5": "1d07287483b0d030a543ed32357918fb", + "sha256": "bc1e1d0e1cc69468e19b795ff6450d2a8e1b1453499bde31e23c7e4bb6b51af9", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 21.04, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/internal/SimpleTypeJsonMarshallers.java", + "type": "file", + "name": "SimpleTypeJsonMarshallers.java", + "base_name": "SimpleTypeJsonMarshallers", + "extension": ".java", + "size": 10458, + "date": "2022-07-15", + "sha1": "1fb20468393500c3c8274368043ff33f7a1456bd", + "md5": "9428886a84f3a71ab4be40af1a4f1f8f", + "sha256": "fb144d7c0d3a8dc1f7bead86c1b2a9ad0c48bd8254b66e04674a5ff6c7b0d682", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 8.7, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/internal/SimpleTypePathMarshallers.java", + "type": "file", + "name": "SimpleTypePathMarshallers.java", + "base_name": "SimpleTypePathMarshallers", + "extension": ".java", + "size": 2916, + "date": "2022-07-15", + "sha1": "dce9965f3a9f5e73ec269d4376b78d595a30411d", + "md5": "670fa63e0e544ab721ea1a7df6d449b3", + "sha256": "48cc17b842f9355ade0b73cfbf7412d71d4007188b0064d0f33fbce9f9621c10", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 26.92, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/protocol/json/internal/ValueToStringConverters.java", + "type": "file", + "name": "ValueToStringConverters.java", + "base_name": "ValueToStringConverters", + "extension": ".java", + "size": 3399, + "date": "2022-07-15", + "sha1": "8133f9b15fff9e58eb256cce3ccfa3ad3cec5b78", + "md5": "a589fcce6c1cda7353697ba95ef99faf", + "sha256": "8ab92eec7d8ebe04ba235769d1fec8cedaa1e67a3640dfdc6df99363a2f528d5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 20.92, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions", + "type": "directory", + "name": "regions", + "base_name": "regions", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 23, + "dirs_count": 0, + "size_count": 83805, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/AbstractRegionMetadataProvider.java", + "type": "file", + "name": "AbstractRegionMetadataProvider.java", + "base_name": "AbstractRegionMetadataProvider", + "extension": ".java", + "size": 2090, + "date": "2022-07-15", + "sha1": "6ca4e97cf26bb18124a6dc7e6c00464c2abb89bb", + "md5": "fecfe034e0687b1dea473276e4b54e33", + "sha256": "0af1a390ee9d43fac21fe7631def2e02f396f826b9127a1c3b09885e68fb7803", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 33.92, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/AwsEnvVarOverrideRegionProvider.java", + "type": "file", + "name": "AwsEnvVarOverrideRegionProvider.java", + "base_name": "AwsEnvVarOverrideRegionProvider", + "extension": ".java", + "size": 1072, + "date": "2022-07-15", + "sha1": "2030ab5eba7b88daa0772cb0b1f19c6c811cf3b0", + "md5": "f35ef4a044382ce407954ba5bc165405", + "sha256": "488766f94110f75c3de4fe6a6b1ead2e88ec01c76ee0a41e61644035d62e08b7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 55.8, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/AwsProfileRegionProvider.java", + "type": "file", + "name": "AwsProfileRegionProvider.java", + "base_name": "AwsProfileRegionProvider", + "extension": ".java", + "size": 2733, + "date": "2022-07-15", + "sha1": "e4f80191d0fa296f069260f417865025b6c9f8ca", + "md5": "df9c8b342d845132df9f215004e065c8", + "sha256": "313a798de94e5e19652478ae17b819f76d165d79a33e8c20af89903512fbe18c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 29.73, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/AwsRegionProvider.java", + "type": "file", + "name": "AwsRegionProvider.java", + "base_name": "AwsRegionProvider", + "extension": ".java", + "size": 1010, + "date": "2022-07-15", + "sha1": "0470eef6b603c7f3a328cadbd3540a49fcb4fb29", + "md5": "f3af67e7ccd4f883b12ccf717edbabfb", + "sha256": "876bba36ced74792c2f39c667a330239fe833b38005949c1b241b38d1bcbd036", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 56.62, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/AwsRegionProviderChain.java", + "type": "file", + "name": "AwsRegionProviderChain.java", + "base_name": "AwsRegionProviderChain", + "extension": ".java", + "size": 2412, + "date": "2022-07-15", + "sha1": "23cf2854cd96fd9656f4d7861e910997c185c3e8", + "md5": "64488cb6eb1a36a6222fbc1dfd393869", + "sha256": "a999ad099debae61293a119ab0f9860214e032d05813bb32631f6c047f9e8cec", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 27.3, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/AwsSystemPropertyRegionProvider.java", + "type": "file", + "name": "AwsSystemPropertyRegionProvider.java", + "base_name": "AwsSystemPropertyRegionProvider", + "extension": ".java", + "size": 1088, + "date": "2022-07-15", + "sha1": "8404b87d950388ae7f88beaae6f436a87b7587a8", + "md5": "9f0b7d771507782312b25201eadc7443", + "sha256": "2f1e8a3b2599aff8215f38f967614b7bdadaf8fd727c95527ce0df24f9ab997f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 57.04, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/DefaultAwsRegionProviderChain.java", + "type": "file", + "name": "DefaultAwsRegionProviderChain.java", + "base_name": "DefaultAwsRegionProviderChain", + "extension": ".java", + "size": 1055, + "date": "2022-07-15", + "sha1": "31a2f610911a15e145f96c9e652b3380a7377842", + "md5": "89135e6fd6a3c7e86eba435e82cef291", + "sha256": "b9d513633502522bb9b09d2a3b53f6b7cea780ad3bea6c824ce4a247eba7eff1", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 63.11, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/EndpointToRegion.java", + "type": "file", + "name": "EndpointToRegion.java", + "base_name": "EndpointToRegion", + "extension": ".java", + "size": 5732, + "date": "2022-07-15", + "sha1": "51717bc34f47a4fa65f0d566b5a4e1f4afffdd88", + "md5": "28239f01491a47e7f2676b04aa97bbae", + "sha256": "1e0fbbd6c95c3ce35298448f88af142ef0428c09d3fc889ee70d10e127e7f96d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 15.1, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/InMemoryRegionImpl.java", + "type": "file", + "name": "InMemoryRegionImpl.java", + "base_name": "InMemoryRegionImpl", + "extension": ".java", + "size": 3027, + "date": "2022-07-15", + "sha1": "86209cf55f77113c657f0cda57063eab61437b25", + "md5": "9a718f0f3c18e654aeb31d03bae8e071", + "sha256": "f52d4eb8bdcb046c839402ed81bce17dc6cc2bb53a9f1fc95119a7ab3eb0e37a", + "mime_type": "text/x-c", + "file_type": "C 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 24.06, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/InMemoryRegionsProvider.java", + "type": "file", + "name": "InMemoryRegionsProvider.java", + "base_name": "InMemoryRegionsProvider", + "extension": ".java", + "size": 2473, + "date": "2022-07-15", + "sha1": "6e6d5b9791bd5ba0aca39f8a3b8817c4cb9d7952", + "md5": "72d105a00345fdd5b757ac59a52e4b6d", + "sha256": "71b44379ab9c3770b854f74da0fa372b516e4124cd92dcfa729ab06b39328094", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 29.39, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/InstanceMetadataRegionProvider.java", + "type": "file", + "name": "InstanceMetadataRegionProvider.java", + "base_name": "InstanceMetadataRegionProvider", + "extension": ".java", + "size": 2302, + "date": "2022-07-15", + "sha1": "f5c26b5f57d1ca9203afa93ffc8e045af2b33ba1", + "md5": "5deebfc64e5ab9194b389ea59efd4126", + "sha256": "3306d07b6c30de13216262ec1f8fc889b65c2e21ccd02693642b9e2be543ddd7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 31.43, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/LegacyRegionXmlLoadUtils.java", + "type": "file", + "name": "LegacyRegionXmlLoadUtils.java", + "base_name": "LegacyRegionXmlLoadUtils", + "extension": ".java", + "size": 3940, + "date": "2022-07-15", + "sha1": "9337321cd3c022f4a42bf7994c9e09a628fe223e", + "md5": "8055b4615a5ced56dfe47a9460d5a2ba", + "sha256": "902351190392ea90346fbe94dc8f609978365c7f66e6c7aa9e60295173784030", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 16.7, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/LegacyRegionXmlMetadataBuilder.java", + "type": "file", + "name": "LegacyRegionXmlMetadataBuilder.java", + "base_name": "LegacyRegionXmlMetadataBuilder", + "extension": ".java", + "size": 3677, + "date": "2022-07-15", + "sha1": "b7cfbe8c9bed4b9d6c9988ee57098ce4c50e20ef", + "md5": "925021e08836f6be395398207a9d37f9", + "sha256": "ce780c721aac5289644e7a7942bd3838a18e4c624a11fae452510e3f08cd5ecf", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 21.69, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/MetadataSupportedRegionFromEndpointProvider.java", + "type": "file", + "name": "MetadataSupportedRegionFromEndpointProvider.java", + "base_name": "MetadataSupportedRegionFromEndpointProvider", + "extension": ".java", + "size": 1139, + "date": "2022-07-15", + "sha1": "631f214551ba66d8c29a9b89c5b816f3f7ee8a7d", + "md5": "185515cee283c234b541e6ca4a5ba151", + "sha256": "08b30254dac8bdb28d392fba4327eb3a072cffd3702f1ca20b16a6d77fd8604a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 57.89, + "copyrights": [ + { + "copyright": "Copyright 2020-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/Region.java", + "type": "file", + "name": "Region.java", + "base_name": "Region", + "extension": ".java", + "size": 6626, + "date": "2022-07-15", + "sha1": "069e127fc72a882f7838643194ff10ac605094b3", + "md5": "b564913201d2960db05adf0517aea36d", + "sha256": "b72f54623ff68225aa847bceb80ca6be655e2e6d36cc53f29bf37b6d81f87570", + "mime_type": "text/x-c", + "file_type": "C 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.81, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/RegionImpl.java", + "type": "file", + "name": "RegionImpl.java", + "base_name": "RegionImpl", + "extension": ".java", + "size": 2981, + "date": "2022-07-15", + "sha1": "8c54d89532c1f240a0515151a8b83bff4104a2a8", + "md5": "8ceb961806cc5698c16cf23c5d7bdfb3", + "sha256": "0db3c05dbf341e002cb60621ae0131fcd4b7c830477ed67a90064849c697a9d4", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 22.13, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/RegionMetadata.java", + "type": "file", + "name": "RegionMetadata.java", + "base_name": "RegionMetadata", + "extension": ".java", + "size": 5228, + "date": "2022-07-15", + "sha1": "c6ebfc2ce3a5bc0c35c9a258194fb30d49add667", + "md5": "bfefc8f6b6f03abd99336ff05f2fe43f", + "sha256": "037eff637b4f63299ea0829921eca14aa272acb71c5cfecb1ae000342f4aef25", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.88, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/RegionMetadataFactory.java", + "type": "file", + "name": "RegionMetadataFactory.java", + "base_name": "RegionMetadataFactory", + "extension": ".java", + "size": 1202, + "date": "2022-07-15", + "sha1": "8f00be9523ba02d56dd7d9503c0b00e1d25fb8f6", + "md5": "7b3c962896c3dc16f60c7362243a0674", + "sha256": "8f10b5c9e95870a8a72021d6def54004ffa07625fcc30d89d7a1c49e16a1659e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 57.89, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/RegionMetadataParser.java", + "type": "file", + "name": "RegionMetadataParser.java", + "base_name": "RegionMetadataParser", + "extension": ".java", + "size": 9728, + "date": "2022-07-15", + "sha1": "ae832da1698848f4709c004a46ec369af43da3ee", + "md5": "dbd6b485d624842ab3dd538898d1a18a", + "sha256": "b00dcfc340dae52a0aa69b28e44543ce88900368e0b6484fcac257168343cf3d", + "mime_type": "text/x-Algol68", + "file_type": "Algol 68 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 8.19, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/RegionMetadataProvider.java", + "type": "file", + "name": "RegionMetadataProvider.java", + "base_name": "RegionMetadataProvider", + "extension": ".java", + "size": 3990, + "date": "2022-07-15", + "sha1": "33c6aad749f95e563999e76d60ceef08bb7da144", + "md5": "5c7eca2c2ba80b27d666feaf5ccbd10f", + "sha256": "5dc074040aed93b9d760a766506774b37e62a04295946dd456b5e263fdd799b3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 14.5, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/Regions.java", + "type": "file", + "name": "Regions.java", + "base_name": "Regions", + "extension": ".java", + "size": 4329, + "date": "2022-07-15", + "sha1": "5ba3f4bd58dd46af0a6433535b668f02e77a0160", + "md5": "dcbe28cd8b6753841e0151bc66df93c3", + "sha256": "066939817ddd30f7e7d7c2223aca6f9116f93c3b71d5c46229a71fb3d3ba1e33", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\r\n *\r\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\r\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\r\n * License for the specific language governing permissions and\r\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.88, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/RegionUtils.java", + "type": "file", + "name": "RegionUtils.java", + "base_name": "RegionUtils", + "extension": ".java", + "size": 11758, + "date": "2022-07-15", + "sha1": "74dfe58b96108100ce9ff0623f80532ad27c785f", + "md5": "a6a8229ed1e82da29427caedc0c1e0e3", + "sha256": "d4caa096ea4558fc599d130a5a7fead2ee8c3eafd43743078ed31f3c3f75a1fa", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 6.15, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/regions/ServiceAbbreviations.java", + "type": "file", + "name": "ServiceAbbreviations.java", + "base_name": "ServiceAbbreviations", + "extension": ".java", + "size": 4213, + "date": "2022-07-15", + "sha1": "35f03fd3a24c42bab59af0c8614c7b7a7507f604", + "md5": "724730c584d53fb05cfc92195978017a", + "sha256": "c4df27da93481136ca5e0c7901f1d454fbe0e4bb3ea0e7f473b90ea8bb8774b5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 14.19, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry", + "type": "directory", + "name": "retry", + "base_name": "retry", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 26, + "dirs_count": 2, + "size_count": 99823, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/ClockSkewAdjuster.java", + "type": "file", + "name": "ClockSkewAdjuster.java", + "base_name": "ClockSkewAdjuster", + "extension": ".java", + "size": 11067, + "date": "2022-07-15", + "sha1": "ce4a4b79b7580ba064e352de34b75572cf7ee2bb", + "md5": "64856cade4f4cd1f2cdd58cbbaa9c49e", + "sha256": "35d0b69b54a5cf9d30cd9dac2346515c0b76234392989d7a14c44a54c2ebc53c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 6.58, + "copyrights": [ + { + "copyright": "Copyright 2019-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/PredefinedBackoffStrategies.java", + "type": "file", + "name": "PredefinedBackoffStrategies.java", + "base_name": "PredefinedBackoffStrategies", + "extension": ".java", + "size": 7337, + "date": "2022-07-15", + "sha1": "e30ceb5d9ca568329fc0205ad265238164de6e37", + "md5": "637a153459346b49684789f596d0e75d", + "sha256": "1a658ba2b7d5d6ee375443c098715c6d251337b1ac7fe906ef68522011460ed0", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.92, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/PredefinedRetryPolicies.java", + "type": "file", + "name": "PredefinedRetryPolicies.java", + "base_name": "PredefinedRetryPolicies", + "extension": ".java", + "size": 9518, + "date": "2022-07-15", + "sha1": "0ed027549febd8778021c94cb0be7742a83ce772", + "md5": "503eb18fd02cfc9d3643777fb8588d94", + "sha256": "b2454797abc4c432d0c829b5804213ac3015caf5897dc3de764f5b22476fae62", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 8.26, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/RetryMode.java", + "type": "file", + "name": "RetryMode.java", + "base_name": "RetryMode", + "extension": ".java", + "size": 2556, + "date": "2022-07-15", + "sha1": "6b978bc8bdf4c14821992bf3560fc6bb4ce1081c", + "md5": "3e8774fe7490a64998bc6e4519a18fbd", + "sha256": "8633a44c531d642fa1e7bf39feb2b7182a7389f9258d7461cdd4615d441be083", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 21.0, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/RetryPolicy.java", + "type": "file", + "name": "RetryPolicy.java", + "base_name": "RetryPolicy", + "extension": ".java", + "size": 20165, + "date": "2022-07-15", + "sha1": "15b6c02a32f49e6300ecee58bc7b181f864e43fd", + "md5": "cc95b4ce939eee43e9394af01740e50e", + "sha256": "71c6307cca9228caf13782a4091d88ea492dad561dc2338a88e2feb3ef9ae26d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 4.68, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/RetryPolicyAdapter.java", + "type": "file", + "name": "RetryPolicyAdapter.java", + "base_name": "RetryPolicyAdapter", + "extension": ".java", + "size": 5053, + "date": "2022-07-15", + "sha1": "a933ab912b746379fbb0f087d8bbe367603ecc09", + "md5": "91e34fb94df6f95c00bcdc9e5099d76a", + "sha256": "b8a4b0b2fec90f477d47986d1af649ee52619ea4b1964cdbc6d6b2297b90e7f8", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 19.25, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/RetryUtils.java", + "type": "file", + "name": "RetryUtils.java", + "base_name": "RetryUtils", + "extension": ".java", + "size": 8724, + "date": "2022-07-15", + "sha1": "cb5ca0d9a9a9d27e8489920779b37c249c145788", + "md5": "5ed307b42abf84e501413ea50a08c245", + "sha256": "02bd5550ec2a830839d6d9d841140ebc340a49f373f56ed9fb6173df39321986", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 8.21, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/V2CompatibleBackoffStrategy.java", + "type": "file", + "name": "V2CompatibleBackoffStrategy.java", + "base_name": "V2CompatibleBackoffStrategy", + "extension": ".java", + "size": 892, + "date": "2022-07-15", + "sha1": "8588c9be43b418f6e73fd950ad97c210e6ea9c6a", + "md5": "6b7c95edbf3219d65d5e2b8f3d04c519", + "sha256": "f4d5746f37e8c1e9db1c2d3b55eb77655b079cc0e6f69519cb842ce15c2fd7b1", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 61.6, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/V2CompatibleBackoffStrategyAdapter.java", + "type": "file", + "name": "V2CompatibleBackoffStrategyAdapter.java", + "base_name": "V2CompatibleBackoffStrategyAdapter", + "extension": ".java", + "size": 1653, + "date": "2022-07-15", + "sha1": "7b3226e877bea92a4f4407e5ee9bad52d9c817b2", + "md5": "dc07661bec3078083dd1b6f77db3c86b", + "sha256": "0ef31de35c8913ac8d1e03ff66cc1469af8f825b8ba412161b130b4bde8a48aa", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 47.24, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/internal", + "type": "directory", + "name": "internal", + "base_name": "internal", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 6, + "dirs_count": 0, + "size_count": 13653, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/internal/AuthErrorRetryStrategy.java", + "type": "file", + "name": "AuthErrorRetryStrategy.java", + "base_name": "AuthErrorRetryStrategy", + "extension": ".java", + "size": 1152, + "date": "2022-07-15", + "sha1": "2510a99c4dfcf8154341d21323c985024b5c2380", + "md5": "1168199df98b17e4fd4f608d575d096a", + "sha256": "fd6ff38ee8d63281538f8e2927ba35dbf9c6e572dc0b7a39295ff0ef7d553278", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 50.66, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/internal/AuthRetryParameters.java", + "type": "file", + "name": "AuthRetryParameters.java", + "base_name": "AuthRetryParameters", + "extension": ".java", + "size": 1445, + "date": "2022-07-15", + "sha1": "50203503b0443d83dc330e1ee481d4883d4d2da7", + "md5": "7d161e47d9de866ab0b434d9a3e3154e", + "sha256": "bbf4bdc56d9ee0b8805ff8dce34b12e05b0e30e4e2cdbab3e0a5e31603d3c6f8", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 44.77, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/internal/CredentialsEndpointRetryParameters.java", + "type": "file", + "name": "CredentialsEndpointRetryParameters.java", + "base_name": "CredentialsEndpointRetryParameters", + "extension": ".java", + "size": 2361, + "date": "2022-07-15", + "sha1": "935cef0a15089c4a5e320d068682a2324b01ceaa", + "md5": "c7db4c8247ba63db0b547adb71a1917c", + "sha256": "f493ee46713fcd2164da3cf13887c2b49260bf0361f5a7f16a538c2bdc35e79a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 29.65, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/internal/CredentialsEndpointRetryPolicy.java", + "type": "file", + "name": "CredentialsEndpointRetryPolicy.java", + "base_name": "CredentialsEndpointRetryPolicy", + "extension": ".java", + "size": 1695, + "date": "2022-07-15", + "sha1": "f33dac1d5a3ab624d8eb7742fc038545661b7c23", + "md5": "b9d290aac0e971519c44442c28fede49", + "sha256": "89afd6e20eeca877e3768fa5e29e58662ceae2578b382d8c4d6a124a51ec12ae", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 37.22, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/internal/MaxAttemptsResolver.java", + "type": "file", + "name": "MaxAttemptsResolver.java", + "base_name": "MaxAttemptsResolver", + "extension": ".java", + "size": 3481, + "date": "2022-07-15", + "sha1": "4c1e944f67f1dee183654f2cdfc7c56b542d77b1", + "md5": "08c8626a728371639d489c85bbd274d9", + "sha256": "644edcaf171a8a7d7fffbf25edfe6e35cf54899b8f18fc2ca0efd9d347316e86", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 21.94, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/internal/RetryModeResolver.java", + "type": "file", + "name": "RetryModeResolver.java", + "base_name": "RetryModeResolver", + "extension": ".java", + "size": 3519, + "date": "2022-07-15", + "sha1": "a7b1ab42805ea69d4dfc173204fb9f80af3d6d39", + "md5": "dbc73515ffdf34014c616a635a213b86", + "sha256": "d1612b6ce83181d18baf1792e924eeb24f78996bb1dd261d7a88eb09ddabb386", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 21.75, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/v2", + "type": "directory", + "name": "v2", + "base_name": "v2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 11, + "dirs_count": 0, + "size_count": 19205, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/v2/AndRetryCondition.java", + "type": "file", + "name": "AndRetryCondition.java", + "base_name": "AndRetryCondition", + "extension": ".java", + "size": 1536, + "date": "2022-07-15", + "sha1": "7b6bdb6f72157285562bec8e6a7cde76d54881ad", + "md5": "433e0e81fa97333fd1042525a8cedde4", + "sha256": "cba8074debb348c9a2126bafea03c190990d70e35ae8a5a4bba30ee784d69a98", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 43.5, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/v2/BackoffStrategy.java", + "type": "file", + "name": "BackoffStrategy.java", + "base_name": "BackoffStrategy", + "extension": ".java", + "size": 1206, + "date": "2022-07-15", + "sha1": "b6c42cf4a9d11ef5caebb51be4d5d16680048c80", + "md5": "972d43fbe171d50747fd8e4a261a4803", + "sha256": "c93da94f7be5d4a6b97c275229fdaac4f0e7af2125dee0f9e8e357e2df5653e0", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 45.29, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/v2/FixedDelayBackoffStrategy.java", + "type": "file", + "name": "FixedDelayBackoffStrategy.java", + "base_name": "FixedDelayBackoffStrategy", + "extension": ".java", + "size": 1124, + "date": "2022-07-15", + "sha1": "6e3c2cedccac4a60cdcff27e255b36a399d991ce", + "md5": "ebf17dd790bd2ab1f4d9422bf1792324", + "sha256": "1f47ae5f3c87e2ba1d78eda77fb26771a3f83abc1cb27366b466557200881c41", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 57.46, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/v2/MaxNumberOfRetriesCondition.java", + "type": "file", + "name": "MaxNumberOfRetriesCondition.java", + "base_name": "MaxNumberOfRetriesCondition", + "extension": ".java", + "size": 1205, + "date": "2022-07-15", + "sha1": "05ae79b88d939d4f38bd6437ee605e49c3dd8506", + "md5": "aa04b2b6a0d640958c030f2533be4998", + "sha256": "7dc58bebdc5520d50b5f7b36d5bb0eea4624c30dffe18731c5015cf9f70c487a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 54.61, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/v2/OrRetryCondition.java", + "type": "file", + "name": "OrRetryCondition.java", + "base_name": "OrRetryCondition", + "extension": ".java", + "size": 1426, + "date": "2022-07-15", + "sha1": "aef59d5706ea0ac332e548e82828fd85eaa9e85a", + "md5": "a3f4e86247706bbec3a76bf929ca3d1e", + "sha256": "bc6537ed2d5f09a639cd3c0daf3eb0ebaadc272e59f704d1303fe48590e92c08", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 46.11, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/v2/RetryCondition.java", + "type": "file", + "name": "RetryCondition.java", + "base_name": "RetryCondition", + "extension": ".java", + "size": 1084, + "date": "2022-07-15", + "sha1": "e6ea1224eb157a26ab615dd183c76253efa68e96", + "md5": "42937f12ce7b56c9290051eedd701985", + "sha256": "4326c5217ab5fa28916ad29d1b900201e74432d57264021fe65491596adef134", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 50.66, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/v2/RetryOnExceptionsCondition.java", + "type": "file", + "name": "RetryOnExceptionsCondition.java", + "base_name": "RetryOnExceptionsCondition", + "extension": ".java", + "size": 3232, + "date": "2022-07-15", + "sha1": "cc1a45d96c7a9ee8da71ee431600f602ddddc77a", + "md5": "d019b1579775e04099a5c9a7d8b97fa9", + "sha256": "424c9e48df0be99458b4b6b11e11a9b1f5ad7feb980306a5c3dd1ec959fd3724", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 23.33, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/v2/RetryOnStatusCodeCondition.java", + "type": "file", + "name": "RetryOnStatusCodeCondition.java", + "base_name": "RetryOnStatusCodeCondition", + "extension": ".java", + "size": 1904, + "date": "2022-07-15", + "sha1": "b780fe43da4e89075ff85abedceb8f2b991312d1", + "md5": "fb657f13e20a072ca725850e00d40c28", + "sha256": "7528fc369bd13b4ba47fed1d29583e53ab2fceac8e9f1927f2bf18b4952c2acc", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 34.38, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/v2/RetryPolicy.java", + "type": "file", + "name": "RetryPolicy.java", + "base_name": "RetryPolicy", + "extension": ".java", + "size": 807, + "date": "2022-07-15", + "sha1": "96b059e752bccdbb75c2bbc63a66207fe551fd2e", + "md5": "d7551168adbba36c9fe497916b6e73f4", + "sha256": "236de7664d5a948005e518575ffd6d0c20daee3db47506c36f2975b473c963a8", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 69.37, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/v2/RetryPolicyContext.java", + "type": "file", + "name": "RetryPolicyContext.java", + "base_name": "RetryPolicyContext", + "extension": ".java", + "size": 4149, + "date": "2022-07-15", + "sha1": "ac9e05e3368590766bacdbe11695a0f54efbac26", + "md5": "509ab7d3b78453b5a24138119c2654b5", + "sha256": "20adfbcb5b6378ef31261ffaa7f62fb2f29a94bf983001ea1408336b414a2d3e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 19.74, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/retry/v2/SimpleRetryPolicy.java", + "type": "file", + "name": "SimpleRetryPolicy.java", + "base_name": "SimpleRetryPolicy", + "extension": ".java", + "size": 1532, + "date": "2022-07-15", + "sha1": "6046b0b5585c7de0f7008925b150265b866594dc", + "md5": "72fb848539b2bc6fb360c4288fb4c0e8", + "sha256": "6b6888d4df0da81cc747fd0c166bcb288651dc1be431ab211d78829284f5eaf3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 47.53, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/sdk", + "type": "directory", + "name": "sdk", + "base_name": "sdk", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 88, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/sdk/versionInfo.properties", + "type": "file", + "name": "versionInfo.properties", + "base_name": "versionInfo", + "extension": ".properties", + "size": 88, + "date": "2022-07-15", + "sha1": "e75f544970142bb8aeda804e6423bf06b72fa465", + "md5": "23ef7703f6a1fc3d94108850bf86003f", + "sha256": "f37c7096da77e794e73415c0dac3dbb79f195d5a394d92e2bc90fcc390e0a727", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform", + "type": "directory", + "name": "transform", + "base_name": "transform", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 22, + "dirs_count": 0, + "size_count": 105985, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/AbstractErrorUnmarshaller.java", + "type": "file", + "name": "AbstractErrorUnmarshaller.java", + "base_name": "AbstractErrorUnmarshaller", + "extension": ".java", + "size": 2633, + "date": "2022-07-15", + "sha1": "729bf91ab92f649e96eb9614e08e54110fedbfdc", + "md5": "76fbef02c0ca053b4dae0473ec1b10fe", + "sha256": "9003896e8319f948fb837a27c9a5ca1ad378801e5824f331fd1f0b34c8bc9526", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 28.31, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/EnhancedJsonErrorUnmarshaller.java", + "type": "file", + "name": "EnhancedJsonErrorUnmarshaller.java", + "base_name": "EnhancedJsonErrorUnmarshaller", + "extension": ".java", + "size": 1479, + "date": "2022-07-15", + "sha1": "ed1c5f29c8f7915a378015664bf3f610b96ed3ce", + "md5": "0197bc000539611b28251d3a88eff795", + "sha256": "4028f80ac838e5c40a3f954b2296424d7e461c437420f9e428539484da932cc3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 46.39, + "copyrights": [ + { + "copyright": "Copyright (c) 2019. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/JsonErrorUnmarshaller.java", + "type": "file", + "name": "JsonErrorUnmarshaller.java", + "base_name": "JsonErrorUnmarshaller", + "extension": ".java", + "size": 3492, + "date": "2022-07-15", + "sha1": "b938c2c4ac77875b4e07dc3422935f6781ccbfef", + "md5": "b20435e74fc8450d732f420800cc3852", + "sha256": "cf97494957775c62cdfcef8852d3b59249ab6a2161bac2a12b6a2c3f2a61ff58", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 20.64, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/JsonUnmarshallerContext.java", + "type": "file", + "name": "JsonUnmarshallerContext.java", + "base_name": "JsonUnmarshallerContext", + "extension": ".java", + "size": 7224, + "date": "2022-07-15", + "sha1": "a55a815ab86f59a543f135ef01099ab81acc61ce", + "md5": "bd36eb45b6c301e83b9d0b5bfb57f708", + "sha256": "9ef60e81792a2d8f63170318689b4f3c66506c5e9d8b610b689888dd65b1acbb", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.27, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/JsonUnmarshallerContextImpl.java", + "type": "file", + "name": "JsonUnmarshallerContextImpl.java", + "base_name": "JsonUnmarshallerContextImpl", + "extension": ".java", + "size": 11313, + "date": "2022-07-15", + "sha1": "dfdb0a44777aab8548cbd756e82c8407fa075c99", + "md5": "8d4a4e3b028e9511c2d66c359e95969f", + "sha256": "09142ee141fc32613e73cd08983d95d1beb3a16b805cfb2d671cf545e941bcb3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 7.51, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/LegacyErrorUnmarshaller.java", + "type": "file", + "name": "LegacyErrorUnmarshaller.java", + "base_name": "LegacyErrorUnmarshaller", + "extension": ".java", + "size": 4331, + "date": "2022-07-15", + "sha1": "a267036270d6a35ae08f2bcbfa83260b840162a9", + "md5": "e95d79a25705790a45b824996e0701ec", + "sha256": "91c48e94530c80cd4d752d334c1493a5ee491dbf8c1bbac5a03b558ab3d1d751", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 17.07, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/ListUnmarshaller.java", + "type": "file", + "name": "ListUnmarshaller.java", + "base_name": "ListUnmarshaller", + "extension": ".java", + "size": 2933, + "date": "2022-07-15", + "sha1": "df573c359c965db5a4a92458b834947ec303eaf6", + "md5": "4c1d8349e7a1ecfd9ba2a40d884793a0", + "sha256": "af2047e45c18b0db43f807c42d3f8244b4f8501bc5c95611f04bff304d481499", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 26.37, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/MapEntry.java", + "type": "file", + "name": "MapEntry.java", + "base_name": "MapEntry", + "extension": ".java", + "size": 1468, + "date": "2022-07-15", + "sha1": "84deee09e78f5ef9a1488417e33c740a9b958dbe", + "md5": "11dd7c98e781048a965a5e600bbbfa01", + "sha256": "de53211d70cac7c153da3426c177ca2dcc79985ff5064f17c3999487c9ecbec1", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 38.12, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/MapUnmarshaller.java", + "type": "file", + "name": "MapUnmarshaller.java", + "base_name": "MapUnmarshaller", + "extension": ".java", + "size": 2227, + "date": "2022-07-15", + "sha1": "69581349340ad0af48d611dc9c7b5a5bd620d2e7", + "md5": "8bb9072f13b816f172c6dbc154bd43b7", + "sha256": "7247fa5e483b200ec87ac27bbf8baab2506b8cdad67d04718ada906f894edb2c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 31.17, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/Marshaller.java", + "type": "file", + "name": "Marshaller.java", + "base_name": "Marshaller", + "extension": ".java", + "size": 682, + "date": "2022-07-15", + "sha1": "2a8a4301f9113cf837c98b0e1c94f419742dc2a6", + "md5": "017d264107e750d38e34a4637d8f98eb", + "sha256": "3351e9b7ffcab1186ae1f7b2e4973f0d1de15a1715ef760c639d9ae8ceab78ba", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 75.49, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/PathMarshallers.java", + "type": "file", + "name": "PathMarshallers.java", + "base_name": "PathMarshallers", + "extension": ".java", + "size": 5862, + "date": "2022-07-15", + "sha1": "152296aaaa92de0fb2ee8b3f7a1b3e4ba9cd2de4", + "md5": "40aefd5f89d0998a9995af602d49f73d", + "sha256": "b0528c9fc60acabc27643506514f490fc27d506acf7d51f3bfa7728237eb5a8f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 13.41, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/SimpleTypeCborUnmarshallers.java", + "type": "file", + "name": "SimpleTypeCborUnmarshallers.java", + "base_name": "SimpleTypeCborUnmarshallers", + "extension": ".java", + "size": 8520, + "date": "2022-07-15", + "sha1": "1916c730d3708597236e6961277231a785f1a878", + "md5": "a404472114a3108d4e9ffd268d36bec1", + "sha256": "5b6fdbb33d0c8535d9296a265da037ccbdb1cd960f600b74a21dabd497cb73d0", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 12.2, + "copyrights": [ + { + "copyright": "Copyright 2016-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/SimpleTypeIonUnmarshallers.java", + "type": "file", + "name": "SimpleTypeIonUnmarshallers.java", + "base_name": "SimpleTypeIonUnmarshallers", + "extension": ".java", + "size": 6548, + "date": "2022-07-15", + "sha1": "6e04a2f5408df95852c34df912b729e220f1d868", + "md5": "37a1c747f4defe6f5edcd4babd94c312", + "sha256": "2f7b9d2ee71c90b40f824d2ed52b7c3a64d23bc8bae25d8c624ceeb2a6a9a2fc", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\"). You may not\n * use this file except in compliance with the License. A copy of the License is\n * located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed on\n * an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 15.52, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/SimpleTypeJsonUnmarshallers.java", + "type": "file", + "name": "SimpleTypeJsonUnmarshallers.java", + "base_name": "SimpleTypeJsonUnmarshallers", + "extension": ".java", + "size": 12001, + "date": "2022-07-15", + "sha1": "7345263079dd0c9c0472b1067126c9c966bfb85a", + "md5": "c5d9b5713d8e0a702d3dd549318f2df9", + "sha256": "de54e6ca4bd67229f294eb110789eb6b623df153564ed7cc19fe33362d6abbc7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 8.53, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/SimpleTypeStaxUnmarshallers.java", + "type": "file", + "name": "SimpleTypeStaxUnmarshallers.java", + "base_name": "SimpleTypeStaxUnmarshallers", + "extension": ".java", + "size": 10845, + "date": "2022-07-15", + "sha1": "8a93f9a2a0473007a721ea40b5bb572d4c7f5104", + "md5": "c65406400dc44fe649788bfd0671cea7", + "sha256": "0e8280758089d43e6f08716ca497f2d1d4ac9b5bbb2c5e473b4567451684b567", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.41, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/SimpleTypeUnmarshallers.java", + "type": "file", + "name": "SimpleTypeUnmarshallers.java", + "base_name": "SimpleTypeUnmarshallers", + "extension": ".java", + "size": 5243, + "date": "2022-07-15", + "sha1": "f7831ef2fd25249555968ab1e5f8e83c1c45701f", + "md5": "318e761363c2f167a351901719f17694", + "sha256": "4cc69c0eaf264aef2fbeefb214056e47e0cebc7aab2d2fd450d9fcd401db4c86", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 16.67, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/StandardErrorUnmarshaller.java", + "type": "file", + "name": "StandardErrorUnmarshaller.java", + "base_name": "StandardErrorUnmarshaller", + "extension": ".java", + "size": 3967, + "date": "2022-07-15", + "sha1": "7ac52b87c9f8cfca21ef6f8878d4f4766a1902d9", + "md5": "1792c9d7f92800df51cdbe0c4f6b1a2a", + "sha256": "1e14e2160b4027c3b25415909b0f28dac37673bbb555e320c049ca22802fb85d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 18.16, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/StaxUnmarshallerContext.java", + "type": "file", + "name": "StaxUnmarshallerContext.java", + "base_name": "StaxUnmarshallerContext", + "extension": ".java", + "size": 11635, + "date": "2022-07-15", + "sha1": "fac3d636fee976b740003bbe0fa3f7d889fedb53", + "md5": "f532dc4d3abe3f3ca396fbe16b168b1b", + "sha256": "973ee280fd07bfa5e1388535cd48077fdc375f322564fc04f6a96ccd4e73a8a5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 6.58, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/Unmarshaller.java", + "type": "file", + "name": "Unmarshaller.java", + "base_name": "Unmarshaller", + "extension": ".java", + "size": 722, + "date": "2022-07-15", + "sha1": "fd81c66a8273d76d41f626c0bb7878eb635cb91b", + "md5": "06328d1b2f849761375df927367f8f66", + "sha256": "313d36689ffa1809c7a78e922574c49b1551a67e2b94a530be95eabb35538c75", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF, LF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 73.33, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/VoidJsonUnmarshaller.java", + "type": "file", + "name": "VoidJsonUnmarshaller.java", + "base_name": "VoidJsonUnmarshaller", + "extension": ".java", + "size": 913, + "date": "2022-07-15", + "sha1": "68b5031113293fdbd36dea9436f4f7ce90429bea", + "md5": "161c7e276ac10c58b385cd1f4a4a3092", + "sha256": "db538b8d98ac8ec38f5f7e514c02e45cb3c2a6040dc8cbbbbd78b725531f8332", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 63.64, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/VoidStaxUnmarshaller.java", + "type": "file", + "name": "VoidStaxUnmarshaller.java", + "base_name": "VoidStaxUnmarshaller", + "extension": ".java", + "size": 978, + "date": "2022-07-15", + "sha1": "a5bba19557c46da1657d2d5aad9a27df26f3ea2b", + "md5": "b3213fe6954fa734f581bfd68abeaa5b", + "sha256": "daddb35441d44ddf3de3980326189bb43853068d4a000c41b2e345f3cb3b25d6", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 60.63, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/transform/VoidUnmarshaller.java", + "type": "file", + "name": "VoidUnmarshaller.java", + "base_name": "VoidUnmarshaller", + "extension": ".java", + "size": 969, + "date": "2022-07-15", + "sha1": "1f3e97685557dc2eaefbc71ad777ba240191e00e", + "md5": "a9faeeaad297f06e4e51ea5859f034af", + "sha256": "2a7ad19b0a5229467c610fe73a6f57411efaef3ae5281282c4fcdb6ec7cf021a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 59.69, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util", + "type": "directory", + "name": "util", + "base_name": "util", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 72, + "dirs_count": 2, + "size_count": 353024, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/AbstractBase32Codec.java", + "type": "file", + "name": "AbstractBase32Codec.java", + "base_name": "AbstractBase32Codec", + "extension": ".java", + "size": 11453, + "date": "2022-07-15", + "sha1": "4e8389239024d95762f6c358791756c6432fd7f7", + "md5": "6fb585ab45f7eec7a45685910df5e4d9", + "sha256": "e69cf29351a6f9f84b7f1f4f745b729857361933a5c7ebe38ff5b2897b74cf87", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 7.18, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "author": "Hanson Char", + "start_line": 21, + "end_line": 21 + } + ], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/AwsClientSideMonitoringMetrics.java", + "type": "file", + "name": "AwsClientSideMonitoringMetrics.java", + "base_name": "AwsClientSideMonitoringMetrics", + "extension": ".java", + "size": 1147, + "date": "2022-07-15", + "sha1": "87ca7b2dfd91096384ae663a8a97f6ee1a0c6e04", + "md5": "42be61bccb8d48028de1170fde03a215", + "sha256": "ceafd4fa661081ea273389d6c5cda4506aac1b2320b7b25a1a4583e3e2cf4fb5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 50.66, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/AwsHostNameUtils.java", + "type": "file", + "name": "AwsHostNameUtils.java", + "base_name": "AwsHostNameUtils", + "extension": ".java", + "size": 10673, + "date": "2022-07-15", + "sha1": "9acfd55e696833d53535a39fc13f8d66f344e4a8", + "md5": "149a9bc6c5eef6044461753eae176db3", + "sha256": "d2416d2a5bd444ea4b4e597a3c2650ebf78499b5b2b3145de09a857f033ac2f5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 6.88, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/AWSRequestMetrics.java", + "type": "file", + "name": "AWSRequestMetrics.java", + "base_name": "AWSRequestMetrics", + "extension": ".java", + "size": 8857, + "date": "2022-07-15", + "sha1": "a64cd67c119ff1c53366e217aad12f2d87801bae", + "md5": "edea93c0b3acfa4f02c5f05411bd0939", + "sha256": "c44dce957cc999ea2d57f9f09bf3cfbe9420224be5f3d268b53b1b45ca30aac5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 8.27, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/AWSRequestMetricsFullSupport.java", + "type": "file", + "name": "AWSRequestMetricsFullSupport.java", + "base_name": "AWSRequestMetricsFullSupport", + "extension": ".java", + "size": 7872, + "date": "2022-07-15", + "sha1": "697068d705a8c3c4955515ac385f95c3f3b70f23", + "md5": "cbf0496190f19c8595922ad2ba98b94c", + "sha256": "fc905c505390dbcf5bbc3bdae243756cec416b98972398d39aee267031307022", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 8.9, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/AWSServiceMetrics.java", + "type": "file", + "name": "AWSServiceMetrics.java", + "base_name": "AWSServiceMetrics", + "extension": ".java", + "size": 1270, + "date": "2022-07-15", + "sha1": "3e3d09e48855c0bebed62a99bdf47f199cd5ab68", + "md5": "d398764c15980670819fdcee5920ced8", + "sha256": "d033dda5c162f6d08908047e2f81f3d8b1a2c0d832f93d31f07ef5caa8dacf71", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 48.12, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/Base16.java", + "type": "file", + "name": "Base16.java", + "base_name": "Base16", + "extension": ".java", + "size": 1979, + "date": "2022-07-15", + "sha1": "708e1f7261f697e4a570c69dd126f4dddfa75299", + "md5": "7ef1e36e852280a71a3f72ca3c5766e9", + "sha256": "1cbb1efab9a7ef3373d7a12fafdfb5e032c539ff80d8e1935aaa236d407f6a55", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 29.5, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "author": "Hanson Char", + "start_line": 22, + "end_line": 22 + } + ], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/Base16Codec.java", + "type": "file", + "name": "Base16Codec.java", + "base_name": "Base16Codec", + "extension": ".java", + "size": 2983, + "date": "2022-07-15", + "sha1": "1ed419fb3f86b52be9667ea7b2ced737d7da013a", + "md5": "265367e59aaadc95412f9ae4ef9866f7", + "sha256": "38fd030043dffc55ca63cd60fbafa6e225e3a6e5e8d0320b068bd2c4091374a6", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 23.55, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "author": "Hanson Char", + "start_line": 20, + "end_line": 20 + } + ], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/Base16Lower.java", + "type": "file", + "name": "Base16Lower.java", + "base_name": "Base16Lower", + "extension": ".java", + "size": 1989, + "date": "2022-07-15", + "sha1": "62fc617c03bce9fba2bb7103d8f4feea9d6d999e", + "md5": "68c15827ab21dea59fa86dd3fe67ba07", + "sha256": "03c07fcbfe99cab7557c064a7e126ea01ab41a7ef8024f899598db40ab5a201c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 29.39, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "author": "Hanson Char", + "start_line": 22, + "end_line": 22 + } + ], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/Base32.java", + "type": "file", + "name": "Base32.java", + "base_name": "Base32", + "extension": ".java", + "size": 1934, + "date": "2022-07-15", + "sha1": "87a062bc71e422e7ff66d084fbf33415da5542f1", + "md5": "115bf86ee0edbba97c0dea86405cf162", + "sha256": "82344a9067c580c34166decdba6aee4d5422d227b570c90463d2f6595969f3cb", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 30.92, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "author": "Hanson Char", + "start_line": 22, + "end_line": 22 + } + ], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/Base32Codec.java", + "type": "file", + "name": "Base32Codec.java", + "base_name": "Base32Codec", + "extension": ".java", + "size": 1967, + "date": "2022-07-15", + "sha1": "d9552a1ea70624e2c100bb0b99f1deeaee88cf6c", + "md5": "087b753ea9e32a3cbb27ca83db109b0e", + "sha256": "fac50e3176e4d3279c2be288bba4bb919e39e969e8ce85418dfdcc1962df0ddf", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 34.38, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "author": "Hanson Char", + "start_line": 20, + "end_line": 20 + } + ], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/Base64.java", + "type": "file", + "name": "Base64.java", + "base_name": "Base64", + "extension": ".java", + "size": 4438, + "date": "2022-07-15", + "sha1": "933068b9d51094953e2abe3b0e0686d13dd5a049", + "md5": "5130fac1582cda2a79a7a2f54ee5265f", + "sha256": "ba6ba93c22d1b5514ef8087c23787df3e41c75d30de7ec388dcebcc591a8a657", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 16.24, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "author": "Hanson Char", + "start_line": 31, + "end_line": 31 + } + ], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/Base64Codec.java", + "type": "file", + "name": "Base64Codec.java", + "base_name": "Base64Codec", + "extension": ".java", + "size": 8609, + "date": "2022-07-15", + "sha1": "37527d79766153adf199a7a92b664bed1c76fc30", + "md5": "1c3ea08f2ff9568950b5221cdb01106d", + "sha256": "d5b02252bc128e8ee805b9e4386c94fba943dc134362c2bb8ae0f6bdb51b25df", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.08, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "author": "Hanson Char", + "start_line": 21, + "end_line": 21 + } + ], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/BasicNameValuePair.java", + "type": "file", + "name": "BasicNameValuePair.java", + "base_name": "BasicNameValuePair", + "extension": ".java", + "size": 3748, + "date": "2022-07-15", + "sha1": "e976168b74ec92cadb0b49dca8162d18edc81781", + "md5": "91254abca3e1055ef37e34bdc3d7002d", + "sha256": "9b6b2914bee1190cb6feeae5a177f126e443a0db5b26ca9157d5679afc10816a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 3, + "end_line": 24, + "matched_length": 150, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_25_notice.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE", + "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. 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,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\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 * ." + } + ], + "detection_log": [], + "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa" + } + ], + "license_clues": [], + "percentage_of_license_text": 35.38, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/BinaryUtils.java", + "type": "file", + "name": "BinaryUtils.java", + "base_name": "BinaryUtils", + "extension": ".java", + "size": 5123, + "date": "2022-07-15", + "sha1": "bfa84147f41cf882297415c8b79d69fea279ccb7", + "md5": "5eeff9a7e4a7352b10b64c09ba025b45", + "sha256": "ece0c320766de0c4254ee064f06be6b9ad4a0873ca08de0953d64719557f7455", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "unknown-license-reference AND apache-2.0", + "detected_license_expression_spdx": "LicenseRef-scancode-unknown-license-reference AND Apache-2.0", + "license_detections": [ + { + "license_expression": "unknown-license-reference AND apache-2.0", + "matches": [ + { + "score": 90.0, + "start_line": 4, + "end_line": 4, + "matched_length": 3, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "unknown-license-reference", + "rule_identifier": "unknown-license-reference_46.RULE", + "rule_relevance": 90, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/unknown-license-reference_46.RULE", + "matched_text": "see LICENSE.txt" + }, + { + "score": 100.0, + "start_line": 7, + "end_line": 16, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "unknown_license_reference_and_apache_2_0-62a7ade9-df72-0b10-0cc1-0847080cc621" + } + ], + "license_clues": [], + "percentage_of_license_text": 13.4, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + }, + { + "copyright": "Portions copyright 2006-2009 James Murty", + "start_line": 4, + "end_line": 4 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + }, + { + "holder": "James Murty", + "start_line": 4, + "end_line": 4 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/CapacityManager.java", + "type": "file", + "name": "CapacityManager.java", + "base_name": "CapacityManager", + "extension": ".java", + "size": 3858, + "date": "2022-07-15", + "sha1": "f2fa4b9266fd51ddf981074b85bc2af243b32f86", + "md5": "90fbbf9028d977fae481617b21a8ef79", + "sha256": "67952c15ff25d9f776ccce713c05a0d7ec0e93060fc73b91fde5b3394b510930", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 18.97, + "copyrights": [ + { + "copyright": "Copyright (c) 2016. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/Classes.java", + "type": "file", + "name": "Classes.java", + "base_name": "Classes", + "extension": ".java", + "size": 2925, + "date": "2022-07-15", + "sha1": "15e1328321950d2bc3fd7e4ca8d6e19ee6165e10", + "md5": "92a7a14f52fdbe064aef4fc8f6eedbed", + "sha256": "8dcefcb8a7d7c19ec3855b61a1cc862182359746c4ebafb8c0c9e5be6e8e112c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "unknown-license-reference AND apache-2.0", + "detected_license_expression_spdx": "LicenseRef-scancode-unknown-license-reference AND Apache-2.0", + "license_detections": [ + { + "license_expression": "unknown-license-reference AND apache-2.0", + "matches": [ + { + "score": 90.0, + "start_line": 4, + "end_line": 4, + "matched_length": 3, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "unknown-license-reference", + "rule_identifier": "unknown-license-reference_46.RULE", + "rule_relevance": 90, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/unknown-license-reference_46.RULE", + "matched_text": "see LICENSE.txt" + }, + { + "score": 100.0, + "start_line": 7, + "end_line": 16, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "unknown_license_reference_and_apache_2_0-62a7ade9-df72-0b10-0cc1-0847080cc621" + } + ], + "license_clues": [], + "percentage_of_license_text": 24.39, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + }, + { + "copyright": "Portions copyright 2006-2009 James Murty", + "start_line": 4, + "end_line": 4 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + }, + { + "holder": "James Murty", + "start_line": 4, + "end_line": 4 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/ClassLoaderHelper.java", + "type": "file", + "name": "ClassLoaderHelper.java", + "base_name": "ClassLoaderHelper", + "extension": ".java", + "size": 9132, + "date": "2022-07-15", + "sha1": "a38173af0ee9b0bd50b93623f17e602b073d251f", + "md5": "515837acbca1ccc8978a8326c632a58c", + "sha256": "4ce77633f4228c0f11b2c4b45e332f23fb017a3021e761483e66f48fc0821314", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 6.91, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/Codec.java", + "type": "file", + "name": "Codec.java", + "base_name": "Codec", + "extension": ".java", + "size": 776, + "date": "2022-07-15", + "sha1": "fcee3e642642cdce2f4bb01d96e48ed253c9a17b", + "md5": "89b5669d7dade1d50bf2a3a9841545f4", + "sha256": "6b4a287014c883ab6e4332ec3a2b6afe3f700b01196b065492afea1d3161b41b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 69.37, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "author": "Hanson Char", + "start_line": 20, + "end_line": 20 + } + ], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/CodecUtils.java", + "type": "file", + "name": "CodecUtils.java", + "base_name": "CodecUtils", + "extension": ".java", + "size": 3935, + "date": "2022-07-15", + "sha1": "0e676c006d6863c16932fc6988ebfd4195d1464e", + "md5": "e79926bc53c49ae1723644f1a5ae7b8f", + "sha256": "3b68d71afbf7a6a681ebc363b370cd528941ded896e775e67fc3cd197f3dafe2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 16.92, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "author": "Hanson Char", + "start_line": 20, + "end_line": 20 + } + ], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/CollectionUtils.java", + "type": "file", + "name": "CollectionUtils.java", + "base_name": "CollectionUtils", + "extension": ".java", + "size": 2130, + "date": "2022-07-15", + "sha1": "c3ac1302f2c58303c002db3368ee77e7a0ea0b17", + "md5": "a85b7f4a7ba23a3f50ba7030bb1d2a94", + "sha256": "3e46fd7a6bdbb79024012887f3b4015fa3ebafacd01af1b84a1aa391092afdc8", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 30.92, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/ComparableUtils.java", + "type": "file", + "name": "ComparableUtils.java", + "base_name": "ComparableUtils", + "extension": ".java", + "size": 1407, + "date": "2022-07-15", + "sha1": "cc42b4b28c05c24915a3501aa2ac1bb94302cc19", + "md5": "2621b6721f71dd43d2c763f28f56e75a", + "sha256": "6d749512cd77a6bba2fb6074fa08cd9f184a0dd7835eec9925dfcd36113ae4d2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 41.85, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/CountingInputStream.java", + "type": "file", + "name": "CountingInputStream.java", + "base_name": "CountingInputStream", + "extension": ".java", + "size": 1551, + "date": "2022-07-15", + "sha1": "8d28d8f3e206d831ad629b40fd07660abbb83569", + "md5": "4471743608395f2832c7a8cd47e3c127", + "sha256": "dad61bed339ae062808339b5ca68f63baaa030eb8f20d6d8118ca28a8f5f8eaf", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 38.12, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/CRC32ChecksumCalculatingInputStream.java", + "type": "file", + "name": "CRC32ChecksumCalculatingInputStream.java", + "base_name": "CRC32ChecksumCalculatingInputStream", + "extension": ".java", + "size": 2116, + "date": "2022-07-15", + "sha1": "c0f7ecb331aaebdaa0d9e5119f142696d43db476", + "md5": "25bec4231b2cb6e909309cf3366df939", + "sha256": "3db25a790d231489445abd78ba1ff864d0b545e75e146eefe7354b2b5f57575f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 31.05, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/CredentialUtils.java", + "type": "file", + "name": "CredentialUtils.java", + "base_name": "CredentialUtils", + "extension": ".java", + "size": 1733, + "date": "2022-07-15", + "sha1": "8c200948361dc39b484a4078edc284c7fcd2399c", + "md5": "8e3280044b62f210d69aaeecee67ec3a", + "sha256": "9cd25dd457e7502522fe61e335c5a83bd5ba7fb23d46fd3d16b1673cbf5946f2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 17, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is\n * distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either\n * express or implied. See the License for the specific language\n * governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 43.02, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/DateUtils.java", + "type": "file", + "name": "DateUtils.java", + "base_name": "DateUtils", + "extension": ".java", + "size": 10819, + "date": "2022-07-15", + "sha1": "f8750ffd5ebbee819f25d712f35864e724fe2b70", + "md5": "955a84bb051b0880abf3db2e4d731b3c", + "sha256": "f326374dff94cb952639f642c42704540f278005a41d9279085c8b0a23e4fc5d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "unknown-license-reference AND apache-2.0", + "detected_license_expression_spdx": "LicenseRef-scancode-unknown-license-reference AND Apache-2.0", + "license_detections": [ + { + "license_expression": "unknown-license-reference AND apache-2.0", + "matches": [ + { + "score": 90.0, + "start_line": 4, + "end_line": 4, + "matched_length": 3, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "unknown-license-reference", + "rule_identifier": "unknown-license-reference_46.RULE", + "rule_relevance": 90, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/unknown-license-reference_46.RULE", + "matched_text": "see LICENSE.txt" + }, + { + "score": 100.0, + "start_line": 7, + "end_line": 16, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "unknown_license_reference_and_apache_2_0-62a7ade9-df72-0b10-0cc1-0847080cc621" + } + ], + "license_clues": [], + "percentage_of_license_text": 7.14, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + }, + { + "copyright": "Portions copyright 2006-2009 James Murty", + "start_line": 4, + "end_line": 4 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + }, + { + "holder": "James Murty", + "start_line": 4, + "end_line": 4 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/EC2MetadataUtils.java", + "type": "file", + "name": "EC2MetadataUtils.java", + "base_name": "EC2MetadataUtils", + "extension": ".java", + "size": 27990, + "date": "2022-07-15", + "sha1": "93f187c1fb850b2330cc3979083c5fc332e1eb90", + "md5": "44ab32ffbe0a1d50de83672a2174056d", + "sha256": "0432887f4f0a121a28f23f2eb98cdf3d5c762209d31b584ec960e5b99502a098", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 2.78, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/EncodingScheme.java", + "type": "file", + "name": "EncodingScheme.java", + "base_name": "EncodingScheme", + "extension": ".java", + "size": 796, + "date": "2022-07-15", + "sha1": "5ed2741ab6670a29b079ade9019b596213216f28", + "md5": "3b07fa0ad5818774489097828da342f5", + "sha256": "d0dcfc75939466bfe6b5e793aeea0841465398f26092f7d493fa54029c87cd5f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 69.37, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "author": "Hanson Char", + "start_line": 20, + "end_line": 20 + } + ], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/EncodingSchemeEnum.java", + "type": "file", + "name": "EncodingSchemeEnum.java", + "base_name": "EncodingSchemeEnum", + "extension": ".java", + "size": 1657, + "date": "2022-07-15", + "sha1": "df0c36cd61c97fe38b16aa2fe6081d372e7c833c", + "md5": "1029d5c1387ecb490cd2ed5f4a298621", + "sha256": "ca1f013137ac9172fef23b594db1c44a2a73da0fc8aea83a699a7e064ab9180c", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 41.18, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "author": "Hanson Char", + "start_line": 20, + "end_line": 20 + } + ], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/FakeIOException.java", + "type": "file", + "name": "FakeIOException.java", + "base_name": "FakeIOException", + "extension": ".java", + "size": 889, + "date": "2022-07-15", + "sha1": "57ccbd1528510afa009f4ad8417ab6cb2915343f", + "md5": "74135977fccdc24d072387ef1451140c", + "sha256": "9519214e21d70239bfa9a78d123753c01abd3a4acc8f53c3f4f30568a26acbdb", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 63.64, + "copyrights": [ + { + "copyright": "Copyright (c) 2016. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/HostnameValidator.java", + "type": "file", + "name": "HostnameValidator.java", + "base_name": "HostnameValidator", + "extension": ".java", + "size": 2318, + "date": "2022-07-15", + "sha1": "360553c8dede5d755016de3b35e309012e148e81", + "md5": "9b98d2b33d6930f2d0f18db88ca1b8bc", + "sha256": "9f0f1201f05919975194b36f97f5a3866069e2c6a6df1389ab3a794b97de2808", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 29.39, + "copyrights": [ + { + "copyright": "Copyright Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/HttpClientWrappingInputStream.java", + "type": "file", + "name": "HttpClientWrappingInputStream.java", + "base_name": "HttpClientWrappingInputStream", + "extension": ".java", + "size": 1512, + "date": "2022-07-15", + "sha1": "e12b8cf5c5b3baa54da929fdeb9bff759223eec9", + "md5": "c61f8a57fce953c0908b1f2034122e01", + "sha256": "4d187468e6a49dcbb687d43593bf5f8dd3198a243ddf697efdf9cf08ef9ebf45", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 44.0, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/IdempotentUtils.java", + "type": "file", + "name": "IdempotentUtils.java", + "base_name": "IdempotentUtils", + "extension": ".java", + "size": 1595, + "date": "2022-07-15", + "sha1": "66a8b95bb5ec4b246d45b748b73a102c32a4b086", + "md5": "15171f7d87baca793605185e4f21acfe", + "sha256": "1a5ac677fcaadfcb1d8ec82e53de5f209c5798b9fcd335c1da6befb13c364ad5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 44.51, + "copyrights": [ + { + "copyright": "Copyright (c) 2016. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/ImmutableMapParameter.java", + "type": "file", + "name": "ImmutableMapParameter.java", + "base_name": "ImmutableMapParameter", + "extension": ".java", + "size": 9036, + "date": "2022-07-15", + "sha1": "405d7d210ac78b4726a6a689bd9571f6a489b70f", + "md5": "066d0bc52fc8ad872c1c2a9dc8c727c6", + "sha256": "53f131d250a1b3290d2c215d74e4a7eea4d89ddab4eff347899f729cad3dc878", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 7.58, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/IOUtils.java", + "type": "file", + "name": "IOUtils.java", + "base_name": "IOUtils", + "extension": ".java", + "size": 5139, + "date": "2022-07-15", + "sha1": "7d3cb0a8112cf0105933ec8354821e3795fa0796", + "md5": "282c4b9dcdbaec24320a1c029b27b511", + "sha256": "e4533f1a16e9f5c900d45c4e2abc4d2a01222a2bc286fe72c858bff912672f16", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 12.3, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/JavaVersionParser.java", + "type": "file", + "name": "JavaVersionParser.java", + "base_name": "JavaVersionParser", + "extension": ".java", + "size": 10703, + "date": "2022-07-15", + "sha1": "31eb94ebf2a6bc111142f0f9dfe680c419cfd9d5", + "md5": "eabbeaa5e84cef4bc501509461f22689", + "sha256": "6970d27d294027403e974b6dc4bbbb46c7eb178c7065025614d0a174bb08715d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 7.79, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/JodaTime.java", + "type": "file", + "name": "JodaTime.java", + "base_name": "JodaTime", + "extension": ".java", + "size": 8045, + "date": "2022-07-15", + "sha1": "ec2010fdad87b33d3e7269555a88efc32c2896ab", + "md5": "3b80316711dac57a872c0a1e76573bdb", + "sha256": "2cb1eb522712aaf83b97590ec5649b11cfbf11e83a5d157e77ba8206cbd00b48", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.94, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/LengthCheckInputStream.java", + "type": "file", + "name": "LengthCheckInputStream.java", + "base_name": "LengthCheckInputStream", + "extension": ".java", + "size": 6458, + "date": "2022-07-15", + "sha1": "63bd62cd203d60ed143de084fae890f2472d4e2e", + "md5": "013b1fb121d5c12a39161f364c4cf104", + "sha256": "79948e109211278617acf9eecd7fe8fd3ceb8344607a6806b9ce4ebc5236949f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.41, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/Md5Utils.java", + "type": "file", + "name": "Md5Utils.java", + "base_name": "Md5Utils", + "extension": ".java", + "size": 3705, + "date": "2022-07-15", + "sha1": "3c5f6364241da3305bc5830f6bf3a58ab4f9a906", + "md5": "12e13108b0bfc79587c9b531c5344772", + "sha256": "f4f1d573c95536213c65c3a21136c5ffab4943099ee358b24bd91e4e0f11cc65", + "mime_type": "text/plain", + "file_type": "ASCII text, with CRLF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "unknown-license-reference AND apache-2.0 AND mit", + "detected_license_expression_spdx": "LicenseRef-scancode-unknown-license-reference AND Apache-2.0 AND MIT", + "license_detections": [ + { + "license_expression": "unknown-license-reference AND apache-2.0 AND mit", + "matches": [ + { + "score": 90.0, + "start_line": 4, + "end_line": 4, + "matched_length": 3, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "unknown-license-reference", + "rule_identifier": "unknown-license-reference_46.RULE", + "rule_relevance": 90, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/unknown-license-reference_46.RULE", + "matched_text": "see LICENSE.txt" + }, + { + "score": 55.56, + "start_line": 4, + "end_line": 16, + "matched_length": 45, + "match_coverage": 55.56, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_159.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_159.RULE", + "matched_text": "LICENSE.[txt]\r\n * [for] [applicable] license [terms] [and] [NOTICE].[txt] [for] [applicable] [notices].\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]://[aws].[amazon].[com]/[apache2].0\r\n *\r\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\r\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\r\n * License for the specific language governing permissions and\r\n * limitations under the License." + }, + { + "score": 62.5, + "start_line": 8, + "end_line": 9, + "matched_length": 20, + "match_coverage": 62.5, + "matcher": "3-seq", + "license_expression": "mit", + "rule_identifier": "mit_761.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_761.RULE", + "matched_text": "you may not use this file except in compliance with the License.\r\n * You may obtain a copy of the License at:" + } + ], + "detection_log": [], + "identifier": "unknown_license_reference_and_apache_2_0_and_mit-90e87c8b-a130-5b04-2ad1-1b2e9e8d7f50" + } + ], + "license_clues": [], + "percentage_of_license_text": 15.38, + "copyrights": [ + { + "copyright": "Copyright 2012-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + }, + { + "copyright": "Portions copyright 2006-2009 James Murty", + "start_line": 4, + "end_line": 4 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + }, + { + "holder": "James Murty", + "start_line": 4, + "end_line": 4 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [ + "unknown_license_reference_and_apache_2_0_and_mit-90e87c8b-a130-5b04-2ad1-1b2e9e8d7f50" + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/MetadataCache.java", + "type": "file", + "name": "MetadataCache.java", + "base_name": "MetadataCache", + "extension": ".java", + "size": 1606, + "date": "2022-07-15", + "sha1": "8ee11a1f37dbab0cf7c255b630db77ff5483b645", + "md5": "551e7402d71bfbc8455010584af9b9d3", + "sha256": "20c5fef774fdcf9d4371ece1a70a17cffe2cfa26eaf28af8dccc99a117860b84", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 14, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 36.84, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/NamedDefaultThreadFactory.java", + "type": "file", + "name": "NamedDefaultThreadFactory.java", + "base_name": "NamedDefaultThreadFactory", + "extension": ".java", + "size": 2945, + "date": "2022-07-15", + "sha1": "f64ab51a57ee4ede7ba712846ee435cc65215cfb", + "md5": "d6342781bd4f3a3648b00b9137c451b8", + "sha256": "9d41a6312cea7158195977d7bbc33dd9b47bd908141fc73d709a0dcdd8ee10fd", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 23.99, + "copyrights": [ + { + "copyright": "Copyright 2019-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/NamespaceRemovingInputStream.java", + "type": "file", + "name": "NamespaceRemovingInputStream.java", + "base_name": "NamespaceRemovingInputStream", + "extension": ".java", + "size": 5339, + "date": "2022-07-15", + "sha1": "1be9b9170b06d985e9bf0af3c26eb2de6e84d77d", + "md5": "f90a476fd7afc434b8626ac105c06d3c", + "sha256": "f45f8f43a05056ea484cf95ec645c0f87848648911b8da9f9d68a1702b2d8936", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 13.85, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/NameValuePair.java", + "type": "file", + "name": "NameValuePair.java", + "base_name": "NameValuePair", + "extension": ".java", + "size": 1542, + "date": "2022-07-15", + "sha1": "478706adae484ec944110fd9197534f4e6826be7", + "md5": "f19ae904018ec1c63a38c47fd93eb5a8", + "sha256": "475023c7bc3133af18abdb7d0077483d95d1707fd67a8a5ccf88e561238d93b8", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 3, + "end_line": 24, + "matched_length": 150, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_25_notice.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE", + "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. 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,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\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 * ." + } + ], + "detection_log": [], + "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa" + } + ], + "license_clues": [], + "percentage_of_license_text": 81.97, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/NullResponseMetadataCache.java", + "type": "file", + "name": "NullResponseMetadataCache.java", + "base_name": "NullResponseMetadataCache", + "extension": ".java", + "size": 1226, + "date": "2022-07-15", + "sha1": "f8dcc4f7624f0c8365dee5f2c55ddbaaa0ce5888", + "md5": "bd9241589087332d9edf1d01915dd91f", + "sha256": "30a6d8a6c626878e591e27e72ef6517842592e5c405bf21587e8059e51e38bcd", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 5, + "end_line": 14, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 50.33, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/NumberUtils.java", + "type": "file", + "name": "NumberUtils.java", + "base_name": "NumberUtils", + "extension": ".java", + "size": 990, + "date": "2022-07-15", + "sha1": "02fa0d4b5a4dd9f1861bf8b0ec102f34c527ba9c", + "md5": "205f047efcd0e1f9f2812b1b86f12bec", + "sha256": "98544018ce8f1cdc26cba106e199953d9db070094534deda18ef548612f2c6c2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 60.63, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/Platform.java", + "type": "file", + "name": "Platform.java", + "base_name": "Platform", + "extension": ".java", + "size": 923, + "date": "2022-07-15", + "sha1": "958a3000cf42bde1fc4f00eb11be2f3e40282055", + "md5": "cebcf4b1ef6107813853b4b3b5a70830", + "sha256": "a63f0fd393f572f8652d4ac37d51a34b0df7dd92eda9a943466ed0c0146eb699", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 62.6, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/PolicyUtils.java", + "type": "file", + "name": "PolicyUtils.java", + "base_name": "PolicyUtils", + "extension": ".java", + "size": 1863, + "date": "2022-07-15", + "sha1": "44f9384c5bfe95acee26360f8eb6fa4fd7709286", + "md5": "651ca11ca567b2f17d24f575e4fe58af", + "sha256": "22158f5de7ed56a346e7cc6a332d81b660f4c44a70f0e10bccd29ba2460beff7", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 35.98, + "copyrights": [ + { + "copyright": "Copyright 2018-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/ReflectionMethodInvoker.java", + "type": "file", + "name": "ReflectionMethodInvoker.java", + "base_name": "ReflectionMethodInvoker", + "extension": ".java", + "size": 5796, + "date": "2022-07-15", + "sha1": "60cb998c81d2e02af846f150e0c13ef06e46702b", + "md5": "faaa136001d2635e49b04292b2d75c76", + "sha256": "a848944090f9338778e81b9cce616c96e3c2110659d6b4a87906fa8846ff23f2", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 10.94, + "copyrights": [ + { + "copyright": "Copyright (c) 2019. Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/ResponseMetadataCache.java", + "type": "file", + "name": "ResponseMetadataCache.java", + "base_name": "ResponseMetadataCache", + "extension": ".java", + "size": 2661, + "date": "2022-07-15", + "sha1": "7a4638c303c4fee5bcd63918255182cad73891fd", + "md5": "f7d773eff1f920927fbfec44e1126dd1", + "sha256": "47d2d5c69b8888a0b18179ceaa04ce07c3c3d51b0ce0e4c83361a525591694c9", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.0, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/RuntimeHttpUtils.java", + "type": "file", + "name": "RuntimeHttpUtils.java", + "base_name": "RuntimeHttpUtils", + "extension": ".java", + "size": 11452, + "date": "2022-07-15", + "sha1": "b9cedfb02e91fa80125870e74e40e9ad3464c9b7", + "md5": "fdda2a693fc3973ecaa5fd12ab711dbe", + "sha256": "442d5d7326abdae9d83908cfc15c10cf94c823cadbe3e569ef57a86a61ea9358", + "mime_type": "text/x-c", + "file_type": "C 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 7.3, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/SdkHttpUtils.java", + "type": "file", + "name": "SdkHttpUtils.java", + "base_name": "SdkHttpUtils", + "extension": ".java", + "size": 7432, + "date": "2022-07-15", + "sha1": "e516cde12b716aca94400ebb6ba18e19eb81ea2a", + "md5": "85f5e52c6af544da004b2c58238d53cf", + "sha256": "f05a3cbd553bd3089513f193e4f30faa7085e75fff13608b7d16cda7391ee3b3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.75, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/SdkRuntime.java", + "type": "file", + "name": "SdkRuntime.java", + "base_name": "SdkRuntime", + "extension": ".java", + "size": 901, + "date": "2022-07-15", + "sha1": "cb9dd10c03f46cf182afd89f7c711f317273ada2", + "md5": "9c09ac8ac0b8c27db18ea9843ab21dd3", + "sha256": "4259eb59133b03e8a558b6993cfb00649902907b416a246c7a287ff3e02abb2d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 61.6, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/ServiceClientHolderInputStream.java", + "type": "file", + "name": "ServiceClientHolderInputStream.java", + "base_name": "ServiceClientHolderInputStream", + "extension": ".java", + "size": 1175, + "date": "2022-07-15", + "sha1": "a072c759412aa54da7a8cba8cebff8a9d059b6ef", + "md5": "8bbdf90a1699b9449ed50ff3168df6ea", + "sha256": "6b7e0ee7f5eda103df87d1125ab6e259fe234bb6f174a5d395988713da80d6cb", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 46.53, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/StringInputStream.java", + "type": "file", + "name": "StringInputStream.java", + "base_name": "StringInputStream", + "extension": ".java", + "size": 1424, + "date": "2022-07-15", + "sha1": "cce37947bb716f8751cb34368734a478e758b718", + "md5": "755eb9e91e8f66cb4e456924ee8fbd92", + "sha256": "3a0dd6e5c80acbef6893f7dd9b8bb186a93d94754e54cd15bf47a685b5e3187d", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 43.26, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/StringMapBuilder.java", + "type": "file", + "name": "StringMapBuilder.java", + "base_name": "StringMapBuilder", + "extension": ".java", + "size": 884, + "date": "2022-07-15", + "sha1": "cde0010ad82b0d41bca4591af557b95fc812cbbb", + "md5": "6b55ed57d89264905d3004dead9b8b63", + "sha256": "58425e0cb2d8c32802c4599693e13c15b1033835e60683886c9edc01b435ca39", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n * \n * http://aws.amazon.com/apache2.0\n * \n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 65.81, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/StringUtils.java", + "type": "file", + "name": "StringUtils.java", + "base_name": "StringUtils", + "extension": ".java", + "size": 11192, + "date": "2022-07-15", + "sha1": "c3c2f4cfeb8d59c2f82f42e08de32e6b9cd726ab", + "md5": "ef4e98f6adb2a77973922fdf1e138a37", + "sha256": "26bd2f564154442dc49a8c73eab3c03a1d6c68cbdc3a403a545aa38ae84751b1", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 6.21, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/Throwables.java", + "type": "file", + "name": "Throwables.java", + "base_name": "Throwables", + "extension": ".java", + "size": 2737, + "date": "2022-07-15", + "sha1": "9ef083cee475f481804f6298cd1eb8634e4fa31c", + "md5": "fd1b0bac52ae7704966398aaa2a1c6e7", + "sha256": "28957265dc8ba917cb297d014e4da12bd413000a9cce2c668fe7843ec24029f4", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 24.68, + "copyrights": [ + { + "copyright": "Copyright 2013-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/TimestampFormat.java", + "type": "file", + "name": "TimestampFormat.java", + "base_name": "TimestampFormat", + "extension": ".java", + "size": 1475, + "date": "2022-07-15", + "sha1": "63dba35e2318bea67a3e6c3a416e9aa21d604fa4", + "md5": "14108d9bf07210edca4dc752dc9b1846", + "sha256": "f394081843f4f30eaf2299002e48cb3489cc2c8bb0afd8ae77950fd103398087", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 46.67, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/TimingInfo.java", + "type": "file", + "name": "TimingInfo.java", + "base_name": "TimingInfo", + "extension": ".java", + "size": 10661, + "date": "2022-07-15", + "sha1": "fe20de538aece6aefd6f23e1e5c08ffe3a909547", + "md5": "ec47a6d5c1dad5a09c673ca0f34dbe64", + "sha256": "b6205cc2726269faa1d22db3066e7173effaa7d0edd26e532b254c0a3af903c8", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 6.9, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/TimingInfoFullSupport.java", + "type": "file", + "name": "TimingInfoFullSupport.java", + "base_name": "TimingInfoFullSupport", + "extension": ".java", + "size": 4615, + "date": "2022-07-15", + "sha1": "f34d4a7f6ec88173e5909ea9eee9fee60a0fc44c", + "md5": "ac75a039510c462b1addc86bd205519c", + "sha256": "9bfff76c9b0289f0b50eaf80cc54bf9bd36a2c6f284f2ef84db6412b3c59debd", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 16.7, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/TimingInfoUnmodifiable.java", + "type": "file", + "name": "TimingInfoUnmodifiable.java", + "base_name": "TimingInfoUnmodifiable", + "extension": ".java", + "size": 1908, + "date": "2022-07-15", + "sha1": "5246a5a3bc4538d7472c93a732e8d83fcf9a8fcf", + "md5": "9d8dfd4ca9211510ebb36bbffae49706", + "sha256": "87c0382aa1a90046e14c19b97d7d8e9a55104f7a0e33a422a3d08ed42b2863ef", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 39.49, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/UnreliableFilterInputStream.java", + "type": "file", + "name": "UnreliableFilterInputStream.java", + "base_name": "UnreliableFilterInputStream", + "extension": ".java", + "size": 5150, + "date": "2022-07-15", + "sha1": "e2d3b815b19b2a4353eaecf825ab2ef3d6ff5c3b", + "md5": "027dac6fb96386fdfdc7ee32ebff9fb7", + "sha256": "7fd22a3d573908836da5fd7d39a087f381e5be4fac475becc1be0d08e1f69e9a", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 15.71, + "copyrights": [ + { + "copyright": "Copyright 2014-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/UriResourcePathUtils.java", + "type": "file", + "name": "UriResourcePathUtils.java", + "base_name": "UriResourcePathUtils", + "extension": ".java", + "size": 2365, + "date": "2022-07-15", + "sha1": "5d0f9b1b70019ad227ac18ac8a313e35c5a3f23a", + "md5": "a0693f64334fabcd9f56cb194386f45c", + "sha256": "f29d5b687abdacdf78edf553ab5dc67d2ee0e548a00bb0108c11106554e06dad", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 30.56, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/URLEncodedUtils.java", + "type": "file", + "name": "URLEncodedUtils.java", + "base_name": "URLEncodedUtils", + "extension": ".java", + "size": 12546, + "date": "2022-07-15", + "sha1": "56d38cbc4a441484b2791324fb5a115d8fd53bb0", + "md5": "f83852edc090f268058fedf1121e2458", + "sha256": "d9d15368ada3eb2d7bdff85b7c41dcaacc57ecda6cbffcff8d3606e8f6991b4a", + "mime_type": "text/x-c++", + "file_type": "C++ 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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 3, + "end_line": 24, + "matched_length": 150, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_25_notice.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_25_notice.RULE", + "matched_text": "Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. 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,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\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 * ." + } + ], + "detection_log": [], + "identifier": "apache_2_0-99ff4033-8031-814c-c153-586d8ad65daa" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.03, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/ValidationUtils.java", + "type": "file", + "name": "ValidationUtils.java", + "base_name": "ValidationUtils", + "extension": ".java", + "size": 3261, + "date": "2022-07-15", + "sha1": "b40e9be706191ab3d8c8b37761b1c9e7e30198d9", + "md5": "d15033db4585b972b83d3bacc9f4bfec", + "sha256": "0324020e8af4a5b3269063615ca9d50d8f85a677e6c74468566c4ee1463c4d59", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 21.88, + "copyrights": [ + { + "copyright": "Copyright 2015-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/VersionInfoUtils.java", + "type": "file", + "name": "VersionInfoUtils.java", + "base_name": "VersionInfoUtils", + "extension": ".java", + "size": 11231, + "date": "2022-07-15", + "sha1": "0e0b6e099b3f3954f20a7e3570d87b8682bafa81", + "md5": "0e4bba53e7dcee3156bf93e9808043dd", + "sha256": "58ec001d3a531221b462e3a16c10c6b5df410eb67c1432ae08bd0addd68f391b", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 7.08, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/XmlUtils.java", + "type": "file", + "name": "XmlUtils.java", + "base_name": "XmlUtils", + "extension": ".java", + "size": 2864, + "date": "2022-07-15", + "sha1": "49b2f58e4dea52ee26d75ff3b18d1f985e3cef23", + "md5": "9c31198fb548e2f1d0cb6b82c9be38ce", + "sha256": "4210aa6ae072c95144000f7acb456733570f2601bd62b7fc8bcfb3c3ac77e92e", + "mime_type": "text/html", + "file_type": "HTML document, ASCII text, with CRLF line terminators", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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 * A copy of the License is located at\r\n * \r\n * http://aws.amazon.com/apache2.0\r\n * \r\n * or in the \"license\" file accompanying this file. This file is distributed\r\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\r\n * express or implied. See the License for the specific language governing\r\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.58, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/XMLWriter.java", + "type": "file", + "name": "XMLWriter.java", + "base_name": "XMLWriter", + "extension": ".java", + "size": 5979, + "date": "2022-07-15", + "sha1": "b284ff40c8acca37174dce9d36c88d871190c90c", + "md5": "258cdde7ff77acf71e5050bcb6a5ac49", + "sha256": "2fe88c3325d1f7df6784ce600c8d2c1c3023b9dff2681688e1d29c38f65d67bf", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 11.16, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/XpathUtils.java", + "type": "file", + "name": "XpathUtils.java", + "base_name": "XpathUtils", + "extension": ".java", + "size": 27377, + "date": "2022-07-15", + "sha1": "d967fc3c93ff170ddd562e4586631c0dc8096a0b", + "md5": "65109c572574e79a27ad06f8fc1287ca", + "sha256": "96cb560d5be6442fe66a160c3de72ce1cbf6e9f6a8cc0bc6df633ab3274216da", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 2.79, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/endpoint", + "type": "directory", + "name": "endpoint", + "base_name": "endpoint", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 2281, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/endpoint/DefaultRegionFromEndpointResolver.java", + "type": "file", + "name": "DefaultRegionFromEndpointResolver.java", + "base_name": "DefaultRegionFromEndpointResolver", + "extension": ".java", + "size": 1114, + "date": "2022-07-15", + "sha1": "8ca3bb6a4ad0b634d3795f1446db88b5253c64d7", + "md5": "7684a8cb39bd04dbc82f0d665018423f", + "sha256": "70cc5171e678fd14528978e9743ccec9f82f6ee7e6813976b11b1fed0495d519", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 56.2, + "copyrights": [ + { + "copyright": "Copyright 2020-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/endpoint/RegionFromEndpointResolver.java", + "type": "file", + "name": "RegionFromEndpointResolver.java", + "base_name": "RegionFromEndpointResolver", + "extension": ".java", + "size": 1167, + "date": "2022-07-15", + "sha1": "63b41b670d92e7af2df1baf2588ea5db7b0d164d", + "md5": "0136543ab22fee2acdf3e1aaee2b4178", + "sha256": "8bebf7c93d91c9996caaa7863d6b505b71bda47b7f4b3b2e0dd088521b5dfa9e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 46.11, + "copyrights": [ + { + "copyright": "Copyright 2020-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/json", + "type": "directory", + "name": "json", + "base_name": "json", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 1, + "dirs_count": 0, + "size_count": 4956, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/util/json/Jackson.java", + "type": "file", + "name": "Jackson.java", + "base_name": "Jackson", + "extension": ".java", + "size": 4956, + "date": "2022-07-15", + "sha1": "9badf8335c963df6943bd657ed2535665f608747", + "md5": "ca4d6fc24aaf0d7832b4ad4299315b45", + "sha256": "855ead838af662be22f1d3a80204fe455bb7b508eedc92e89f577c44eabf7285", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": "apache-2.0", + "detected_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 87.01, + "start_line": 4, + "end_line": 13, + "matched_length": 67, + "match_coverage": 87.01, + "matcher": "3-seq", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "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://aws.amazon.com/apache2.0\n *\n * This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES\n * OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and\n * limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-7f66312a-5899-0bf9-5f8a-774565009932" + } + ], + "license_clues": [], + "percentage_of_license_text": 12.62, + "copyrights": [ + { + "copyright": "Copyright 2011-2022 Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon Technologies, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters", + "type": "directory", + "name": "waiters", + "base_name": "waiters", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 22, + "dirs_count": 0, + "size_count": 46116, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/AcceptorPathMatcher.java", + "type": "file", + "name": "AcceptorPathMatcher.java", + "base_name": "AcceptorPathMatcher", + "extension": ".java", + "size": 3296, + "date": "2022-07-15", + "sha1": "2d906fabe70365b78e6eb95a5aced2c079b6fb8f", + "md5": "dd9a1635b944dcafef68fcab62651cc3", + "sha256": "6d4132acace1379d89d027d09d33fc67061d9e9f171da479448267325bfb7672", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 21.33, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/CompositeAcceptor.java", + "type": "file", + "name": "CompositeAcceptor.java", + "base_name": "CompositeAcceptor", + "extension": ".java", + "size": 3128, + "date": "2022-07-15", + "sha1": "52145844587f750cffee323fb05357cbe1af7fe2", + "md5": "4ac8d8edce43a7d5e3f6012b7d5db318", + "sha256": "35af7c2e7cef4f31f893eca1becfabbbb29e39533c21e8efe6a007423cd9efae", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 21.75, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/FixedDelayStrategy.java", + "type": "file", + "name": "FixedDelayStrategy.java", + "base_name": "FixedDelayStrategy", + "extension": ".java", + "size": 1563, + "date": "2022-07-15", + "sha1": "b87c4f51f0597727f7e8bb6282306b76fddab756", + "md5": "3e64bc6ff1f30c1246b6b43ef1018f44", + "sha256": "471c7ce14b1a6a017109378b96918de82558fa364d5659a1010cf641ad14f0db", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 45.56, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/HttpFailureStatusAcceptor.java", + "type": "file", + "name": "HttpFailureStatusAcceptor.java", + "base_name": "HttpFailureStatusAcceptor", + "extension": ".java", + "size": 1308, + "date": "2022-07-15", + "sha1": "e8313cc84df438241fd2a86cf7a840ab9d031402", + "md5": "147ef3053b6980a5d4dc96211da69e1c", + "sha256": "e555575705e2e2d98099324ac84392b03c23f0322192ad9511b5247fc0e906ee", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 53.1, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/HttpSuccessStatusAcceptor.java", + "type": "file", + "name": "HttpSuccessStatusAcceptor.java", + "base_name": "HttpSuccessStatusAcceptor", + "extension": ".java", + "size": 1092, + "date": "2022-07-15", + "sha1": "9e44c707222bb7d30471b42f19b5bd05e4a35422", + "md5": "94804a42c207822d1085a6bd6cf193a1", + "sha256": "0b2e7215589d07575787e17cd4e86dac161e878a7c50ba62ad19f2445bc6f97e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 59.23, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/MaxAttemptsRetryStrategy.java", + "type": "file", + "name": "MaxAttemptsRetryStrategy.java", + "base_name": "MaxAttemptsRetryStrategy", + "extension": ".java", + "size": 1548, + "date": "2022-07-15", + "sha1": "401f1ebefe6643666808d872d893ceb26dac75ea", + "md5": "687954ff2abf637e562756fd228d42c3", + "sha256": "66b86b42ec2447c6c9c3e7fa9f99255c415325254a7c82cb129fd4d04204be38", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 45.03, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/NoOpWaiterHandler.java", + "type": "file", + "name": "NoOpWaiterHandler.java", + "base_name": "NoOpWaiterHandler", + "extension": ".java", + "size": 963, + "date": "2022-07-15", + "sha1": "fd65c86409ad1ac966cda0fe69dcc55ebecd7305", + "md5": "bfaae4478e0b3abe44d958dc21d52264", + "sha256": "ddf4f5b12b35de5d7d24d7a9a67ab2914d3689eab0691865df569e0b552868eb", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 64.17, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/PollingStrategy.java", + "type": "file", + "name": "PollingStrategy.java", + "base_name": "PollingStrategy", + "extension": ".java", + "size": 3046, + "date": "2022-07-15", + "sha1": "3df439f420ec74ef082170f6b36e8cf2d2a1839e", + "md5": "7f4ad37c1c4c7c1a4f9dcd1523db28c6", + "sha256": "49438b6df6cec74af6239913947d699ec4e6169dfd048c1733cfc909dd676c22", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 24.68, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/PollingStrategyContext.java", + "type": "file", + "name": "PollingStrategyContext.java", + "base_name": "PollingStrategyContext", + "extension": ".java", + "size": 1721, + "date": "2022-07-15", + "sha1": "03120b2741e4339d6112ff65e69988800015a0ca", + "md5": "ca6eb5d14958f800fee4e7a7558ac70f", + "sha256": "52576eacca2aa6ff695b8382e38689e6adabb9f2a88ad180f5fe20b3655c309f", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 42.78, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/SdkFunction.java", + "type": "file", + "name": "SdkFunction.java", + "base_name": "SdkFunction", + "extension": ".java", + "size": 1069, + "date": "2022-07-15", + "sha1": "7675f6929d277a67a91b6298cf38653ce8c3c4f8", + "md5": "d39281c304217837049b69cfa0926b93", + "sha256": "760c23fd44a1547a7dd52f982809fc7ea0f12a6ad99b9aabda58302a3edf62df", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 53.85, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/Waiter.java", + "type": "file", + "name": "Waiter.java", + "base_name": "Waiter", + "extension": ".java", + "size": 2400, + "date": "2022-07-15", + "sha1": "abb2d132df4003560d38090f0f60845ef904baf6", + "md5": "9de8f2b13fbda56d5e50d2da3c110e78", + "sha256": "7cd9ac6929aeae12959d3786251d592492ffdc32ff5a3f38b1ad31d23017195e", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 29.84, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/WaiterAcceptor.java", + "type": "file", + "name": "WaiterAcceptor.java", + "base_name": "WaiterAcceptor", + "extension": ".java", + "size": 1869, + "date": "2022-07-15", + "sha1": "7324b216cf6e99d053ab4bcae0d14bca2bc352a7", + "md5": "4b6dec213ab554d7fae6290884cd4e76", + "sha256": "aef1217e0debed1fccd28d76018449c5d2952dc28a1f93e178172b46c1951586", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 33.62, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/WaiterBuilder.java", + "type": "file", + "name": "WaiterBuilder.java", + "base_name": "WaiterBuilder", + "extension": ".java", + "size": 2362, + "date": "2022-07-15", + "sha1": "456aba21af13cb0a877e955d954e045b7ac4ee4b", + "md5": "dd4df5151d3ffeb66c15db8cbc934023", + "sha256": "22922f0f389bce80bbd97ec7e69ec068f386f957b9f713180990d320ff7148f6", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 32.63, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/WaiterExecution.java", + "type": "file", + "name": "WaiterExecution.java", + "base_name": "WaiterExecution", + "extension": ".java", + "size": 5044, + "date": "2022-07-15", + "sha1": "017cb4ba33d5c7e0a8acb3b4644fa19c9b7cc8e3", + "md5": "4a7e3d2b881daded7c9cc5db549a66b3", + "sha256": "b0e99dd7c5f87f5b6f80e8b93913c023a62240f00dc95f999b24e6f6cce36496", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 17.07, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/WaiterExecutionBuilder.java", + "type": "file", + "name": "WaiterExecutionBuilder.java", + "base_name": "WaiterExecutionBuilder", + "extension": ".java", + "size": 2215, + "date": "2022-07-15", + "sha1": "7c91f2d59e4b4653ba194c75b82d2b8db9023af5", + "md5": "308beb0e79d1ee214b0312de69825bf1", + "sha256": "feeda7c3a227435f3012200c11b7780cb917de154ddd90186b71d744eb474de3", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 34.07, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/WaiterExecutorServiceFactory.java", + "type": "file", + "name": "WaiterExecutorServiceFactory.java", + "base_name": "WaiterExecutorServiceFactory", + "extension": ".java", + "size": 1939, + "date": "2022-07-15", + "sha1": "7f3847e6c16f1a003c8c7aeb20766920992916cc", + "md5": "7da6b57c4c6fbca1c0e3315d7f28f93f", + "sha256": "5b5f5f62e985ef9d8bde0d0002d4ece975ca729a342f93ea7ea3e1a7003c5b53", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 30.31, + "copyrights": [ + { + "copyright": "Copyright 2019-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/WaiterHandler.java", + "type": "file", + "name": "WaiterHandler.java", + "base_name": "WaiterHandler", + "extension": ".java", + "size": 1000, + "date": "2022-07-15", + "sha1": "2fd95dc57d57d75a7a068b5ba24eba1f8ee1b026", + "md5": "9083d59d421618015820c77bda556e4e", + "sha256": "470ee90a692a1f33218cc79e4bb25d4ca22fa4541ad7913a3cbfde6568cf3655", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 56.2, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/WaiterImpl.java", + "type": "file", + "name": "WaiterImpl.java", + "base_name": "WaiterImpl", + "extension": ".java", + "size": 5106, + "date": "2022-07-15", + "sha1": "e18afe2f469bf680022e1ab27d745ee115d7b0ae", + "md5": "a66b36dc36ca05298b2167bfe5e123cd", + "sha256": "846f4b2763fbbb977be75748591d4c2ca102ec2a1ecc5db85c300822b0715656", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 17.07, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/WaiterParameters.java", + "type": "file", + "name": "WaiterParameters.java", + "base_name": "WaiterParameters", + "extension": ".java", + "size": 2629, + "date": "2022-07-15", + "sha1": "d992c019a5d2983e58f4f9104917b75b2d3480cf", + "md5": "3f3174560e8a8436848b464ad78112a4", + "sha256": "a753c4b2f27b55e64a149d70cbdd220bda8270bacc58f3f90ce9557109da7175", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 28.95, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/WaiterState.java", + "type": "file", + "name": "WaiterState.java", + "base_name": "WaiterState", + "extension": ".java", + "size": 843, + "date": "2022-07-15", + "sha1": "5f5ab038095498c14521b8bc0c9283fb2a8c2ac7", + "md5": "3474c0c62defc409b4153e29140dff97", + "sha256": "4c4a4a793b48d9e4b20a5a8e1363a738579bafab46b0ce4df7d116a71b72eb85", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 66.38, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/WaiterTimedOutException.java", + "type": "file", + "name": "WaiterTimedOutException.java", + "base_name": "WaiterTimedOutException", + "extension": ".java", + "size": 980, + "date": "2022-07-15", + "sha1": "4f0e69c24db3993e6ce0e1962ce423822318eb55", + "md5": "b1c159333e132dd664f0ab290272e3cc", + "sha256": "692b5aaab89a3c2c2a95f95d792e973258b1ee47395ecd6abb1059ae58794289", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 63.64, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/com/amazonaws/waiters/WaiterUnrecoverableException.java", + "type": "file", + "name": "WaiterUnrecoverableException.java", + "base_name": "WaiterUnrecoverableException", + "extension": ".java", + "size": 995, + "date": "2022-07-15", + "sha1": "448c44b3ce7d56fbd88e58276cdf57f7e81cd0fc", + "md5": "7407fcadd754617eeb2a5001fe489634", + "sha256": "20d8439d799327f0be4a7e8ba34e73a4769625faefee626d6fd6323060a567a5", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "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": 4, + "end_line": 13, + "matched_length": 77, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_24.RULE", + "matched_text": "Licensed under the Apache License, Version 2.0 (the \"License\").\n * You may not use this file except in compliance with the License.\n * A copy of the License is located at\n *\n * http://aws.amazon.com/apache2.0\n *\n * or in the \"license\" file accompanying this file. This file is distributed\n * on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\n * express or implied. See the License for the specific language governing\n * permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "apache_2_0-d150c419-5715-8d0b-ae6b-5f9c45f1f337" + } + ], + "license_clues": [], + "percentage_of_license_text": 63.64, + "copyrights": [ + { + "copyright": "Copyright 2010-2022 Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Amazon.com, Inc. or its affiliates", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF", + "type": "directory", + "name": "META-INF", + "base_name": "META-INF", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": true, + "is_key_file": false, + "for_todo": [], + "files_count": 3, + "dirs_count": 3, + "size_count": 4682, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/MANIFEST.MF", + "type": "file", + "name": "MANIFEST.MF", + "base_name": "MANIFEST", + "extension": ".MF", + "size": 64, + "date": "2022-07-15", + "sha1": "a1e47e8e6bcd618e9072476aa169cd3b3a9d7ae8", + "md5": "f06d4360b598fc1115ee1b475baff17e", + "sha256": "31f06c9999bfd523e192864178cfe4a9873d336884cf59a0d698e520895caeaa", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": true, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven", + "type": "directory", + "name": "maven", + "base_name": "maven", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 2, + "dirs_count": 2, + "size_count": 4618, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws", + "type": "directory", + "name": "com.amazonaws", + "base_name": "com.amazonaws", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 2, + "dirs_count": 1, + "size_count": 4618, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core", + "type": "directory", + "name": "aws-java-sdk-core", + "base_name": "aws-java-sdk-core", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 4618, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.properties", + "type": "file", + "name": "pom.properties", + "base_name": "pom", + "extension": ".properties", + "size": 118, + "date": "2022-07-15", + "sha1": "e8fb9a094c1af1002eca3f9dfaec3150f51fdc8a", + "md5": "d37533fe94c25ce5d36caade26000b24", + "sha256": "4ab5517c8a21c31a79ca533595f8b5788df02f36bf92d3adc17eadd22af5e4cf", + "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": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "aws-java-sdk-core-1.12.262-sources.jar-extract/META-INF/maven/com.amazonaws/aws-java-sdk-core/pom.xml", + "type": "file", + "name": "pom.xml", + "base_name": "pom", + "extension": ".xml", + "size": 4500, + "date": "2022-07-15", + "sha1": "0fbea246b5bdfb8d709acb897f5199911ed0c345", + "md5": "8050ae12d5a22f1c078e84de9499b804", + "sha256": "9888e80d47c9b438710602c343afadf0564ef0eafaba7e5bd49fcce21cb7e204", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, 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": [ + { + "type": "maven", + "namespace": "com.amazonaws", + "name": "aws-java-sdk-core", + "version": "1.12.262", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "AWS SDK for Java - Core\nThe AWS SDK for Java - Core module holds the classes that are used by the individual service clients to interact with Amazon Web Services. Users need to depend on aws-java-sdk artifact for accessing individual client classes.", + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": "https://aws.amazon.com/sdkforjava", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "holder": null, + "declared_license_expression": null, + "declared_license_expression_spdx": null, + "license_detections": [], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": null, + "notice_text": null, + "source_packages": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?classifier=sources" + ], + "file_references": [], + "extra_data": {}, + "dependencies": [ + { + "purl": "pkg:maven/commons-logging/commons-logging", + "extracted_requirement": "${commons.logging.version}", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/commons-codec/commons-codec", + "extracted_requirement": "${commons.codec.version}", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/org.apache.httpcomponents/httpclient", + "extracted_requirement": "${httpcomponents.httpclient.version}", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/software.amazon.ion/ion-java", + "extracted_requirement": "${ion.java.version}", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind", + "extracted_requirement": "${jackson.databind.version}", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor", + "extracted_requirement": "${jackson.version}", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/joda-time/joda-time", + "extracted_requirement": "${jodatime.version}", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/junit/junit", + "extracted_requirement": "${junit.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/com.github.tomakehurst/wiremock", + "extracted_requirement": "${wiremock.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/log4j/log4j", + "extracted_requirement": "${log4j.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/org.hamcrest/hamcrest-all", + "extracted_requirement": "${hamcrest.all.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/org.easymock/easymock", + "extracted_requirement": "${easymock.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/commons-io/commons-io", + "extracted_requirement": "${commons.io.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/org.mockito/mockito-all", + "extracted_requirement": "${mockito.all.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/nl.jqno.equalsverifier/equalsverifier", + "extracted_requirement": "${equalsverifier.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/org.unitils/unitils-core", + "extracted_requirement": "${unitils.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + } + ], + "repository_homepage_url": "https://repo1.maven.org/maven2/com/amazonaws/aws-java-sdk-core/1.12.262/", + "repository_download_url": "https://repo1.maven.org/maven2/com/amazonaws/aws-java-sdk-core/1.12.262/aws-java-sdk-core-1.12.262.jar", + "api_data_url": "https://repo1.maven.org/maven2/com/amazonaws/aws-java-sdk-core/1.12.262/aws-java-sdk-core-1.12.262.pom", + "datasource_id": "maven_pom", + "purl": "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262" + } + ], + "for_packages": [ + "pkg:maven/com.amazonaws/aws-java-sdk-core@1.12.262?uuid=b1923820-72f3-4602-b20f-6934fac6117a" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": true, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "for_todo": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} \ No newline at end of file diff --git a/samples/hazelcast-3293_v32.0.0rc3.json b/samples/hazelcast-3293_v32.0.0rc3.json new file mode 100644 index 00000000..fc05105d --- /dev/null +++ b/samples/hazelcast-3293_v32.0.0rc3.json @@ -0,0 +1,5288 @@ +{ + "headers": [ + { + "tool_name": "scancode-toolkit", + "tool_version": "32.0.0rc3", + "options": { + "input": [ + "hazelcast-spring-5.1.5-sources/" + ], + "--classify": true, + "--copyright": true, + "--email": true, + "--info": true, + "--json-pp": "hazelcast-3293.json", + "--license": true, + "--license-clarity-score": true, + "--license-diagnostics": true, + "--license-text": true, + "--license-text-diagnostics": true, + "--package": true, + "--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-28T142348.229364", + "end_timestamp": "2023-03-28T142438.730921", + "output_format_version": "3.0.0", + "duration": 50.501567363739014, + "message": null, + "errors": [], + "warnings": [], + "extra_data": { + "system_environment": { + "operating_system": "linux", + "cpu_architecture": "64", + "platform": "Linux-5.14.0-1058-oem-x86_64-with-glibc2.29", + "platform_version": "#66-Ubuntu SMP Fri Feb 10 09:46:18 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": 39 + } + } + ], + "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": "Java", + "other_license_expressions": [ + { + "value": "apache-2.0", + "count": 29 + }, + { + "value": "bsd-new", + "count": 4 + }, + { + "value": "apache-2.0 AND (mit AND json) AND (apache-2.0 AND bsd-simplified AND bsd-new AND cc0-1.0 AND cddl-1.0) AND (cddl-1.0 AND bsd-new) AND (bsd-new AND epl-2.0 AND elastic-license-v2) AND (bsd-new AND json AND lgpl-2.0 AND mit AND gpl-2.0 AND universal-foss-exception-1.0)", + "count": 1 + } + ], + "other_holders": [ + { + "value": "Hazelcast, Inc.", + "count": 36 + }, + { + "value": "JSON.org", + "count": 13 + }, + { + "value": "Luke Hutchison", + "count": 8 + }, + { + "value": "EclipseSource", + "count": 6 + }, + { + "value": null, + "count": 4 + }, + { + "value": "Free Software Foundation", + "count": 4 + }, + { + "value": "Everit Kft", + "count": 2 + }, + { + "value": "Harith Elrufaie", + "count": 2 + }, + { + "value": "Johno Crawford", + "count": 2 + }, + { + "value": "R. Kempees", + "count": 2 + }, + { + "value": "Sergey Bespalov", + "count": 2 + }, + { + "value": "Tatu Saloranta", + "count": 2 + }, + { + "value": "jacobg, Luke Hutchison", + "count": 2 + }, + { + "value": "mcollovati", + "count": 2 + }, + { + "value": "the original author or authors", + "count": 2 + }, + { + "value": "Appear Networks", + "count": 1 + }, + { + "value": "Eclipse Foundation, Inc.", + "count": 1 + }, + { + "value": "Google", + "count": 1 + }, + { + "value": "Lightbend Inc.", + "count": 1 + }, + { + "value": "The Go Authors", + "count": 1 + }, + { + "value": "http://www.snakeyaml.org", + "count": 1 + } + ], + "other_languages": [] + }, + "packages": [ + { + "type": "maven", + "namespace": "com.hazelcast", + "name": "hazelcast-spring", + "version": "5.1.5", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "hazelcast-spring", + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "declared_license_expression": "apache-2.0", + "declared_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 100.0, + "start_line": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [ + "from-package-file" + ], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": null, + "notice_text": null, + "source_packages": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?classifier=sources" + ], + "extra_data": {}, + "repository_homepage_url": "https://repo1.maven.org/maven2/com/hazelcast/hazelcast-spring/5.1.5/", + "repository_download_url": "https://repo1.maven.org/maven2/com/hazelcast/hazelcast-spring/5.1.5/hazelcast-spring-5.1.5.jar", + "api_data_url": "https://repo1.maven.org/maven2/com/hazelcast/hazelcast-spring/5.1.5/hazelcast-spring-5.1.5.pom", + "package_uid": "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22", + "datafile_paths": [ + "hazelcast-spring-5.1.5-sources/META-INF/maven/com.hazelcast/hazelcast-spring/pom.xml" + ], + "datasource_ids": [ + "maven_pom" + ], + "purl": "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5" + } + ], + "dependencies": [ + { + "purl": "pkg:maven/com.hazelcast/hazelcast@5.1.5", + "extracted_requirement": "5.1.5", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/com.hazelcast/hazelcast@5.1.5?uuid=7a5d3666-4da3-4ac4-80d2-24a54f41d3e2", + "for_package_uid": "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22", + "datafile_path": "hazelcast-spring-5.1.5-sources/META-INF/maven/com.hazelcast/hazelcast-spring/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/javax.annotation/javax.annotation-api@1.3.2", + "extracted_requirement": "1.3.2", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/javax.annotation/javax.annotation-api@1.3.2?uuid=28f3e66e-4d6b-4b97-83dc-63280c09a25a", + "for_package_uid": "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22", + "datafile_path": "hazelcast-spring-5.1.5-sources/META-INF/maven/com.hazelcast/hazelcast-spring/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/org.springframework/spring-context@5.3.16", + "extracted_requirement": "5.3.16", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/org.springframework/spring-context@5.3.16?uuid=b924e0c1-1012-4484-ba84-5e5211e19075", + "for_package_uid": "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22", + "datafile_path": "hazelcast-spring-5.1.5-sources/META-INF/maven/com.hazelcast/hazelcast-spring/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/org.springframework/spring-tx@5.3.16", + "extracted_requirement": "5.3.16", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/org.springframework/spring-tx@5.3.16?uuid=094ecbab-aa90-4a21-bacc-5e4cbb0b8767", + "for_package_uid": "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22", + "datafile_path": "hazelcast-spring-5.1.5-sources/META-INF/maven/com.hazelcast/hazelcast-spring/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/com.hazelcast/hazelcast@5.1.5", + "extracted_requirement": "5.1.5", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/com.hazelcast/hazelcast@5.1.5?uuid=3fad2bb4-49d5-403e-abed-45fb68fdbcab", + "for_package_uid": "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22", + "datafile_path": "hazelcast-spring-5.1.5-sources/META-INF/maven/com.hazelcast/hazelcast-spring/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/org.apache.httpcomponents/httpclient", + "extracted_requirement": "${http.components.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/org.apache.httpcomponents/httpclient?uuid=95726e06-8a88-4501-8a85-61f4a0894e53", + "for_package_uid": "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22", + "datafile_path": "hazelcast-spring-5.1.5-sources/META-INF/maven/com.hazelcast/hazelcast-spring/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.6.3", + "extracted_requirement": "3.6.3", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/org.apache.maven/maven-artifact@3.6.3?uuid=74198439-6db1-49c8-bb7b-1b8d05aca9b4", + "for_package_uid": "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22", + "datafile_path": "hazelcast-spring-5.1.5-sources/META-INF/maven/com.hazelcast/hazelcast-spring/pom.xml", + "datasource_id": "maven_pom" + } + ], + "license_detections": [ + { + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d", + "license_expression": "apache-2.0", + "detection_count": 30, + "detection_log": [] + }, + { + "identifier": "bsd_new-5f924ce0-c75c-5cdf-18cf-da67259e1b0f", + "license_expression": "bsd-new", + "detection_count": 4, + "detection_log": [] + }, + { + "identifier": "apache_2_0-428c1364-ecb5-f806-7a2e-77d10737a7ce", + "license_expression": "apache-2.0", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "mit_and_json-71d53134-c3c0-df8b-b314-b7b560deec64", + "license_expression": "mit AND json", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "apache_2_0_and_bsd_simplified_and_bsd_new_and_cc0_1_0_and_cddl_1_0-f951927d-cae2-3f00-e8ae-9c0e0717482e", + "license_expression": "apache-2.0 AND bsd-simplified AND bsd-new AND cc0-1.0 AND cddl-1.0", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "cddl_1_0_and_bsd_new-9e6d52c5-3187-cfd8-4a75-b84523a02a82", + "license_expression": "cddl-1.0 AND bsd-new", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "bsd_new_and_epl_2_0_and_elastic_license_v2-4bc34854-8217-f1b9-089a-2543c4369b4a", + "license_expression": "bsd-new AND epl-2.0 AND elastic-license-v2", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "bsd_new_and_json_and_lgpl_2_0_and_mit_and_gpl_2_0_and_universal_foss_exception_1_0-7f177f01-6de4-c901-7774-59a866e2ac8e", + "license_expression": "bsd-new AND json AND lgpl-2.0 AND mit AND gpl-2.0 AND universal-foss-exception-1.0", + "detection_count": 1, + "detection_log": [] + } + ], + "files": [ + { + "path": "hazelcast-spring-5.1.5-sources", + "type": "directory", + "name": "hazelcast-spring-5.1.5-sources", + "base_name": "hazelcast-spring-5.1.5-sources", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 39, + "dirs_count": 13, + "size_count": 2000613, + "scan_errors": [] + }, + { + "path": "hazelcast-spring-5.1.5-sources/attribution.txt", + "type": "file", + "name": "attribution.txt", + "base_name": "attribution", + "extension": ".txt", + "size": 2498, + "date": "2022-11-14", + "sha1": "379dba2f4351f72ade919d8f350664fb4108fd99", + "md5": "8c7b1945fd3d67a573e243fd8fe64a87", + "sha256": "4ff31c8de82b11786012b9066b980f789d64f2df1016060c4e0c255134bef828", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [ + { + "copyright": "Copyright (c) 2007- Tatu Saloranta, tatu.saloranta@iki.fi", + "start_line": 2, + "end_line": 2 + }, + { + "copyright": "Copyright (c) 2011 Everit Kft. (http://www.everit.org)", + "start_line": 5, + "end_line": 5 + }, + { + "copyright": "Copyright (c) 2002 JSON.org", + "start_line": 6, + "end_line": 6 + }, + { + "copyright": "Copyright (c) 2006 JSON.org", + "start_line": 7, + "end_line": 7 + }, + { + "copyright": "Copyright (c) 2009-2017 Lightbend Inc. ", + "start_line": 10, + "end_line": 10 + }, + { + "copyright": "Copyright (c) 2011 Everit Kft. (http://www.everit.org)", + "start_line": 11, + "end_line": 11 + }, + { + "copyright": "Copyright (c) 2002 JSON.org", + "start_line": 12, + "end_line": 12 + }, + { + "copyright": "Copyright (c) 2006 JSON.org", + "start_line": 13, + "end_line": 13 + }, + { + "copyright": "Copyright (c) 2007- Tatu Saloranta, tatu.saloranta@iki.fi", + "start_line": 14, + "end_line": 14 + }, + { + "copyright": "Copyright (c) 2008 Google Inc.", + "start_line": 15, + "end_line": 15 + }, + { + "copyright": "Copyright (c) 2008 JSON.org", + "start_line": 16, + "end_line": 16 + }, + { + "copyright": "Copyright (c) 2008-2019, Hazelcast, Inc.", + "start_line": 17, + "end_line": 17 + }, + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 18, + "end_line": 18 + }, + { + "copyright": "Copyright (c) 2013, 2015 EclipseSource", + "start_line": 19, + "end_line": 19 + }, + { + "copyright": "Copyright (c) 2013, 2016 EclipseSource", + "start_line": 20, + "end_line": 20 + }, + { + "copyright": "Copyright (c) 2013, 2017 EclipseSource", + "start_line": 21, + "end_line": 21 + }, + { + "copyright": "Copyright (c) 2014, Appear Networks", + "start_line": 22, + "end_line": 22 + }, + { + "copyright": "Copyright (c) 2015 EclipseSource", + "start_line": 23, + "end_line": 23 + }, + { + "copyright": "Copyright (c) 2015 JSON.org", + "start_line": 24, + "end_line": 24 + }, + { + "copyright": "Copyright (c) 2015, 2016 EclipseSource", + "start_line": 25, + "end_line": 25 + }, + { + "copyright": "Copyright (c) 2016 EclipseSource", + "start_line": 26, + "end_line": 26 + }, + { + "copyright": "Copyright (c) 2016 Johno Crawford", + "start_line": 27, + "end_line": 27 + }, + { + "copyright": "Copyright (c) 2017 Harith Elrufaie", + "start_line": 28, + "end_line": 28 + }, + { + "copyright": "Copyright (c) 2017 R. Kempees", + "start_line": 29, + "end_line": 29 + }, + { + "copyright": "Copyright (c) 2017 Sergey Bespalov", + "start_line": 30, + "end_line": 30 + }, + { + "copyright": "Copyright (c) 2017-2021, Hazelcast, Inc.", + "start_line": 31, + "end_line": 31 + }, + { + "copyright": "Copyright (c) 2018 JSON.org", + "start_line": 32, + "end_line": 32 + }, + { + "copyright": "Copyright (c) 2018, http://www.snakeyaml.org", + "start_line": 33, + "end_line": 33 + }, + { + "copyright": "Copyright (c) 2019 jacobg, Luke Hutchison", + "start_line": 34, + "end_line": 34 + }, + { + "copyright": "Copyright (c) 2019 mcollovati", + "start_line": 35, + "end_line": 35 + }, + { + "copyright": "Copyright (c) 2019 Luke Hutchison", + "start_line": 36, + "end_line": 36 + }, + { + "copyright": "Copyright (c) 2019 Luke Hutchison", + "start_line": 37, + "end_line": 37 + }, + { + "copyright": "Copyright (c) 2020 Luke Hutchison", + "start_line": 38, + "end_line": 38 + }, + { + "copyright": "Copyright (c) 2021 Luke Hutchison", + "start_line": 39, + "end_line": 39 + }, + { + "copyright": "Copyright 2006-2021 the original author or authors", + "start_line": 40, + "end_line": 40 + }, + { + "copyright": "Copyright (c) 2016 Johno Crawford", + "start_line": 43, + "end_line": 43 + }, + { + "copyright": "Copyright (c) 2017 Harith Elrufaie", + "start_line": 44, + "end_line": 44 + }, + { + "copyright": "Copyright (c) 2017 R. Kempees", + "start_line": 45, + "end_line": 45 + }, + { + "copyright": "Copyright (c) 2017 Sergey Bespalov", + "start_line": 46, + "end_line": 46 + }, + { + "copyright": "Copyright (c) 2019 jacobg, Luke Hutchison", + "start_line": 47, + "end_line": 47 + }, + { + "copyright": "Copyright (c) 2019 mcollovati", + "start_line": 48, + "end_line": 48 + }, + { + "copyright": "Copyright (c) 2019 Luke Hutchison", + "start_line": 49, + "end_line": 49 + }, + { + "copyright": "Copyright (c) 2019 Luke Hutchison", + "start_line": 50, + "end_line": 50 + }, + { + "copyright": "Copyright (c) 2020 Luke Hutchison", + "start_line": 51, + "end_line": 51 + }, + { + "copyright": "Copyright (c) 2021 Luke Hutchison", + "start_line": 52, + "end_line": 52 + }, + { + "copyright": "Copyright (c) 2002 JSON.org", + "start_line": 55, + "end_line": 55 + }, + { + "copyright": "Copyright (c) 2006 JSON.org", + "start_line": 56, + "end_line": 56 + }, + { + "copyright": "Copyright (c) 2008 JSON.org", + "start_line": 57, + "end_line": 57 + }, + { + "copyright": "Copyright (c) 2015 JSON.org", + "start_line": 58, + "end_line": 58 + }, + { + "copyright": "Copyright (c) 2018 JSON.org", + "start_line": 59, + "end_line": 59 + }, + { + "copyright": "Copyright 2006-2019 the original author or authors", + "start_line": 62, + "end_line": 62 + } + ], + "holders": [ + { + "holder": "Tatu Saloranta", + "start_line": 2, + "end_line": 2 + }, + { + "holder": "Everit Kft", + "start_line": 5, + "end_line": 5 + }, + { + "holder": "JSON.org", + "start_line": 6, + "end_line": 6 + }, + { + "holder": "JSON.org", + "start_line": 7, + "end_line": 7 + }, + { + "holder": "Lightbend Inc.", + "start_line": 10, + "end_line": 10 + }, + { + "holder": "Everit Kft", + "start_line": 11, + "end_line": 11 + }, + { + "holder": "JSON.org", + "start_line": 12, + "end_line": 12 + }, + { + "holder": "JSON.org", + "start_line": 13, + "end_line": 13 + }, + { + "holder": "Tatu Saloranta", + "start_line": 14, + "end_line": 14 + }, + { + "holder": "Google Inc.", + "start_line": 15, + "end_line": 15 + }, + { + "holder": "JSON.org", + "start_line": 16, + "end_line": 16 + }, + { + "holder": "Hazelcast, Inc.", + "start_line": 17, + "end_line": 17 + }, + { + "holder": "Hazelcast, Inc.", + "start_line": 18, + "end_line": 18 + }, + { + "holder": "EclipseSource", + "start_line": 19, + "end_line": 19 + }, + { + "holder": "EclipseSource", + "start_line": 20, + "end_line": 20 + }, + { + "holder": "EclipseSource", + "start_line": 21, + "end_line": 21 + }, + { + "holder": "Appear Networks", + "start_line": 22, + "end_line": 22 + }, + { + "holder": "EclipseSource", + "start_line": 23, + "end_line": 23 + }, + { + "holder": "JSON.org", + "start_line": 24, + "end_line": 24 + }, + { + "holder": "EclipseSource", + "start_line": 25, + "end_line": 25 + }, + { + "holder": "EclipseSource", + "start_line": 26, + "end_line": 26 + }, + { + "holder": "Johno Crawford", + "start_line": 27, + "end_line": 27 + }, + { + "holder": "Harith Elrufaie", + "start_line": 28, + "end_line": 28 + }, + { + "holder": "R. Kempees", + "start_line": 29, + "end_line": 29 + }, + { + "holder": "Sergey Bespalov", + "start_line": 30, + "end_line": 30 + }, + { + "holder": "Hazelcast, Inc.", + "start_line": 31, + "end_line": 31 + }, + { + "holder": "JSON.org", + "start_line": 32, + "end_line": 32 + }, + { + "holder": "http://www.snakeyaml.org", + "start_line": 33, + "end_line": 33 + }, + { + "holder": "jacobg, Luke Hutchison", + "start_line": 34, + "end_line": 34 + }, + { + "holder": "mcollovati", + "start_line": 35, + "end_line": 35 + }, + { + "holder": "Luke Hutchison", + "start_line": 36, + "end_line": 36 + }, + { + "holder": "Luke Hutchison", + "start_line": 37, + "end_line": 37 + }, + { + "holder": "Luke Hutchison", + "start_line": 38, + "end_line": 38 + }, + { + "holder": "Luke Hutchison", + "start_line": 39, + "end_line": 39 + }, + { + "holder": "the original author or authors", + "start_line": 40, + "end_line": 40 + }, + { + "holder": "Johno Crawford", + "start_line": 43, + "end_line": 43 + }, + { + "holder": "Harith Elrufaie", + "start_line": 44, + "end_line": 44 + }, + { + "holder": "R. Kempees", + "start_line": 45, + "end_line": 45 + }, + { + "holder": "Sergey Bespalov", + "start_line": 46, + "end_line": 46 + }, + { + "holder": "jacobg, Luke Hutchison", + "start_line": 47, + "end_line": 47 + }, + { + "holder": "mcollovati", + "start_line": 48, + "end_line": 48 + }, + { + "holder": "Luke Hutchison", + "start_line": 49, + "end_line": 49 + }, + { + "holder": "Luke Hutchison", + "start_line": 50, + "end_line": 50 + }, + { + "holder": "Luke Hutchison", + "start_line": 51, + "end_line": 51 + }, + { + "holder": "Luke Hutchison", + "start_line": 52, + "end_line": 52 + }, + { + "holder": "JSON.org", + "start_line": 55, + "end_line": 55 + }, + { + "holder": "JSON.org", + "start_line": 56, + "end_line": 56 + }, + { + "holder": "JSON.org", + "start_line": 57, + "end_line": 57 + }, + { + "holder": "JSON.org", + "start_line": 58, + "end_line": 58 + }, + { + "holder": "JSON.org", + "start_line": 59, + "end_line": 59 + }, + { + "holder": "the original author or authors", + "start_line": 62, + "end_line": 62 + } + ], + "authors": [], + "emails": [ + { + "email": "tatu.saloranta@iki.fi", + "start_line": 2, + "end_line": 2 + } + ], + "urls": [ + { + "url": "http://www.everit.org/", + "start_line": 5, + "end_line": 5 + }, + { + "url": "http://www.lightbend.com/", + "start_line": 10, + "end_line": 10 + }, + { + "url": "http://www.snakeyaml.org/", + "start_line": 33, + "end_line": 33 + } + ], + "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": "hazelcast-spring-5.1.5-sources/hazelcast-spring-4.0.xsd", + "type": "file", + "name": "hazelcast-spring-4.0.xsd", + "base_name": "hazelcast-spring-4.0", + "extension": ".xsd", + "size": 289088, + "date": "2022-11-14", + "sha1": "54f300245dd084bcd0c9921b2a707e287f0932e0", + "md5": "c70b3c01fef1e5dd0e16b12fc80f75b4", + "sha256": "077f44bb31600e2775b8f3a6e7760de5cc7f39f27bc2bfdb03ee94c79bc5509b", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, 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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 5, + "end_line": 15, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 0.32, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2021, Hazelcast, Inc.", + "start_line": 3, + "end_line": 3 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 3, + "end_line": 3 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 9, + "end_line": 9 + }, + { + "url": "http://www.hazelcast.com/schema/spring", + "start_line": 19, + "end_line": 19 + }, + { + "url": "http://www.springframework.org/schema/tool", + "start_line": 20, + "end_line": 20 + }, + { + "url": "http://www.springframework.org/schema/tool/spring-tool.xsd", + "start_line": 26, + "end_line": 26 + }, + { + "url": "https://en.wikipedia.org/wiki/Merkle_tree", + "start_line": 4259, + "end_line": 4259 + } + ], + "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": "hazelcast-spring-5.1.5-sources/hazelcast-spring-4.1.xsd", + "type": "file", + "name": "hazelcast-spring-4.1.xsd", + "base_name": "hazelcast-spring-4.1", + "extension": ".xsd", + "size": 309199, + "date": "2022-11-14", + "sha1": "9f649ff70377d70bf234fa0c6aab2775856f01a1", + "md5": "2f0949ea7aa83c3b9e4ce9affbba5a19", + "sha256": "674417cf8f254c188f9a3903afb8b4ea40a74de30493d998c63cc2f6d365fc1a", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, 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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "detected_license_expression": "bsd-new", + "detected_license_expression_spdx": "BSD-3-Clause", + "license_detections": [ + { + "license_expression": "bsd-new", + "matches": [ + { + "score": 91.25, + "start_line": 5, + "end_line": 14, + "matched_length": 73, + "match_coverage": 91.25, + "matcher": "3-seq", + "license_expression": "bsd-new", + "rule_identifier": "bsd-new_832.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_832.RULE", + "matched_text": "Licensed under the [Hazelcast] [Community] License (the \"License\"); you may not use\n ~ this file except in compliance with the License. You may obtain a copy of the\n ~ License at\n ~\n ~ http://[hazelcast].[com]/[hazelcast]-[community]-license\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, WITHOUT\n ~ WARRANTIES OF ANY KIND, either express or implied. See the License for the\n ~ specific language governing permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "bsd_new-5f924ce0-c75c-5cdf-18cf-da67259e1b0f" + } + ], + "license_clues": [], + "percentage_of_license_text": 0.26, + "copyrights": [ + { + "copyright": "Copyright 2021 Hazelcast Inc.", + "start_line": 3, + "end_line": 3 + } + ], + "holders": [ + { + "holder": "Hazelcast Inc.", + "start_line": 3, + "end_line": 3 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://hazelcast.com/hazelcast-community-license", + "start_line": 9, + "end_line": 9 + }, + { + "url": "http://www.hazelcast.com/schema/spring", + "start_line": 18, + "end_line": 18 + }, + { + "url": "http://www.springframework.org/schema/tool", + "start_line": 19, + "end_line": 19 + }, + { + "url": "http://www.springframework.org/schema/tool/spring-tool.xsd", + "start_line": 25, + "end_line": 25 + }, + { + "url": "https://en.wikipedia.org/wiki/Merkle_tree", + "start_line": 4455, + "end_line": 4455 + } + ], + "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": "hazelcast-spring-5.1.5-sources/hazelcast-spring-4.2.xsd", + "type": "file", + "name": "hazelcast-spring-4.2.xsd", + "base_name": "hazelcast-spring-4.2", + "extension": ".xsd", + "size": 301386, + "date": "2022-11-14", + "sha1": "501364b6d82c78ad4683c929a0d95995f1d30ae6", + "md5": "581845ec39832be3b20e5c796b585acf", + "sha256": "09905669cea354063e81776f0c0b77c1bebad9b869f668ed5658bc34c3b6fe01", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, 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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "detected_license_expression": "bsd-new", + "detected_license_expression_spdx": "BSD-3-Clause", + "license_detections": [ + { + "license_expression": "bsd-new", + "matches": [ + { + "score": 91.25, + "start_line": 5, + "end_line": 14, + "matched_length": 73, + "match_coverage": 91.25, + "matcher": "3-seq", + "license_expression": "bsd-new", + "rule_identifier": "bsd-new_832.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_832.RULE", + "matched_text": "Licensed under the [Hazelcast] [Community] License (the \"License\"); you may not use\n ~ this file except in compliance with the License. You may obtain a copy of the\n ~ License at\n ~\n ~ http://[hazelcast].[com]/[hazelcast]-[community]-license\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, WITHOUT\n ~ WARRANTIES OF ANY KIND, either express or implied. See the License for the\n ~ specific language governing permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "bsd_new-5f924ce0-c75c-5cdf-18cf-da67259e1b0f" + } + ], + "license_clues": [], + "percentage_of_license_text": 0.27, + "copyrights": [ + { + "copyright": "Copyright 2021 Hazelcast Inc.", + "start_line": 3, + "end_line": 3 + } + ], + "holders": [ + { + "holder": "Hazelcast Inc.", + "start_line": 3, + "end_line": 3 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://hazelcast.com/hazelcast-community-license", + "start_line": 9, + "end_line": 9 + }, + { + "url": "http://www.hazelcast.com/schema/spring", + "start_line": 18, + "end_line": 18 + }, + { + "url": "http://www.springframework.org/schema/tool", + "start_line": 19, + "end_line": 19 + }, + { + "url": "http://www.springframework.org/schema/tool/spring-tool.xsd", + "start_line": 24, + "end_line": 24 + }, + { + "url": "https://en.wikipedia.org/wiki/Merkle_tree", + "start_line": 4462, + "end_line": 4462 + } + ], + "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": "hazelcast-spring-5.1.5-sources/hazelcast-spring-5.0.xsd", + "type": "file", + "name": "hazelcast-spring-5.0.xsd", + "base_name": "hazelcast-spring-5.0", + "extension": ".xsd", + "size": 332575, + "date": "2022-11-14", + "sha1": "0996d2a9dd0965bd50e0f843fa18297bca033768", + "md5": "5f2b0be062566d72bfd1f931145355cf", + "sha256": "961f3651ec96e11515ebcc1ba08d19cdb7c89f4252e4925a87e7dee862f835cf", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, 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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "detected_license_expression": "bsd-new", + "detected_license_expression_spdx": "BSD-3-Clause", + "license_detections": [ + { + "license_expression": "bsd-new", + "matches": [ + { + "score": 91.25, + "start_line": 5, + "end_line": 14, + "matched_length": 73, + "match_coverage": 91.25, + "matcher": "3-seq", + "license_expression": "bsd-new", + "rule_identifier": "bsd-new_832.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_832.RULE", + "matched_text": "Licensed under the [Hazelcast] [Community] License (the \"License\"); you may not use\n ~ this file except in compliance with the License. You may obtain a copy of the\n ~ License at\n ~\n ~ http://[hazelcast].[com]/[hazelcast]-[community]-license\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, WITHOUT\n ~ WARRANTIES OF ANY KIND, either express or implied. See the License for the\n ~ specific language governing permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "bsd_new-5f924ce0-c75c-5cdf-18cf-da67259e1b0f" + } + ], + "license_clues": [], + "percentage_of_license_text": 0.24, + "copyrights": [ + { + "copyright": "Copyright 2021 Hazelcast Inc.", + "start_line": 3, + "end_line": 3 + } + ], + "holders": [ + { + "holder": "Hazelcast Inc.", + "start_line": 3, + "end_line": 3 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://hazelcast.com/hazelcast-community-license", + "start_line": 9, + "end_line": 9 + }, + { + "url": "http://www.hazelcast.com/schema/spring", + "start_line": 18, + "end_line": 18 + }, + { + "url": "http://www.springframework.org/schema/tool", + "start_line": 19, + "end_line": 19 + }, + { + "url": "http://www.springframework.org/schema/tool/spring-tool.xsd", + "start_line": 24, + "end_line": 24 + }, + { + "url": "https://en.wikipedia.org/wiki/Merkle_tree", + "start_line": 4738, + "end_line": 4738 + } + ], + "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": "hazelcast-spring-5.1.5-sources/hazelcast-spring-5.1.xsd", + "type": "file", + "name": "hazelcast-spring-5.1.xsd", + "base_name": "hazelcast-spring-5.1", + "extension": ".xsd", + "size": 345188, + "date": "2022-11-14", + "sha1": "fee17813c9d2020f21b1a714b5897bad63a58fe6", + "md5": "b8df044191aa615f0d4714074e30a777", + "sha256": "2af1a808b7702c3ab3c972d7530a83d48876e3c3717a6ae614d4d1a7dc53d14a", + "mime_type": "text/xml", + "file_type": "XML 1.0 document, 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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "detected_license_expression": "bsd-new", + "detected_license_expression_spdx": "BSD-3-Clause", + "license_detections": [ + { + "license_expression": "bsd-new", + "matches": [ + { + "score": 91.25, + "start_line": 5, + "end_line": 14, + "matched_length": 73, + "match_coverage": 91.25, + "matcher": "3-seq", + "license_expression": "bsd-new", + "rule_identifier": "bsd-new_832.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_832.RULE", + "matched_text": "Licensed under the [Hazelcast] [Community] License (the \"License\"); you may not use\n ~ this file except in compliance with the License. You may obtain a copy of the\n ~ License at\n ~\n ~ http://[hazelcast].[com]/[hazelcast]-[community]-license\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, WITHOUT\n ~ WARRANTIES OF ANY KIND, either express or implied. See the License for the\n ~ specific language governing permissions and limitations under the License." + } + ], + "detection_log": [], + "identifier": "bsd_new-5f924ce0-c75c-5cdf-18cf-da67259e1b0f" + } + ], + "license_clues": [], + "percentage_of_license_text": 0.23, + "copyrights": [ + { + "copyright": "Copyright 2022 Hazelcast Inc.", + "start_line": 3, + "end_line": 3 + } + ], + "holders": [ + { + "holder": "Hazelcast Inc.", + "start_line": 3, + "end_line": 3 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://hazelcast.com/hazelcast-community-license", + "start_line": 9, + "end_line": 9 + }, + { + "url": "http://www.hazelcast.com/schema/spring", + "start_line": 18, + "end_line": 18 + }, + { + "url": "http://www.springframework.org/schema/tool", + "start_line": 19, + "end_line": 19 + }, + { + "url": "http://www.springframework.org/schema/tool/spring-tool.xsd", + "start_line": 24, + "end_line": 24 + }, + { + "url": "https://en.wikipedia.org/wiki/Merkle_tree", + "start_line": 5004, + "end_line": 5004 + } + ], + "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": "hazelcast-spring-5.1.5-sources/THIRD-PARTY.txt", + "type": "file", + "name": "THIRD-PARTY.txt", + "base_name": "THIRD-PARTY", + "extension": ".txt", + "size": 125667, + "date": "2022-11-14", + "sha1": "9389cc2991d989faac629e0f0309a84071fe2341", + "md5": "b806ccbd6350ebc7ebc1cd343fbd3999", + "sha256": "2faf19fd84d49e6df27db2ae82c701faf614622debe1cc45ac9dc1c0ac7c1454", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode 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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "detected_license_expression": "apache-2.0 AND (mit AND json) AND (apache-2.0 AND bsd-simplified AND bsd-new AND cc0-1.0 AND cddl-1.0) AND (cddl-1.0 AND bsd-new) AND (bsd-new AND epl-2.0 AND elastic-license-v2) AND (bsd-new AND json AND lgpl-2.0 AND mit AND gpl-2.0 AND universal-foss-exception-1.0)", + "detected_license_expression_spdx": "Apache-2.0 AND (MIT AND JSON) AND (Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND CDDL-1.0) AND (CDDL-1.0 AND BSD-3-Clause) AND (BSD-3-Clause AND EPL-2.0 AND Elastic-2.0) AND (BSD-3-Clause AND JSON AND LGPL-2.0-only AND MIT AND GPL-2.0-only AND Universal-FOSS-exception-1.0)", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 100.0, + "start_line": 4, + "end_line": 4, + "matched_length": 5, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_48.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_48.RULE", + "matched_text": "Apache License, Version 2.0" + } + ], + "detection_log": [], + "identifier": "apache_2_0-428c1364-ecb5-f806-7a2e-77d10737a7ce" + }, + { + "license_expression": "mit AND json", + "matches": [ + { + "score": 100.0, + "start_line": 11, + "end_line": 11, + "matched_length": 2, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "mit", + "rule_identifier": "mit_14.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_14.RULE", + "matched_text": "MIT License" + }, + { + "score": 100.0, + "start_line": 13, + "end_line": 14, + "matched_length": 3, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "json", + "rule_identifier": "json_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/json_7.RULE", + "matched_text": "JSON License\n JSON" + } + ], + "detection_log": [], + "identifier": "mit_and_json-71d53134-c3c0-df8b-b314-b7b560deec64" + }, + { + "license_expression": "apache-2.0 AND bsd-simplified AND bsd-new AND cc0-1.0 AND cddl-1.0", + "matches": [ + { + "score": 100.0, + "start_line": 21, + "end_line": 221, + "matched_length": 1584, + "match_coverage": 100.0, + "matcher": "2-aho", + "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\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." + }, + { + "score": 100.0, + "start_line": 221, + "end_line": 225, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "bsd-simplified", + "rule_identifier": "bsd-simplified_136.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-simplified_136.RULE", + "matched_text": "License.\n\n-----\n\nBSD 2-Clause" + }, + { + "score": 100.0, + "start_line": 227, + "end_line": 248, + "matched_length": 185, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "bsd-simplified", + "rule_identifier": "bsd-simplified_16.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-simplified_16.RULE", + "matched_text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1. Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." + }, + { + "score": 100.0, + "start_line": 252, + "end_line": 252, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "bsd-new", + "rule_identifier": "bsd-new_360.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_360.RULE", + "matched_text": "BSD 3-Clause License" + }, + { + "score": 100.0, + "start_line": 254, + "end_line": 279, + "matched_length": 216, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "bsd-new", + "rule_identifier": "bsd-new_105.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_105.RULE", + "matched_text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n1. Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." + }, + { + "score": 100.0, + "start_line": 283, + "end_line": 403, + "matched_length": 1070, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc0-1.0", + "rule_identifier": "cc0-1.0.LICENSE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/cc0-1.0.LICENSE", + "matched_text": "Creative Commons Legal Code\n\nCC0 1.0 Universal\n\n CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\n LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN\n ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS\n INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES\n REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS\n PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM\n THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED\n HEREUNDER.\n\nStatement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator\nand subsequent owner(s) (each and all, an \"owner\") of an original work of\nauthorship and/or a database (each, a \"Work\").\n\nCertain owners wish to permanently relinquish those rights to a Work for\nthe purpose of contributing to a commons of creative, cultural and\nscientific works (\"Commons\") that the public can reliably and without fear\nof later claims of infringement build upon, modify, incorporate in other\nworks, reuse and redistribute as freely as possible in any form whatsoever\nand for any purposes, including without limitation commercial purposes.\nThese owners may contribute to the Commons to promote the ideal of a free\nculture and the further production of creative, cultural and scientific\nworks, or to gain reputation or greater distribution for their Work in\npart through the use and efforts of others.\n\nFor these and/or other purposes and motivations, and without any\nexpectation of additional consideration or compensation, the person\nassociating CC0 with a Work (the \"Affirmer\"), to the extent that he or she\nis an owner of Copyright and Related Rights in the Work, voluntarily\nelects to apply CC0 to the Work and publicly distribute the Work under its\nterms, with knowledge of his or her Copyright and Related Rights in the\nWork and the meaning and intended legal effect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\nprotected by copyright and related or neighboring rights (\"Copyright and\nRelated Rights\"). Copyright and Related Rights include, but are not\nlimited to, the following:\n\n i. the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n ii. moral rights retained by the original author(s) and/or performer(s);\niii. publicity and privacy rights pertaining to a person's image or\n likeness depicted in a Work;\n iv. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(a), below;\n v. rights protecting the extraction, dissemination, use and reuse of data\n in a Work;\n vi. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation\n thereof, including any amended or successor version of such\n directive); and\nvii. other similar, equivalent or corresponding rights throughout the\n world based on applicable law or treaty, and any national\n implementations thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention\nof, applicable law, Affirmer hereby overtly, fully, permanently,\nirrevocably and unconditionally waives, abandons, and surrenders all of\nAffirmer's Copyright and Related Rights and associated claims and causes\nof action, whether now known or unknown (including existing as well as\nfuture claims and causes of action), in the Work (i) in all territories\nworldwide, (ii) for the maximum duration provided by applicable law or\ntreaty (including future time extensions), (iii) in any current or future\nmedium and for any number of copies, and (iv) for any purpose whatsoever,\nincluding without limitation commercial, advertising or promotional\npurposes (the \"Waiver\"). Affirmer makes the Waiver for the benefit of each\nmember of the public at large and to the detriment of Affirmer's heirs and\nsuccessors, fully intending that such Waiver shall not be subject to\nrevocation, rescission, cancellation, termination, or any other legal or\nequitable action to disrupt the quiet enjoyment of the Work by the public\nas contemplated by Affirmer's express Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason\nbe judged legally invalid or ineffective under applicable law, then the\nWaiver shall be preserved to the maximum extent permitted taking into\naccount Affirmer's express Statement of Purpose. In addition, to the\nextent the Waiver is so judged Affirmer hereby grants to each affected\nperson a royalty-free, non transferable, non sublicensable, non exclusive,\nirrevocable and unconditional license to exercise Affirmer's Copyright and\nRelated Rights in the Work (i) in all territories worldwide, (ii) for the\nmaximum duration provided by applicable law or treaty (including future\ntime extensions), (iii) in any current or future medium and for any number\nof copies, and (iv) for any purpose whatsoever, including without\nlimitation commercial, advertising or promotional purposes (the\n\"License\"). The License shall be deemed effective as of the date CC0 was\napplied by Affirmer to the Work. Should any part of the License for any\nreason be judged legally invalid or ineffective under applicable law, such\npartial invalidity or ineffectiveness shall not invalidate the remainder\nof the License, and in such case Affirmer hereby affirms that he or she\nwill not (i) exercise any of his or her remaining Copyright and Related\nRights in the Work or (ii) assert any associated claims and causes of\naction with respect to the Work, in either case contrary to Affirmer's\nexpress Statement of Purpose.\n\n4. Limitations and Disclaimers.\n\n a. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n b. Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied,\n statutory or otherwise, including without limitation warranties of\n title, merchantability, fitness for a particular purpose, non\n infringement, or the absence of latent or other defects, accuracy, or\n the present or absence of errors, whether or not discoverable, all to\n the greatest extent permissible under applicable law.\n c. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person's Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the\n Work.\n d. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to\n this CC0 or use of the Work." + }, + { + "score": 96.42, + "start_line": 407, + "end_line": 793, + "matched_length": 2587, + "match_coverage": 96.42, + "matcher": "3-seq", + "license_expression": "cddl-1.0", + "rule_identifier": "cddl-1.0_56.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cddl-1.0_56.RULE", + "matched_text": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0\n\n1. Definitions.\n\n 1.1. \"Contributor\" means each individual or entity that\n creates or contributes to the creation of Modifications.\n\n 1.2. \"Contributor Version\" means the combination of the\n Original Software, prior Modifications used by a\n Contributor (if any), and the Modifications made by that\n particular Contributor.\n\n 1.3. \"Covered Software\" means (a) the Original Software, or\n (b) Modifications, or (c) the combination of files\n containing Original Software with files containing\n Modifications, in each case including portions thereof.\n\n 1.4. \"Executable\" means the Covered Software in any form\n other than Source Code.\n\n 1.5. \"Initial Developer\" means the individual or entity\n that first makes Original Software available under this\n License.\n\n 1.6. \"Larger Work\" means a work which combines Covered\n Software or portions thereof with code not governed by the\n terms of this License.\n\n 1.7. \"License\" means this document.\n\n 1.8. \"Licensable\" means having the right to grant, to the\n maximum extent possible, whether at the time of the initial\n grant or subsequently acquired, any and all of the rights\n conveyed herein.\n\n 1.9. \"Modifications\" means the Source Code and Executable\n form of any of the following:\n\n A. Any file that results from an addition to,\n deletion from or modification of the contents of a\n file containing Original Software or previous\n Modifications;\n\n B. Any new file that contains any part of the\n Original Software or previous [Modification]; or\n\n C. Any new file that is contributed or otherwise made\n available under the terms of this License.\n\n 1.10. \"Original Software\" means the Source Code and\n Executable form of computer software code that is\n originally released under this License.\n\n 1.11. \"Patent Claims\" means any patent claim(s), now owned\n or hereafter acquired, including without limitation,\n method, process, and apparatus claims, in any patent\n Licensable by grantor.\n\n 1.12. \"Source Code\" means (a) the common form of computer\n software code in which modifications are made and (b)\n associated documentation included in or with such code.\n\n 1.13. \"You\" (or \"Your\") means an individual or a legal\n entity exercising rights under, and complying with all of\n the terms of, this License. For legal entities, \"You\"\n includes any entity which controls, is controlled by, or is\n under common control with You. For purposes of this\n definition, \"control\" means (a) the power, direct or\n indirect, to cause the direction or management of such\n entity, whether by contract or otherwise, or (b) ownership\n of more than fifty percent (50%) of the outstanding shares\n or beneficial ownership of such entity.\n\n2. License Grants.\n\n 2.1. The Initial Developer Grant.\n\n Conditioned upon Your compliance with Section 3.1 below and\n subject to third party intellectual property claims, the\n Initial Developer hereby grants You a world-wide,\n royalty-free, non-exclusive license:\n\n (a) under intellectual property rights (other than\n patent or trademark) Licensable by Initial Developer,\n to use, reproduce, modify, display, perform,\n sublicense and distribute the Original Software (or\n portions thereof), with or without Modifications,\n and/or as part of a Larger Work; and\n\n (b) under Patent Claims infringed by the making,\n using or selling of Original Software, to make, have\n made, use, practice, sell, and offer for sale, and/or\n otherwise dispose of the Original Software (or\n portions thereof).\n\n (c) The licenses granted in Sections 2.1(a) and (b)\n are effective on the date Initial Developer first\n distributes or otherwise makes the Original Software\n available to a third party under the terms of this\n License.\n\n (d) Notwithstanding Section 2.1(b) above, no patent\n license is granted: (1) for code that You delete from\n the Original Software, or (2) for infringements\n caused by: (i) the modification of the Original\n Software, or (ii) the combination of the Original\n Software with other software or devices.\n\n 2.2. Contributor Grant.\n\n Conditioned upon Your compliance with Section 3.1 below and\n subject to third party intellectual property claims, each\n Contributor hereby grants You a world-wide, royalty-free,\n non-exclusive license:\n\n (a) under intellectual property rights (other than\n patent or trademark) Licensable by Contributor to\n use, reproduce, modify, display, perform, sublicense\n and distribute the Modifications created by such\n Contributor (or portions thereof), either on an\n unmodified basis, with other Modifications, as\n Covered Software and/or as part of a Larger Work; and\n\n\n (b) under Patent Claims infringed by the making,\n using, or selling of Modifications made by that\n Contributor either alone and/or in combination with\n its Contributor Version (or portions of such\n combination), to make, use, sell, offer for sale,\n have made, and/or otherwise dispose of: (1)\n Modifications made by that Contributor (or portions\n thereof); and (2) the combination of Modifications\n made by that Contributor with its Contributor Version\n (or portions of such combination).\n\n (c) The licenses granted in Sections 2.2(a) and\n 2.2(b) are effective on the date Contributor first\n distributes or otherwise makes the Modifications\n available to a third party.\n\n (d) Notwithstanding Section 2.2(b) above, no patent\n license is granted: (1) for any code that Contributor\n has deleted from the Contributor Version; (2) for\n infringements caused by: (i) third party\n modifications of Contributor Version, or (ii) the\n combination of Modifications made by that Contributor\n with other software (except as part of the\n Contributor Version) or other devices; or (3) under\n Patent Claims infringed by Covered Software in the\n absence of Modifications made by that Contributor.\n\n3. Distribution Obligations.\n\n 3.1. Availability of Source Code.\n\n Any Covered Software that You distribute or otherwise make\n available in Executable form must also be made available in\n Source Code form and that Source Code form must be\n distributed only under the terms of this License. You must\n include a copy of this License with every copy of the\n Source Code form of the Covered Software You distribute or\n otherwise make available. You must inform recipients of any\n such Covered Software in Executable form as to how they can\n obtain such Covered Software in Source Code form in a\n reasonable manner on or through a medium customarily used\n for software exchange.\n\n 3.2. Modifications.\n\n The Modifications that You create or to which You\n contribute are governed by the terms of this License. You\n represent that You believe Your Modifications are Your\n original creation(s) and/or You have sufficient rights to\n grant the rights conveyed by this License.\n\n 3.3. Required Notices.\n\n You must include a notice in each of Your Modifications\n that identifies You as the Contributor of the Modification.\n You may not remove or alter any copyright, patent or\n trademark notices contained within the Covered Software, or\n any notices of licensing or any descriptive text giving\n attribution to any Contributor or the Initial Developer.\n\n 3.4. Application of Additional Terms.\n\n You may not offer or impose any terms on any Covered\n Software in Source Code form that alters or restricts the\n applicable version of this License or the recipients\"\n rights hereunder. You may choose to offer, and to charge a\n fee for, warranty, support, indemnity or liability\n obligations to one or more recipients of Covered Software.\n However, you may do so only on Your own behalf, and not on\n behalf of the Initial Developer or any Contributor. You\n must make it absolutely clear that any such warranty,\n support, indemnity or liability obligation is offered by\n You alone, and You hereby agree to indemnify the Initial\n Developer and every Contributor for any liability incurred\n by the Initial Developer or such Contributor as a result of\n warranty, support, indemnity or liability terms You offer.\n\n\n 3.5. Distribution of Executable Versions.\n\n You may distribute the Executable form of the Covered\n Software under the terms of this License or under the terms\n of a license of Your choice, which may contain terms\n different from this License, provided that You are in\n compliance with the terms of this License and that the\n license for the Executable form does not attempt to limit\n or alter the recipient\"s rights in the Source Code form\n from the rights set forth in this License. If You\n distribute the Covered Software in Executable form under a\n different license, You must make it absolutely clear that\n any terms which differ from this License are offered by You\n alone, not by the Initial Developer or Contributor. You\n hereby agree to indemnify the Initial Developer and every\n Contributor for any liability incurred by the Initial\n Developer or such Contributor as a result of any such terms\n You offer.\n\n 3.6. Larger Works.\n\n You may create a Larger Work by combining Covered Software\n with other code not governed by the terms of this License\n and distribute the Larger Work as a single product. In such\n a case, You must make sure the requirements of this License\n are fulfilled for the Covered Software.\n\n4. Versions of the License.\n\n 4.1. New Versions.\n\n Sun Microsystems, Inc. is the initial license steward and\n may publish revised and/or new versions of this License\n from time to time. Each version will be given a\n distinguishing version number. Except as provided in\n Section 4.3, no one other than the license steward has the\n right to modify this License.\n\n 4.2. Effect of New Versions.\n\n You may always continue to use, distribute or otherwise\n make the Covered Software available under the terms of the\n version of the License under which You originally received\n the Covered Software. If the Initial Developer includes a\n notice in the Original Software prohibiting it from being\n distributed or otherwise made available under any\n subsequent version of the License, You must distribute and\n make the Covered Software available under the terms of the\n version of the License under which You originally received\n the Covered Software. Otherwise, You may also choose to\n use, distribute or otherwise make the Covered Software\n available under the terms of any subsequent version of the\n License published by the license steward.\n\n 4.3. Modified Versions.\n\n When You are an Initial Developer and You want to create a\n new license for Your Original Software, You may create and\n use a modified version of this License if You: (a) rename\n the license and remove any references to the name of the\n license steward (except to note that the license differs\n from this License); and (b) otherwise make it clear that\n the license contains terms which differ from this License.\n\n\n5. DISCLAIMER OF WARRANTY.\n\nCOVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\"\nBASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,\nINCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED\nSOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR\nPURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND\nPERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY\nCOVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE\nINITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF\nANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF\nWARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF\nANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS\nDISCLAIMER.\n\n6. TERMINATION.\n\n 6.1. This License and the rights granted hereunder will\n terminate automatically if You fail to comply with terms\n herein and fail to cure such breach within 30 days of\n becoming aware of the breach. Provisions which, by their\n nature, must remain in effect beyond the termination of\n this License shall survive.\n\n 6.2. If You assert a patent infringement claim (excluding\n declaratory judgment actions) against Initial Developer or\n a Contributor (the Initial Developer or Contributor against\n whom You assert such claim is referred to as \"Participant\")\n alleging that the Participant Software (meaning the\n Contributor Version where the Participant is a Contributor\n or the Original Software where the Participant is the\n Initial Developer) directly or indirectly infringes any\n patent, then any and all rights granted directly or\n indirectly to You by such Participant, the Initial\n Developer (if the Initial Developer is not the Participant)\n and all Contributors under Sections 2.1 and/or 2.2 of this\n License shall, upon 60 days notice from Participant\n terminate prospectively and automatically at the expiration\n of such 60 day notice period, unless if within such 60 day\n period You withdraw Your claim with respect to the\n Participant Software against such Participant either\n unilaterally or pursuant to a written agreement with\n Participant.\n\n 6.3. In the event of termination under Sections 6.1 or 6.2\n above, all end user licenses that have been validly granted\n by You or any distributor hereunder prior to termination\n (excluding licenses granted to You by any distributor)\n shall survive termination.\n\n7. LIMITATION OF LIABILITY.\n\nUNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE\nINITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF\nCOVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE\nLIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR\nCONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT\nLIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK\nSTOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\nCOMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\nINFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF\nLIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL\nINJURY RESULTING FROM SUCH PARTY\"S NEGLIGENCE TO THE EXTENT\nAPPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO\nNOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR\nCONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT\nAPPLY TO YOU.\n\n8. U.S. GOVERNMENT END USERS.\n\nThe Covered Software is a \"commercial item,\" as that term is\ndefined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial\ncomputer software\" (as that term is defined at 48 C.F.R. \"\n252.227-7014(a)(1)) and \"commercial computer software\ndocumentation\" as such terms are used in 48 C.F.R. 12.212 (Sept.\n1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1\nthrough 227.7202-4 (June 1995), all U.S. Government End Users\nacquire Covered Software with only those rights set forth herein.\nThis U.S. Government Rights clause is in lieu of, and supersedes,\nany other FAR, DFAR, or other clause or provision that addresses\nGovernment rights in computer software under this License.\n\n9. MISCELLANEOUS.\n\nThis License represents the complete agreement concerning subject\nmatter hereof. If any provision of this License is held to be\nunenforceable, such provision shall be reformed only to the\nextent necessary to make it enforceable. This License shall be\ngoverned by the law of the jurisdiction specified in a notice\ncontained within the Original Software (except to the extent\napplicable law, if any, provides otherwise), excluding such\njurisdiction\"s conflict-of-law provisions. Any litigation\nrelating to this License shall be subject to the jurisdiction of\nthe courts located in the jurisdiction and venue specified in a\nnotice contained within the Original Software, with the losing\nparty responsible for costs, including, without limitation, court\ncosts and reasonable attorneys\" fees and expenses. The\napplication of the United Nations Convention on Contracts for the\nInternational Sale of Goods is expressly excluded. Any law or\nregulation which provides that the language of a contract shall\nbe construed against the drafter shall not apply to this License.\nYou agree that You alone are responsible for compliance with the\nUnited States export administration regulations (and the export\ncontrol laws and regulation of any other countries) when You use,\ndistribute or otherwise make available any Covered Software.\n\n10. RESPONSIBILITY FOR CLAIMS.\n\nAs between Initial Developer and the Contributors, each party is\nresponsible for claims and damages arising, directly or\nindirectly, out of its utilization of rights under this License\nand You agree to work with Initial Developer and Contributors to\ndistribute such responsibility on an equitable basis. Nothing\nherein is intended or shall be deemed to constitute any admission\nof liability.\n\n-----\n\nCOMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)" + }, + { + "score": 77.19, + "start_line": 793, + "end_line": 1070, + "matched_length": 1993, + "match_coverage": 77.19, + "matcher": "3-seq", + "license_expression": "cddl-1.0", + "rule_identifier": "cddl-1.0_9.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cddl-1.0_9.RULE", + "matched_text": "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.[1]\n1. Definitions.\n\n 1.1. \"Contributor\" means each individual or entity that creates or\n contributes to the creation of Modifications.\n\n 1.2. \"Contributor Version\" means the combination of the Original\n Software, prior Modifications used by a Contributor (if any), and\n the Modifications made by that particular Contributor.\n\n 1.3. \"Covered Software\" means (a) the Original Software, or (b)\n Modifications, or (c) the combination of files containing Original\n Software with files containing Modifications, in each case including\n portions thereof.\n\n 1.4. \"Executable\" means the Covered Software in any form other than\n Source Code.\n\n 1.5. \"Initial Developer\" means the individual or entity that first\n makes Original Software available under this License.\n\n 1.6. \"Larger Work\" means a work which combines Covered Software or\n portions thereof with code not governed by the terms of this License.\n\n 1.7. \"License\" means this document.\n\n 1.8. \"Licensable\" means having the right to grant, to the maximum\n extent possible, whether at the time of the initial grant or\n subsequently acquired, any and all of the rights conveyed herein.\n\n 1.9. \"Modifications\" means the Source Code and Executable form of\n any of the following:\n\n A. Any file that results from an addition to, deletion from or\n modification of the contents of a file containing Original Software\n or previous Modifications;\n\n B. Any new file that contains any part of the Original Software or\n previous Modification; or\n\n C. Any new file that is contributed or otherwise made available\n under the terms of this License.\n\n 1.10. \"Original Software\" means the Source Code and Executable form\n of computer software code that is originally released under this\n License.\n\n 1.11. \"Patent Claims\" means any patent claim(s), now owned or\n hereafter acquired, including without limitation, method, process,\n and apparatus claims, in any patent Licensable by grantor.\n\n 1.12. \"Source Code\" means (a) the common form of computer software\n code in which modifications are made and (b) associated\n documentation included in or with such code.\n\n 1.13. \"You\" (or \"Your\") means an individual or a legal entity\n exercising rights under, and complying with all of the terms of,\n this License. For legal entities, \"You\" includes any entity which\n controls, is controlled by, or is under common control with You. For\n purposes of this definition, \"control\" means (a) the power, direct\n or indirect, to cause the direction or management of such entity,\n whether by contract or otherwise, or (b) ownership of more than\n fifty percent (50%) of the outstanding shares or beneficial\n ownership of such entity.\n\n2. License Grants.\n\n 2.1. The Initial Developer Grant.\n\n Conditioned upon Your compliance with Section 3.1 below and subject\n to third party intellectual property claims, the Initial Developer\n hereby grants You a world-wide, royalty-free, non-exclusive license:\n\n (a) under intellectual property rights (other than patent or\n trademark) Licensable by Initial Developer, to use, reproduce,\n modify, display, perform, sublicense and distribute the Original\n Software (or portions thereof), with or without Modifications,\n and/or as part of a Larger Work; and\n\n (b) under Patent Claims infringed by the making, using or selling of\n Original Software, to make, have made, use, practice, sell, and\n offer for sale, and/or otherwise dispose of the Original Software\n (or portions thereof).\n\n (c) The licenses granted in Sections 2.1(a) and (b) are effective on\n the date Initial Developer first distributes or otherwise makes the\n Original Software available to a third party under the terms of this\n License.\n\n (d) Notwithstanding Section 2.1(b) above, no patent license is\n granted: (1) for code that You delete from the Original Software, or\n (2) for infringements caused by: (i) the modification of the\n Original Software, or (ii) the combination of the Original Software\n with other software or devices.\n\n 2.2. Contributor Grant.\n\n Conditioned upon Your compliance with Section 3.1 below and subject\n to third party intellectual property claims, each Contributor hereby\n grants You a world-wide, royalty-free, non-exclusive license:\n\n (a) under intellectual property rights (other than patent or\n trademark) Licensable by Contributor to use, reproduce, modify,\n display, perform, sublicense and distribute the Modifications\n created by such Contributor (or portions thereof), either on an\n unmodified basis, with other Modifications, as Covered Software\n and/or as part of a Larger Work; and\n\n (b) under Patent Claims infringed by the making, using, or selling\n of Modifications made by that Contributor either alone and/or in\n combination with its Contributor Version (or portions of such\n combination), to make, use, sell, offer for sale, have made, and/or\n otherwise dispose of: (1) Modifications made by that Contributor (or\n portions thereof); and (2) the combination of Modifications made by\n that Contributor with its Contributor Version (or portions of such\n combination).\n\n (c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective\n on the date Contributor first distributes or otherwise makes the\n Modifications available to a third party.\n\n (d) Notwithstanding Section 2.2(b) above, no patent license is\n granted: (1) for any code that Contributor has deleted from the\n Contributor Version; (2) for infringements caused by: (i) third\n party modifications of Contributor Version, or (ii) the combination\n of Modifications made by that Contributor with other software\n (except as part of the Contributor Version) or other devices; or (3)\n under Patent Claims infringed by Covered Software in the absence of\n Modifications made by that Contributor.\n\n3. Distribution Obligations.\n\n 3.1. Availability of Source Code.\n\n Any Covered Software that You distribute or otherwise make available\n in Executable form must also be made available in Source Code form\n and that Source Code form must be distributed only under the terms\n of this License. You must include a copy of this License with every\n copy of the Source Code form of the Covered Software You distribute\n or otherwise make available. You must inform recipients of any such\n Covered Software in Executable form as to how they can obtain such\n Covered Software in Source Code form in a reasonable manner on or\n through a medium customarily used for software exchange.\n\n 3.2. Modifications.\n\n The Modifications that You create or to which You contribute are\n governed by the terms of this License. You represent that You\n believe Your Modifications are Your original creation(s) and/or You\n have sufficient rights to grant the rights conveyed by this License.\n\n 3.3. Required Notices.\n\n You must include a notice in each of Your Modifications that\n identifies You as the Contributor of the Modification. You may not\n remove or alter any copyright, patent or trademark notices contained\n within the Covered Software, or any notices of licensing or any\n descriptive text giving attribution to any Contributor or the\n Initial Developer.\n\n 3.4. Application of Additional Terms.\n\n You may not offer or impose any terms on any Covered Software in\n Source Code form that alters or restricts the applicable version of\n this License or the recipients' rights hereunder. You may choose to\n offer, and to charge a fee for, warranty, support, indemnity or\n liability obligations to one or more recipients of Covered Software.\n However, you may do so only on Your own behalf, and not on behalf of\n the Initial Developer or any Contributor. You must make it\n absolutely clear that any such warranty, support, indemnity or\n liability obligation is offered by You alone, and You hereby agree\n to indemnify the Initial Developer and every Contributor for any\n liability incurred by the Initial Developer or such Contributor as a\n result of warranty, support, indemnity or liability terms You offer.\n\n 3.5. Distribution of Executable Versions.\n\n You may distribute the Executable form of the Covered Software under\n the terms of this License or under the terms of a license of Your\n choice, which may contain terms different from this License,\n provided that You are in compliance with the terms of this License\n and that the license for the Executable form does not attempt to\n limit or alter the recipient's rights in the Source Code form from\n the rights set forth in this License. If You distribute the Covered\n Software in Executable form under a different license, You must make\n it absolutely clear that any terms which differ from this License\n are offered by You alone, not by the Initial Developer or\n Contributor. You hereby agree to indemnify the Initial Developer and\n every Contributor for any liability incurred by the Initial\n Developer or such Contributor as a result of any such terms You offer.\n\n 3.6. Larger Works.\n\n You may create a Larger Work by combining Covered Software with\n other code not governed by the terms of this License and distribute\n the Larger Work as a single product. In such a case, You must make\n sure the requirements of this License are fulfilled for the Covered\n Software.\n\n4. Versions of the License.\n\n 4.1. New Versions.\n\n [Oracle] is the initial license steward and may publish revised and/or\n new versions of this License from time to time. Each version will be\n given a distinguishing version number. Except as provided in Section\n 4.3, no one other than the license steward has the right to modify\n this License.\n\n 4.2. Effect of New Versions.\n\n You may always continue to use, distribute or otherwise make the\n Covered Software available under the terms of the version of the\n License under which You originally received the Covered Software. If\n the Initial Developer includes a notice in the Original Software\n prohibiting it from being distributed or otherwise made available\n under any subsequent version of the License, You must distribute and\n make the Covered Software available under the terms of the version\n of the License under which You originally received the Covered\n Software. Otherwise, You may also choose to use, distribute or\n otherwise make the Covered Software available under the terms of any\n subsequent version of the License published by the license steward.\n\n 4.3. Modified Versions.\n\n When You are an Initial Developer and You want to create a new\n license for Your Original Software, You may create and use a\n modified version of this License if You: (a) rename the license and\n remove any references to the name of the license steward (except to\n note that the license differs from this License); and (b) otherwise\n make it clear that the license contains terms which differ from this\n License.\n\n5. DISCLAIMER OF WARRANTY.\n\n COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\" BASIS,\n WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,\n INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE\n IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR\n NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF\n THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE\n DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY\n OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING,\n REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN\n ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS\n AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.\n\n6. TERMINATION.\n\n 6.1. This License and the rights granted hereunder will terminate\n automatically if You fail to comply with terms herein and fail to\n cure such breach within 30 days of becoming aware of the breach.\n Provisions which, by their nature, must remain in effect beyond the\n termination of this License shall survive.\n\n 6.2. If You assert a patent infringement claim (excluding\n declaratory judgment actions) against Initial Developer or a\n Contributor (the Initial Developer or Contributor against whom You\n assert such claim is referred to as \"Participant\") alleging that the\n Participant Software (meaning the Contributor Version where the\n Participant is a Contributor or the Original Software where the\n Participant is the Initial Developer) directly or indirectly\n infringes any patent, then any and all rights granted directly or\n indirectly to You by such Participant, the Initial Developer (if the\n Initial Developer is not the Participant) and all Contributors under\n Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice\n from Participant terminate prospectively and automatically at the\n expiration of such 60 day notice period, unless if within such 60\n day period You withdraw Your claim with respect to the Participant\n Software against such Participant either unilaterally or pursuant to\n a written agreement with Participant.\n\n 6.3. [If] [You] [assert] a [patent] [infringement] [claim] [against] [Participant]\n [alleging] [that] [the] [Participant] [Software] [directly] [or] [indirectly]\n [infringes] [any] [patent] [where] [such] [claim] [is] [resolved] ([such] [as] [by]\n [license] [or] [settlement]) [prior] [to] [the] [initiation] [of] [patent]\n [infringement] [litigation], [then] [the] [reasonable] [value] [of] [the] licenses\n granted" + } + ], + "detection_log": [], + "identifier": "apache_2_0_and_bsd_simplified_and_bsd_new_and_cc0_1_0_and_cddl_1_0-f951927d-cae2-3f00-e8ae-9c0e0717482e" + }, + { + "license_expression": "cddl-1.0 AND bsd-new", + "matches": [ + { + "score": 21.34, + "start_line": 1077, + "end_line": 1141, + "matched_length": 551, + "match_coverage": 21.34, + "matcher": "3-seq", + "license_expression": "cddl-1.0", + "rule_identifier": "cddl-1.0_9.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cddl-1.0_9.RULE", + "matched_text": "to You by any distributor) shall survive termination.\n\n7. LIMITATION OF LIABILITY.\n\n UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE\n INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF\n COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE\n TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR\n CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT\n LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER\n FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR\n LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE\n POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT\n APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH\n PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH\n LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR\n LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION\n AND LIMITATION MAY NOT APPLY TO YOU.\n\n8. U.S. GOVERNMENT END USERS.\n\n The Covered Software is a \"commercial item,\" as that term is defined\n in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial computer\n software\" (as that term is defined at 48 C.F.R. \ufffd\ufffd\n 252.227-7014(a)(1)) and \"commercial computer software documentation\"\n as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent\n with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4\n (June 1995), all U.S. Government End Users acquire Covered Software\n with only those rights set forth herein. This U.S. Government Rights\n clause is in lieu of, and supersedes, any other FAR, DFAR, or other\n clause or provision that addresses Government rights in computer\n software under this License.\n\n9. MISCELLANEOUS.\n\n This License represents the complete agreement concerning subject\n matter hereof. If any provision of this License is held to be\n unenforceable, such provision shall be reformed only to the extent\n necessary to make it enforceable. This License shall be governed by\n the law of the jurisdiction specified in a notice contained within\n the Original Software (except to the extent applicable law, if any,\n provides otherwise), excluding such jurisdiction's conflict-of-law\n provisions. Any litigation relating to this License shall be subject\n to the jurisdiction of the courts located in the jurisdiction and\n venue specified in a notice contained within the Original Software,\n with the losing party responsible for costs, including, without\n limitation, court costs and reasonable attorneys' fees and expenses.\n The application of the United Nations Convention on Contracts for\n the International Sale of Goods is expressly excluded. Any law or\n regulation which provides that the language of a contract shall be\n construed against the drafter shall not apply to this License. You\n agree that You alone are responsible for compliance with the United\n States export administration regulations (and the export control\n laws and regulation of any other countries) when You use, distribute\n or otherwise make available any Covered Software.\n\n10. RESPONSIBILITY FOR CLAIMS.\n\n As between Initial Developer and the Contributors, each party is\n responsible for claims and damages arising, directly or indirectly,\n out of its utilization of rights under this License and You agree to\n work with Initial Developer and Contributors to distribute such\n responsibility on an equitable basis. Nothing herein is intended or\n shall be deemed to constitute any admission of liability." + }, + { + "score": 100.0, + "start_line": 1145, + "end_line": 1145, + "matched_length": 6, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "bsd-new", + "rule_identifier": "edl-1.0_1.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/edl-1.0_1.RULE", + "matched_text": "Eclipse Distribution License - v 1.0" + } + ], + "detection_log": [], + "identifier": "cddl_1_0_and_bsd_new-9e6d52c5-3187-cfd8-4a75-b84523a02a82" + }, + { + "license_expression": "bsd-new AND epl-2.0 AND elastic-license-v2", + "matches": [ + { + "score": 100.0, + "start_line": 1151, + "end_line": 1174, + "matched_length": 214, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "bsd-new", + "rule_identifier": "edl-1.0_2.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/edl-1.0_2.RULE", + "matched_text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n Neither the name of the Eclipse Foundation, Inc. nor the names of its\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,\nOR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY\nOF SUCH DAMAGE." + }, + { + "score": 100.0, + "start_line": 1178, + "end_line": 1418, + "matched_length": 2102, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "epl-2.0", + "rule_identifier": "epl-2.0_9.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/epl-2.0_9.RULE", + "matched_text": "Eclipse Public License - v 2.0\n\nTHE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE\nPUBLIC LICENSE (\"AGREEMENT\"). ANY USE, REPRODUCTION OR DISTRIBUTION OF\nTHE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.\n\n1. DEFINITIONS \"Contribution\" means:\n\na) in the case of the initial Contributor, the initial content\nDistributed under this Agreement, and b) in the case of each subsequent\nContributor: i) changes to the Program, and ii) additions to the\nProgram; where such changes and/or additions to the Program originate\nfrom and are Distributed by that particular Contributor. A Contribution\n\"originates\" from a Contributor if it was added to the Program by such\nContributor itself or anyone acting on such Contributor's behalf.\nContributions do not include changes or additions to the Program that\nare not Modified Works.\n\n\"Contributor\" means any person or entity that Distributes the Program.\n\n\"Licensed Patents\" mean patent claims licensable by a Contributor which\nare necessarily infringed by the use or sale of its Contribution alone\nor when combined with the Program.\n\n\"Program\" means the Contributions Distributed in accordance with this\nAgreement.\n\n\"Recipient\" means anyone who receives the Program under this Agreement\nor any Secondary License (as applicable), including Contributors.\n\n\"Derivative Works\" shall mean any work, whether in Source Code or other\nform, that is based on (or derived from) the Program and for which the\neditorial revisions, annotations, elaborations, or other modifications\nrepresent, as a whole, an original work of authorship.\n\n\"Modified Works\" shall mean any work in Source Code or other form that\nresults from an addition to, deletion from, or modification of the\ncontents of the Program, including, for purposes of clarity any new file\nin Source Code form that contains any contents of the Program. Modified\nWorks shall not include works that contain only declarations,\ninterfaces, types, classes, structures, or files of the Program solely\nin each case in order to link to, bind by name, or subclass the Program\nor Modified Works thereof.\n\n\"Distribute\" means the acts of a) distributing or b) making available in\nany manner that enables the transfer of a copy.\n\n\"Source Code\" means the form of a Program preferred for making\nmodifications, including but not limited to software source code,\ndocumentation source, and configuration files.\n\n\"Secondary License\" means either the GNU General Public License, Version\n2.0, or any later versions of that license, including any exceptions or\nadditional permissions as identified by the initial Contributor.\n\n2. GRANT OF RIGHTS a) Subject to the terms of this Agreement, each\nContributor hereby grants Recipient a non-exclusive, worldwide,\nroyalty-free copyright license to reproduce, prepare Derivative Works\nof, publicly display, publicly perform, Distribute and sublicense the\nContribution of such Contributor, if any, and such Derivative Works.\nb) Subject to the terms of this Agreement, each Contributor hereby\ngrants Recipient a non-exclusive, worldwide, royalty-free patent\nlicense under Licensed Patents to make, use, sell, offer to sell,\nimport and otherwise transfer the Contribution of such Contributor,\nif any, in Source Code or other form. This patent license shall apply\nto the combination of the Contribution and the Program if, at the\ntime the Contribution is added by the Contributor, such addition of\nthe Contribution causes such combination to be covered by the\nLicensed Patents. The patent license shall not apply to any other\ncombinations which include the Contribution. No hardware per se is\nlicensed hereunder. c) Recipient understands that although each\nContributor grants the licenses to its Contributions set forth\nherein, no assurances are provided by any Contributor that the\nProgram does not infringe the patent or other intellectual property\nrights of any other entity. Each Contributor disclaims any liability\nto Recipient for claims brought by any other entity based on\ninfringement of intellectual property rights or otherwise. As a\ncondition to exercising the rights and licenses granted hereunder,\neach Recipient hereby assumes sole responsibility to secure any other\nintellectual property rights needed, if any. For example, if a third\nparty patent license is required to allow Recipient to Distribute the\nProgram, it is Recipient's responsibility to acquire that license\nbefore distributing the Program. d) Each Contributor represents that\nto its knowledge it has sufficient copyright rights in its\nContribution, if any, to grant the copyright license set forth in\nthis Agreement. e) Notwithstanding the terms of any Secondary\nLicense, no Contributor makes additional grants to any Recipient\n(other than those set forth in this Agreement) as a result of such\nRecipient's receipt of the Program under the terms of a Secondary\nLicense (if permitted under the terms of Section 3).\n3. REQUIREMENTS 3.1 If a Contributor Distributes the Program in any\nform, then: a) the Program must also be made available as Source\nCode, in accordance with section 3.2, and the Contributor must\naccompany the Program with a statement that the Source Code for the\nProgram is available under this Agreement, and informs Recipients how\nto obtain it in a reasonable manner on or through a medium\ncustomarily used for software exchange; and b) the Contributor may\nDistribute the Program under a license different than this Agreement,\nprovided that such license: i) effectively disclaims on behalf of all\nother Contributors all warranties and conditions, express and\nimplied, including warranties or conditions of title and\nnon-infringement, and implied warranties or conditions of\nmerchantability and fitness for a particular purpose; ii) effectively\nexcludes on behalf of all other Contributors all liability for\ndamages, including direct, indirect, special, incidental and\nconsequential damages, such as lost profits; iii) does not attempt to\nlimit or alter the recipients' rights in the Source Code under\nsection 3.2; and iv) requires any subsequent distribution of the\nProgram by any party to be under a license that satisfies the\nrequirements of this section 3. 3.2 When the Program is Distributed\nas Source Code: a) it must be made available under this Agreement, or\nif the Program (i) is combined with other material in a separate file\nor files made available under a Secondary License, and (ii) the\ninitial Contributor attached to the Source Code the notice described\nin Exhibit A of this Agreement, then the Program may be made\navailable under the terms of such Secondary Licenses, and b) a copy\nof this Agreement must be included with each copy of the Program. 3.3\nContributors may not remove or alter any copyright, patent,\ntrademark, attribution notices, disclaimers of warranty, or\nlimitations of liability (\"notices\") contained within the Program\nfrom any copy of the Program which they Distribute, provided that\nContributors may add their own appropriate notices.\n4. COMMERCIAL DISTRIBUTION Commercial distributors of software may\naccept certain responsibilities with respect to end users, business\npartners and the like. While this license is intended to facilitate\nthe commercial use of the Program, the Contributor who includes the\nProgram in a commercial product offering should do so in a manner\nwhich does not create potential liability for other Contributors.\nTherefore, if a Contributor includes the Program in a commercial\nproduct offering, such Contributor (\"Commercial Contributor\") hereby\nagrees to defend and indemnify every other Contributor (\"Indemnified\nContributor\") against any losses, damages and costs (collectively\n\"Losses\") arising from claims, lawsuits and other legal actions\nbrought by a third party against the Indemnified Contributor to the\nextent caused by the acts or omissions of such Commercial Contributor\nin connection with its distribution of the Program in a commercial\nproduct offering. The obligations in this section do not apply to any\nclaims or Losses relating to any actual or alleged intellectual\nproperty infringement. In order to qualify, an Indemnified\nContributor must: a) promptly notify the Commercial Contributor in\nwriting of such claim, and b) allow the Commercial Contributor to\ncontrol, and cooperate with the Commercial Contributor in, the\ndefense and any related settlement negotiations. The Indemnified\nContributor may participate in any such claim at its own expense.\n\nFor example, a Contributor might include the Program in a commercial\nproduct offering, Product X. That Contributor is then a Commercial\nContributor. If that Commercial Contributor then makes performance\nclaims, or offers warranties related to Product X, those performance\nclaims and warranties are such Commercial Contributor's responsibility\nalone. Under this section, the Commercial Contributor would have to\ndefend claims against the other Contributors related to those\nperformance claims and warranties, and if a court requires any other\nContributor to pay any damages as a result, the Commercial Contributor\nmust pay those damages.\n\n5. NO WARRANTY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO\nTHE EXTENT PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN\n\"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER\nEXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR\nCONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR\nA PARTICULAR PURPOSE. Each Recipient is solely responsible for\ndetermining the appropriateness of using and distributing the Program\nand assumes all risks associated with its exercise of rights under\nthis Agreement, including but not limited to the risks and costs of\nprogram errors, compliance with applicable laws, damage to or loss of\ndata, programs or equipment, and unavailability or interruption of\noperations.\n\n6. DISCLAIMER OF LIABILITY EXCEPT AS EXPRESSLY SET FORTH IN THIS\nAGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, NEITHER\nRECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED\nAND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY\nWAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF\nANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n7. GENERAL If any provision of this Agreement is invalid or\nunenforceable under applicable law, it shall not affect the validity\nor enforceability of the remainder of the terms of this Agreement,\nand without further action by the parties hereto, such provision\nshall be reformed to the minimum extent necessary to make such\nprovision valid and enforceable.\n\nIf Recipient institutes patent litigation against any entity (including\na cross-claim or counterclaim in a lawsuit) alleging that the Program\nitself (excluding combinations of the Program with other software or\nhardware) infringes such Recipient's patent(s), then such Recipient's\nrights granted under Section 2(b) shall terminate as of the date such\nlitigation is filed.\n\nAll Recipient's rights under this Agreement shall terminate if it fails\nto comply with any of the material terms or conditions of this Agreement\nand does not cure such failure in a reasonable period of time after\nbecoming aware of such noncompliance. If all Recipient's rights under\nthis Agreement terminate, Recipient agrees to cease use and distribution\nof the Program as soon as reasonably practicable. However, Recipient's\nobligations under this Agreement and any licenses granted by Recipient\nrelating to the Program shall continue and survive.\n\nEveryone is permitted to copy and distribute copies of this Agreement,\nbut in order to avoid inconsistency the Agreement is copyrighted and may\nonly be modified in the following manner. The Agreement Steward reserves\nthe right to publish new versions (including revisions) of this\nAgreement from time to time. No one other than the Agreement Steward has\nthe right to modify this Agreement. The Eclipse Foundation is the\ninitial Agreement Steward. The Eclipse Foundation may assign the\nresponsibility to serve as the Agreement Steward to a suitable separate\nentity. Each new version of the Agreement will be given a distinguishing\nversion number. The Program (including Contributions) may always be\nDistributed subject to the version of the Agreement under which it was\nreceived. In addition, after a new version of the Agreement is\npublished, Contributor may elect to Distribute the Program (including\nits Contributions) under the new version.\n\nExcept as expressly stated in Sections 2(a) and 2(b) above, Recipient\nreceives no rights or licenses to the intellectual property of any\nContributor under this Agreement, whether expressly, by implication,\nestoppel or otherwise. All rights in the Program not expressly granted\nunder this Agreement are reserved. Nothing in this Agreement is intended\nto be enforceable by any entity that is not a Contributor or Recipient.\nNo third-party beneficiary rights are created under this Agreement.\n\nExhibit A - Form of Secondary Licenses Notice \"This Source Code may also\nbe made available under the following Secondary Licenses when the\nconditions for such availability set forth in the Eclipse Public\nLicense, v. 2.0 are satisfied: {name license(s), version(s), and\nexceptions or additional permissions here}.\"\n\nSimply including a copy of this Agreement, including this Exhibit A is\nnot sufficient to license the Source Code under Secondary Licenses.\n\nIf it is not possible or desirable to put the notice in a particular\nfile, then You may include the notice in a location (such as a LICENSE\nfile in a relevant directory) where a recipient would be likely to look\nfor such a notice.\n\nYou may add additional accurate notices of copyright ownership." + }, + { + "score": 100.0, + "start_line": 1422, + "end_line": 1514, + "matched_length": 618, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "elastic-license-v2", + "rule_identifier": "elastic-license-v2.LICENSE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/elastic-license-v2.LICENSE", + "matched_text": "Elastic License 2.0\n\nURL: https://www.elastic.co/licensing/elastic-license\n\n## Acceptance\n\nBy using the software, you agree to all of the terms and conditions below.\n\n## Copyright License\n\nThe licensor grants you a non-exclusive, royalty-free, worldwide,\nnon-sublicensable, non-transferable license to use, copy, distribute, make\navailable, and prepare derivative works of the software, in each case subject to\nthe limitations and conditions below.\n\n## Limitations\n\nYou may not provide the software to third parties as a hosted or managed\nservice, where the service provides users with access to any substantial set of\nthe features or functionality of the software.\n\nYou may not move, change, disable, or circumvent the license key functionality\nin the software, and you may not remove or obscure any functionality in the\nsoftware that is protected by the license key.\n\nYou may not alter, remove, or obscure any licensing, copyright, or other notices\nof the licensor in the software. Any use of the licensor\ufffd\ufffd\ufffds trademarks is subject\nto applicable law.\n\n## Patents\n\nThe licensor grants you a license, under any patent claims the licensor can\nlicense, or becomes able to license, to make, have made, use, sell, offer for\nsale, import and have imported the software, in each case subject to the\nlimitations and conditions in this license. This license does not cover any\npatent claims that you cause to be infringed by modifications or additions to\nthe software. If you or your company make any written claim that the software\ninfringes or contributes to infringement of any patent, your patent license for\nthe software granted under these terms ends immediately. If your company makes\nsuch a claim, your patent license ends immediately for work on behalf of your\ncompany.\n\n## Notices\n\nYou must ensure that anyone who gets a copy of any part of the software from you\nalso gets a copy of these terms.\n\nIf you modify the software, you must include in any modified copies of the\nsoftware prominent notices stating that you have modified the software.\n\n## No Other Rights\n\nThese terms do not imply any licenses other than those expressly granted in\nthese terms.\n\n## Termination\n\nIf you use the software in violation of these terms, such use is not licensed,\nand your licenses will automatically terminate. If the licensor provides you\nwith a notice of your violation, and you cease all violation of this license no\nlater than 30 days after you receive that notice, your licenses will be\nreinstated retroactively. However, if you violate these terms after such\nreinstatement, any additional violation of these terms will cause your licenses\nto terminate automatically and permanently.\n\n## No Liability\n\n*As far as the law allows, the software comes as is, without any warranty or\ncondition, and the licensor will not be liable to you for any damages arising\nout of these terms or the use or nature of the software, under any kind of\nlegal claim.*\n\n## Definitions\n\nThe **licensor** is the entity offering these terms, and the **software** is the\nsoftware the licensor makes available under these terms, including any portion\nof it.\n\n**you** refers to the individual or entity agreeing to these terms.\n\n**your company** is any legal entity, sole proprietorship, or other kind of\norganization that you work for, plus all organizations that have control over,\nare under the control of, or are under common control with that\norganization. **control** means ownership of substantially all the assets of an\nentity, or the power to direct its management and policies by vote, contract, or\notherwise. Control can be direct or indirect.\n\n**your licenses** are all the licenses granted to you for the software under\nthese terms.\n\n**use** means anything you do with the software requiring one of your licenses.\n\n**trademark** means trademarks, service marks, and similar rights." + } + ], + "detection_log": [], + "identifier": "bsd_new_and_epl_2_0_and_elastic_license_v2-4bc34854-8217-f1b9-089a-2543c4369b4a" + }, + { + "license_expression": "bsd-new AND json AND lgpl-2.0 AND mit AND gpl-2.0 AND universal-foss-exception-1.0", + "matches": [ + { + "score": 100.0, + "start_line": 1522, + "end_line": 1546, + "matched_length": 212, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "bsd-new", + "rule_identifier": "bsd-new_166.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-new_166.RULE", + "matched_text": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\nnotice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\ncopyright notice, this list of conditions and the following disclaimer\nin the documentation and/or other materials provided with the\ndistribution.\n * Neither the name of Google Inc. nor the names of its\ncontributors may be used to endorse or promote products derived from\nthis software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." + }, + { + "score": 100.0, + "start_line": 1550, + "end_line": 1550, + "matched_length": 2, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "json", + "rule_identifier": "json_5.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/json_5.RULE", + "matched_text": "JSON License" + }, + { + "score": 100.0, + "start_line": 1553, + "end_line": 1573, + "matched_length": 170, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "json", + "rule_identifier": "json.LICENSE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/json.LICENSE", + "matched_text": "Permission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files\n(the \"Software\"), to deal in the Software without restriction,\nincluding without limitation the rights to use, copy, modify, merge,\npublish, distribute, sublicense, and/or sell copies of the Software,\nand to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nThe Software shall be used for Good, not Evil.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE\nAND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS\nBE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF\nOR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE." + }, + { + "score": 100.0, + "start_line": 1577, + "end_line": 2057, + "matched_length": 4102, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "lgpl-2.0", + "rule_identifier": "lgpl-2.0.LICENSE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.0.LICENSE", + "matched_text": "GNU LIBRARY GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 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[This is the first released version of the library GPL. It is\n numbered 2 because it goes with version 2 of the ordinary GPL.]\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 Library General Public License, applies to some\nspecially designated Free Software Foundation software, and to any\nother libraries whose authors decide to use it. You can use it for\nyour libraries, 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\nyou 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 a program 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 Our method of protecting your rights has two steps: (1) copyright\nthe library, and (2) offer you this license which gives you legal\npermission to copy, distribute and/or modify the library.\n\n Also, for each distributor's protection, we want to make certain\nthat everyone understands that there is no warranty for this free\nlibrary. If the library is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original\nversion, so that any problems introduced by others will not reflect on\nthe original authors' reputations.\n\n Finally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that companies distributing free\nsoftware will individually obtain patent licenses, thus in effect\ntransforming the program into proprietary software. To prevent this,\nwe have made it clear that any patent must be licensed for everyone's\nfree use or not licensed at all.\n\n Most GNU software, including some libraries, is covered by the ordinary\nGNU General Public License, which was designed for utility programs. This\nlicense, the GNU Library General Public License, applies to certain\ndesignated libraries. This license is quite different from the ordinary\none; be sure to read it in full, and don't assume that anything in it is\nthe same as in the ordinary license.\n\n The reason we have a separate public license for some libraries is that\nthey blur the distinction we usually make between modifying or adding to a\nprogram and simply using it. Linking a program with a library, without\nchanging the library, is in some sense simply using the library, and is\nanalogous to running a utility program or application program. However, in\na textual and legal sense, the linked executable is a combined work, a\nderivative of the original library, and the ordinary General Public License\ntreats it as such.\n\n Because of this blurred distinction, using the ordinary General\nPublic License for libraries did not effectively promote software\nsharing, because most developers did not use the libraries. We\nconcluded that weaker conditions might promote sharing better.\n\n However, unrestricted linking of non-free programs would deprive the\nusers of those programs of all benefit from the free status of the\nlibraries themselves. This Library General Public License is intended to\npermit developers of non-free programs to use free libraries, while\npreserving your freedom as a user of such programs to change the free\nlibraries that are incorporated in them. (We have not seen how to achieve\nthis as regards changes in header files, but we have achieved it as regards\nchanges in the actual functions of the Library.) The hope is that this\nwill lead to faster development of free libraries.\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, while the latter only\nworks together with the library.\n\n Note that it is possible for a library to be covered by the ordinary\nGeneral Public License rather than by this special one.\n\n GNU LIBRARY GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any software library which\ncontains a notice placed by the copyright holder or other authorized\nparty saying it may be distributed under the terms of this Library\nGeneral Public License (also called \"this License\"). Each licensee is\naddressed 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 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 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 6. As an exception to the Sections above, you may also compile 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) 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 c) 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 d) 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 source code distributed need not include anything that is normally\ndistributed (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 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 to\nthis License.\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 Library 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 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 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 Library General Public\n License as published by the Free Software Foundation; either\n version 2 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 Library General Public License for more details.\n\n You should have received a copy of the GNU Library 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!" + }, + { + "score": 100.0, + "start_line": 2061, + "end_line": 2061, + "matched_length": 3, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "mit", + "rule_identifier": "mit_27.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_27.RULE", + "matched_text": "The MIT License" + }, + { + "score": 100.0, + "start_line": 2063, + "end_line": 2080, + "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\ncopy 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 included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\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." + }, + { + "score": 100.0, + "start_line": 2084, + "end_line": 2422, + "matched_length": 2931, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "gpl-2.0", + "rule_identifier": "gpl-2.0.LICENSE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/gpl-2.0.LICENSE", + "matched_text": "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." + }, + { + "score": 100.0, + "start_line": 2426, + "end_line": 2472, + "matched_length": 502, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "universal-foss-exception-1.0", + "rule_identifier": "universal-foss-exception-1.0.LICENSE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/universal-foss-exception-1.0.LICENSE", + "matched_text": "The Universal FOSS Exception, Version 1.0\n\nIn addition to the rights set forth in the other license(s) included\nin the distribution for this software, data, and/or documentation\n(collectively the \"Software,\" and such licenses collectively with this\nadditional permission the \"Software License\"), the copyright holders\nwish to facilitate interoperability with other software, data, and/or\ndocumentation distributed with complete corresponding source under\na license that is OSI-approved and/or categorized by the FSF as free\n(collectively \"Other FOSS\"). We therefore hereby grant the following\nadditional permission with respect to the use and distribution of the Software\nwith Other FOSS, and the constants, function signatures, data structures and\nother invocation methods used to run or interact with each of them (as\nto each, such software's \"Interfaces\"):\n\n(i) The Software's Interfaces may, to the extent permitted by the license\nof the Other FOSS, be copied into, used and distributed in the Other FOSS\nin order to enable interoperability, without requiring a change to the license\nof the Other FOSS other than as to any Interfaces of the Software embedded therein.\nThe Software's Interfaces remain at all times under the Software License,\nincluding without limitation as used in the Other FOSS (which upon any such\nuse also then contains a portion of the Software under the Software License).\n\n(ii) The Other FOSS's Interfaces may, to the extent permitted by the license\nof the Other FOSS, be copied into, used and distributed in the Software in order\nto enable interoperability, without requiring that such Interfaces be licensed\nunder the terms of the Software License or otherwise altering their original terms,\nif this does not require any portion of the Software other than such Interfaces\nto be licensed under the terms other than the Software License.\n\n(iii) If only Interfaces and no other code is copied between the Software and\nthe Other FOSS in either direction, the use and/or distribution of the Software\nwith the Other FOSS shall not be deemed to require that the Other FOSS be licensed\nunder the license of the Software, other than as to any Interfaces of the Software\ncopied into the Other FOSS. This includes, by way of example and without limitation,\nstatically or dynamically linking the Software together with Other FOSS after\nenabling interoperability using the Interfaces of one or both, and distributing\nthe resulting combination under different licenses for the respective portions thereof.\n\nFor avoidance of doubt, a license which is OSI-approved or categorized by the FSF\nas free, includes, for the purpose of this permission, such licenses with additional\npermissions, and any license that has previously been so-approved or categorized\nas free, even if now deprecated or otherwise no longer recognized as approved or free.\nNothing in this additional permission grants any right to distribute any portion of\nthe Software on terms other than those of the Software License or grants any additional\npermission of any kind for use or distribution of the Software in conjunction with\nsoftware other than Other FOSS." + } + ], + "detection_log": [ + "possible-false-positive", + "not-license-clues-as-more-detections-present" + ], + "identifier": "bsd_new_and_json_and_lgpl_2_0_and_mit_and_gpl_2_0_and_universal_foss_exception_1_0-7f177f01-6de4-c901-7774-59a866e2ac8e" + } + ], + "license_clues": [], + "percentage_of_license_text": 99.01, + "copyrights": [ + { + "copyright": "Copyright (c) 2007, Eclipse Foundation, Inc.", + "start_line": 1147, + "end_line": 1147 + }, + { + "copyright": "Copyright (c) 2009 The Go Authors", + "start_line": 1520, + "end_line": 1520 + }, + { + "copyright": "Copyright (c) 2002 JSON.org", + "start_line": 1551, + "end_line": 1551 + }, + { + "copyright": "Copyright (c) 1991 Free Software Foundation, Inc.", + "start_line": 1580, + "end_line": 1580 + }, + { + "copyright": "copyrighted by the Free Software Foundation", + "start_line": 1984, + "end_line": 1984 + }, + { + "copyright": "Copyright (c) 1989, 1991 Free Software Foundation, Inc.", + "start_line": 2087, + "end_line": 2087 + }, + { + "copyright": "copyrighted by the Free Software Foundation", + "start_line": 2335, + "end_line": 2336 + } + ], + "holders": [ + { + "holder": "Eclipse Foundation, Inc.", + "start_line": 1147, + "end_line": 1147 + }, + { + "holder": "The Go Authors", + "start_line": 1520, + "end_line": 1520 + }, + { + "holder": "JSON.org", + "start_line": 1551, + "end_line": 1551 + }, + { + "holder": "Free Software Foundation, Inc.", + "start_line": 1580, + "end_line": 1580 + }, + { + "holder": "the Free Software Foundation", + "start_line": 1984, + "end_line": 1984 + }, + { + "holder": "Free Software Foundation, Inc.", + "start_line": 2087, + "end_line": 2087 + }, + { + "holder": "the Free Software Foundation", + "start_line": 2335, + "end_line": 2336 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/", + "start_line": 23, + "end_line": 23 + }, + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 215, + "end_line": 215 + }, + { + "url": "https://www.elastic.co/licensing/elastic-license", + "start_line": 1424, + "end_line": 1424 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com", + "type": "directory", + "name": "com", + "base_name": "com", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 27, + "dirs_count": 8, + "size_count": 285491, + "scan_errors": [] + }, + { + "path": "hazelcast-spring-5.1.5-sources/com/hazelcast", + "type": "directory", + "name": "hazelcast", + "base_name": "hazelcast", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 27, + "dirs_count": 7, + "size_count": 285491, + "scan_errors": [] + }, + { + "path": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring", + "type": "directory", + "name": "spring", + "base_name": "spring", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 27, + "dirs_count": 6, + "size_count": 285491, + "scan_errors": [] + }, + { + "path": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/AbstractHazelcastBeanDefinitionParser.java", + "type": "file", + "name": "AbstractHazelcastBeanDefinitionParser.java", + "base_name": "AbstractHazelcastBeanDefinitionParser", + "extension": ".java", + "size": 41022, + "date": "2022-11-14", + "sha1": "25ac4178a3e8346d856c9de086451415101a13ec", + "md5": "df2aea7bf0fd9caf5bed9769eceacdc9", + "sha256": "5bf7702a7ede76f3a6ece72850764f7137318a26baae2353534c5bbd017839af", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 3.28, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/CacheManagerBeanDefinitionParser.java", + "type": "file", + "name": "CacheManagerBeanDefinitionParser.java", + "base_name": "CacheManagerBeanDefinitionParser", + "extension": ".java", + "size": 4212, + "date": "2022-11-14", + "sha1": "2ed72337e9892136b9e635cb0622ac586907803b", + "md5": "e70c097431c19fcb895a232c585d2aaf", + "sha256": "a1461fe78fd3c2ce8cceecf018841fb2fb182fa9db0f58193ac896d05c2514da", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 24.36, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/HazelcastClientBeanDefinitionParser.java", + "type": "file", + "name": "HazelcastClientBeanDefinitionParser.java", + "base_name": "HazelcastClientBeanDefinitionParser", + "extension": ".java", + "size": 34850, + "date": "2022-11-14", + "sha1": "692713b2857aa1967c315c7aaf4350643ef7bb60", + "md5": "64ac2b16234271c36fad23367aefb643", + "sha256": "3b8b63795ed75b4351a8137f0d4c8c0e841ba0899b0cb48d5e83ba89b1306445", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 3.53, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/HazelcastConfigBeanDefinitionParser.java", + "type": "file", + "name": "HazelcastConfigBeanDefinitionParser.java", + "base_name": "HazelcastConfigBeanDefinitionParser", + "extension": ".java", + "size": 132319, + "date": "2022-11-14", + "sha1": "3f82e4e1fad342be4f36a7d994be247d8416f6cc", + "md5": "4640afa1e3bf598a7ae856eff1ce2714", + "sha256": "3777d29cf1d6062f71e182e2adee82c0427035816d7f00e908d6788483968459", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 1.01, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/HazelcastFailoverClientBeanDefinitionParser.java", + "type": "file", + "name": "HazelcastFailoverClientBeanDefinitionParser.java", + "base_name": "HazelcastFailoverClientBeanDefinitionParser", + "extension": ".java", + "size": 4180, + "date": "2022-11-14", + "sha1": "777b234ded7153373e07a920630495fc4b8bf587", + "md5": "ee9b5c3f77b2d9589724b099507b816b", + "sha256": "b84ea580fbf01d383e54b08f9a73493f019ccf34aa8f8ea75a07e04270c39c2a", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 23.04, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/HazelcastInstanceDefinitionParser.java", + "type": "file", + "name": "HazelcastInstanceDefinitionParser.java", + "base_name": "HazelcastInstanceDefinitionParser", + "extension": ".java", + "size": 4519, + "date": "2022-11-14", + "sha1": "d14553e56af0a0215627015568462a4288477493", + "md5": "af92e8e6ce06a6a6871eaaed68a17f0e", + "sha256": "db676886544b7fbb3dbd68306b239e09c873447743c31646f5d61dbf1861e547", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 20.88, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/HazelcastNamespaceHandler.java", + "type": "file", + "name": "HazelcastNamespaceHandler.java", + "base_name": "HazelcastNamespaceHandler", + "extension": ".java", + "size": 3759, + "date": "2022-11-14", + "sha1": "536ad994f2d9e3ea9bb21745c40dfb726958be82", + "md5": "47eb6261d9a0f20703a18ca76373dd3d", + "sha256": "de6c9c350e83db1c41144735964778d7a9ade831e845b7ee5dc92e01c82ca8e7", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 22.19, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/HazelcastTypeBeanDefinitionParser.java", + "type": "file", + "name": "HazelcastTypeBeanDefinitionParser.java", + "base_name": "HazelcastTypeBeanDefinitionParser", + "extension": ".java", + "size": 3623, + "date": "2022-11-14", + "sha1": "8c30bdbf76c34825f9cba2c76994e90c60993b45", + "md5": "2663766f1d882696a569be9587967a23", + "sha256": "af6c57557aacfe7eedb986a747d625eef46f63033d21a2a5004a97d8b37c4083", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 26.4, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/package-info.java", + "type": "file", + "name": "package-info.java", + "base_name": "package-info", + "extension": ".java", + "size": 718, + "date": "2022-11-14", + "sha1": "e023a2234515d9bc76a36b577af8e4786841caa5", + "md5": "2f6512832d03743bb62d576f7e2f838c", + "sha256": "2772069d707eef116430370158cb8d93d1fde6800190f8b70b0476872dcd37fd", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 81.73, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/cache", + "type": "directory", + "name": "cache", + "base_name": "cache", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 15769, + "scan_errors": [] + }, + { + "path": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/cache/HazelcastCache.java", + "type": "file", + "name": "HazelcastCache.java", + "base_name": "HazelcastCache", + "extension": ".java", + "size": 6066, + "date": "2022-11-14", + "sha1": "0f5de6a5bcdc51838cc5aaa529c3234dccf364ff", + "md5": "671567958bedaa0cc3d39f6a48b0ee93", + "sha256": "525345b920bd5fa22add03bf1ea30ac95776b3f6c617124900817f73fdc8992a", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 14.43, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/cache/HazelcastCacheManager.java", + "type": "file", + "name": "HazelcastCacheManager.java", + "base_name": "HazelcastCacheManager", + "extension": ".java", + "size": 5912, + "date": "2022-11-14", + "sha1": "650ae11f63a3fd6aa7ffc3d780346fb00874a974", + "md5": "86bb860423b1fc11489025cb64bd08b6", + "sha256": "03745c77fcf17dd3bdb1b5819e15a1414dde53f8a7b4ba9f62cd4ce43c7c6d98", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 14.46, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/cache/package-info.java", + "type": "file", + "name": "package-info.java", + "base_name": "package-info", + "extension": ".java", + "size": 726, + "date": "2022-11-14", + "sha1": "68b757984bf6da228d899a71e353fb90bfcb9d94", + "md5": "5240a9a8f86d0b53373e684f010d2fcd", + "sha256": "80149f2f90955103b1ee14dd700420de1f54e7623398663beefea8bb6baebd25", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 80.19, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/cache/SpringHazelcastCachingProvider.java", + "type": "file", + "name": "SpringHazelcastCachingProvider.java", + "base_name": "SpringHazelcastCachingProvider", + "extension": ".java", + "size": 3065, + "date": "2022-11-14", + "sha1": "3c98a61d3ee720d9cc9d2d2e424fd61520d6018b", + "md5": "8fefcacd3312974e4dacc3646eeb63f3", + "sha256": "8c2daf9cc9e488391aca1c97026c914b6b3437e15a5e7d104ca09ae1781085f4", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 26.9, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/config", + "type": "directory", + "name": "config", + "base_name": "config", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 8295, + "scan_errors": [] + }, + { + "path": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/config/ConfigFactory.java", + "type": "file", + "name": "ConfigFactory.java", + "base_name": "ConfigFactory", + "extension": ".java", + "size": 7587, + "date": "2022-11-14", + "sha1": "73ab0f479745f54fd2c8b82169d62ac6ee54cd5c", + "md5": "15b65a731c06c04d5d1f4d700bb20dd9", + "sha256": "52b780c9cd31d7e9e70e94ee79379dfb9b4655ba4210c11ccd24342a4e23a103", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 14.43, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/config/package-info.java", + "type": "file", + "name": "package-info.java", + "base_name": "package-info", + "extension": ".java", + "size": 708, + "date": "2022-11-14", + "sha1": "0769dc949d283dd83643cbf3407a5ad7332da424", + "md5": "4c02950ad27576f67412361c2342b4bb", + "sha256": "edda547150e48f2d193df02d760457783122d82c6b400c9731bf7c97a3bc8e82", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 82.52, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/context", + "type": "directory", + "name": "context", + "base_name": "context", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 3, + "dirs_count": 0, + "size_count": 4526, + "scan_errors": [] + }, + { + "path": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/context/package-info.java", + "type": "file", + "name": "package-info.java", + "base_name": "package-info", + "extension": ".java", + "size": 713, + "date": "2022-11-14", + "sha1": "46440b67285c764d5f41d5b84118c854c3bdf36e", + "md5": "b1502a950c31532a58e54dae88c82d6d", + "sha256": "f6ae158990f2b9382e87a7f760148ecc8cfd4a785cc0a8fd4c3c666a415b15cc", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 81.73, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/context/SpringAware.java", + "type": "file", + "name": "SpringAware.java", + "base_name": "SpringAware", + "extension": ".java", + "size": 1128, + "date": "2022-11-14", + "sha1": "029484c14989ab8edd6716d5ff731d7892e3692a", + "md5": "08a9c5659366a674876982158cac2ec2", + "sha256": "c53f081326cd241080e017961910d21a49ab23164565e8ec7ce6ec967b14f2ee", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 57.05, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/context/SpringManagedContext.java", + "type": "file", + "name": "SpringManagedContext.java", + "base_name": "SpringManagedContext", + "extension": ".java", + "size": 2685, + "date": "2022-11-14", + "sha1": "306e7e4a3b460a11cbc949dcd0cbaecc272cf267", + "md5": "b158583d4a830fb1ac6e9202042045fd", + "sha256": "04aa8dc4297bb62051c207dd02aea621a1077015178f39a8b65148fe267da1d3", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 34.98, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/hibernate", + "type": "directory", + "name": "hibernate", + "base_name": "hibernate", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4014, + "scan_errors": [] + }, + { + "path": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/hibernate/package-info.java", + "type": "file", + "name": "package-info.java", + "base_name": "package-info", + "extension": ".java", + "size": 715, + "date": "2022-11-14", + "sha1": "711efd7430ba17270691dd74f7a8447eaa9f53a2", + "md5": "6aa317d88a78706ac02283a883bc8430", + "sha256": "df3d13af3239bec36771471a82d246c37240d1c084bf2da8bdd44243e297bde4", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 82.52, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/hibernate/RegionFactoryBeanDefinitionParser.java", + "type": "file", + "name": "RegionFactoryBeanDefinitionParser.java", + "base_name": "RegionFactoryBeanDefinitionParser", + "extension": ".java", + "size": 3299, + "date": "2022-11-14", + "sha1": "7881886d0452edda3b31f352a69af6003e830b49", + "md5": "c3b4b463d939de1f8dd8a992aa585c5c", + "sha256": "ce3acf915885b1211dcc9a46dd7f4dc0d64430be1d4b790f8f08b0346bc1f62a", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 26.4, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/jet", + "type": "directory", + "name": "jet", + "base_name": "jet", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 3, + "dirs_count": 0, + "size_count": 9368, + "scan_errors": [] + }, + { + "path": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/jet/JetBeanDefinitionParser.java", + "type": "file", + "name": "JetBeanDefinitionParser.java", + "base_name": "JetBeanDefinitionParser", + "extension": ".java", + "size": 3165, + "date": "2022-11-14", + "sha1": "a3458aeac76e525f92b35ab0d7c5662c514007b2", + "md5": "b3ab3010f9d3f6bad06a9de803386b17", + "sha256": "b96a6044df4584530e46d9025f79221e45c3c2e6e704ce2d492ee86f217c4dd5", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 28.24, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/jet/JetSpringServiceFactories.java", + "type": "file", + "name": "JetSpringServiceFactories.java", + "base_name": "JetSpringServiceFactories", + "extension": ".java", + "size": 5469, + "date": "2022-11-14", + "sha1": "3aa2a5f5c3777310ba7db102e3a8f415ffe5010d", + "md5": "68e1caa16b85b83239218d38bd3e6539", + "sha256": "7ba5fd763db3078741d5b7cc4cbab890b3f9dc14e7edb27e63e9265e76815417", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 14.83, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/jet/package-info.java", + "type": "file", + "name": "package-info.java", + "base_name": "package-info", + "extension": ".java", + "size": 734, + "date": "2022-11-14", + "sha1": "63009a6017fadf20d86cfae07863e9dbd83cce7b", + "md5": "35c6154c91f4cfad243732d8b5d73a11", + "sha256": "1a2d74d863a04d0a2e265638a6d917088d9015e0485f865cbbb860d5d2752d78", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 79.44, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/transaction", + "type": "directory", + "name": "transaction", + "base_name": "transaction", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 14317, + "scan_errors": [] + }, + { + "path": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/transaction/HazelcastTransactionManager.java", + "type": "file", + "name": "HazelcastTransactionManager.java", + "base_name": "HazelcastTransactionManager", + "extension": ".java", + "size": 9168, + "date": "2022-11-14", + "sha1": "59dfa20644ebddf7511b995cc858fcde675ca501", + "md5": "e08ae16a678170f2e2506bf37bf837f5", + "sha256": "8667e7118ca53758225684bd1f763ab4870e36f72d78a27f79ec023f75b47e92", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 13.22, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "author": "Balint Krivan", + "start_line": 39, + "end_line": 39 + } + ], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/transaction/ManagedTransactionalTaskContext.java", + "type": "file", + "name": "ManagedTransactionalTaskContext.java", + "base_name": "ManagedTransactionalTaskContext", + "extension": ".java", + "size": 2748, + "date": "2022-11-14", + "sha1": "d15429729d93076b1f3b2858eecdd591330c3a4b", + "md5": "60f1e86e9d86e97f3fcb0778170e270b", + "sha256": "e55a4255d03865c04669408ef583e3702a3d2f664d11b5840101694fd2a6c82c", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 30.36, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "author": "link HazelcastTransactionManager", + "start_line": 29, + "end_line": 29 + }, + { + "author": "Balint Krivan", + "start_line": 33, + "end_line": 33 + } + ], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/transaction/package-info.java", + "type": "file", + "name": "package-info.java", + "base_name": "package-info", + "extension": ".java", + "size": 747, + "date": "2022-11-14", + "sha1": "b447409e77f422ccf7643142713cf72bfb62fe93", + "md5": "eed0bf2d675084f12044e6d05767f8df", + "sha256": "7adf592c970fbb4fa4f8962fe226588f3d43e67cb0384c83dfc2e3d940efe4e9", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 79.44, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/com/hazelcast/spring/transaction/TransactionContextHolder.java", + "type": "file", + "name": "TransactionContextHolder.java", + "base_name": "TransactionContextHolder", + "extension": ".java", + "size": 1654, + "date": "2022-11-14", + "sha1": "80dac160fa42a84dd269268695a4784078de865d", + "md5": "9bcd04704dec8b61b1cc4c047d90cad1", + "sha256": "d1421eec7062e011ba4c7664b6cd0994e8b7d16085a96bd67e8fe8af20cb3c50", + "mime_type": "text/x-c++", + "file_type": "C++ 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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 52.15, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [ + { + "author": "Balint Krivan", + "start_line": 26, + "end_line": 26 + } + ], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + } + ], + "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": "hazelcast-spring-5.1.5-sources/META-INF", + "type": "directory", + "name": "META-INF", + "base_name": "META-INF", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 5, + "dirs_count": 3, + "size_count": 9521, + "scan_errors": [] + }, + { + "path": "hazelcast-spring-5.1.5-sources/META-INF/MANIFEST.MF", + "type": "file", + "name": "MANIFEST.MF", + "base_name": "MANIFEST", + "extension": ".MF", + "size": 64, + "date": "2022-11-14", + "sha1": "a1e47e8e6bcd618e9072476aa169cd3b3a9d7ae8", + "md5": "f06d4360b598fc1115ee1b475baff17e", + "sha256": "31f06c9999bfd523e192864178cfe4a9873d336884cf59a0d698e520895caeaa", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": true, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "hazelcast-spring-5.1.5-sources/META-INF/spring.handlers", + "type": "file", + "name": "spring.handlers", + "base_name": "spring", + "extension": ".handlers", + "size": 175, + "date": "2022-11-14", + "sha1": "3ac72c72a33b68e245a0fa8afd11797422f91780", + "md5": "ca2ce290499ff8c42e3db87430fbe9c7", + "sha256": "4e3b0b35d68277db726f4a91942eb1a88b95b941d52b0ef293f3df2ab44e40df", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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://www.hazelcast.com/schema/spring=com.hazelcast.spring.HazelcastNamespaceHandler", + "start_line": 1, + "end_line": 1 + } + ], + "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": "hazelcast-spring-5.1.5-sources/META-INF/spring.schemas", + "type": "file", + "name": "spring.schemas", + "base_name": "spring", + "extension": ".schemas", + "size": 1078, + "date": "2022-11-14", + "sha1": "f6e5b754409ed36667192acdae50bbeaf380a2a7", + "md5": "0765acd0c5eb75c995b9b8703b5f5583", + "sha256": "6d6a614130f38575cb67c2713db1fc5e0cb0b11a68c92af653c0227d43ade1db", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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://www.hazelcast.com/schema/spring/hazelcast-spring-4.0.xsd=hazelcast-spring-4.0.xsd", + "start_line": 1, + "end_line": 1 + }, + { + "url": "http://www.hazelcast.com/schema/spring/hazelcast-spring-4.1.xsd=hazelcast-spring-4.1.xsd", + "start_line": 3, + "end_line": 3 + }, + { + "url": "http://www.hazelcast.com/schema/spring/hazelcast-spring-4.2.xsd=hazelcast-spring-4.2.xsd", + "start_line": 5, + "end_line": 5 + }, + { + "url": "http://www.hazelcast.com/schema/spring/hazelcast-spring-5.0.xsd=hazelcast-spring-5.0.xsd", + "start_line": 7, + "end_line": 7 + }, + { + "url": "http://www.hazelcast.com/schema/spring/hazelcast-spring-5.1.xsd=hazelcast-spring-5.1.xsd", + "start_line": 9, + "end_line": 9 + }, + { + "url": "http://www.hazelcast.com/schema/spring/hazelcast-spring.xsd=hazelcast-spring-5.1.xsd", + "start_line": 11, + "end_line": 11 + } + ], + "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": "hazelcast-spring-5.1.5-sources/META-INF/maven", + "type": "directory", + "name": "maven", + "base_name": "maven", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 2, + "size_count": 8204, + "scan_errors": [] + }, + { + "path": "hazelcast-spring-5.1.5-sources/META-INF/maven/com.hazelcast", + "type": "directory", + "name": "com.hazelcast", + "base_name": "com.hazelcast", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 1, + "size_count": 8204, + "scan_errors": [] + }, + { + "path": "hazelcast-spring-5.1.5-sources/META-INF/maven/com.hazelcast/hazelcast-spring", + "type": "directory", + "name": "hazelcast-spring", + "base_name": "hazelcast-spring", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 8204, + "scan_errors": [] + }, + { + "path": "hazelcast-spring-5.1.5-sources/META-INF/maven/com.hazelcast/hazelcast-spring/pom.properties", + "type": "file", + "name": "pom.properties", + "base_name": "pom", + "extension": ".properties", + "size": 64, + "date": "2022-11-14", + "sha1": "4af3a88fe8454f5a4097e185e7c3562b86c298de", + "md5": "7cb926a28a6ae40dca03d40b20f8820e", + "sha256": "e1eae4e8d75fa7942a0ab4dc2a6c11a4b3e66549d5fe55b8c72514dc8dfb310b", + "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": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": "hazelcast-spring-5.1.5-sources/META-INF/maven/com.hazelcast/hazelcast-spring/pom.xml", + "type": "file", + "name": "pom.xml", + "base_name": "pom", + "extension": ".xml", + "size": 8140, + "date": "2022-11-14", + "sha1": "e3a49e0421244f243cc0082a5d4d89466906d307", + "md5": "01970c8251e89f8017500db0c85b266d", + "sha256": "0b456e4204094009d4b99ebd37f02b0ed10f243718778c1d92c4ed3b62c1c515", + "mime_type": "text/plain", + "file_type": "exported SGML document, 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": [ + { + "type": "maven", + "namespace": "com.hazelcast", + "name": "hazelcast-spring", + "version": "5.1.5", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "hazelcast-spring", + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "declared_license_expression": "apache-2.0", + "declared_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 100.0, + "start_line": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [ + "from-package-file" + ], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": null, + "notice_text": null, + "source_packages": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?classifier=sources" + ], + "file_references": [], + "extra_data": {}, + "dependencies": [ + { + "purl": "pkg:maven/com.hazelcast/hazelcast@5.1.5", + "extracted_requirement": "5.1.5", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/javax.annotation/javax.annotation-api@1.3.2", + "extracted_requirement": "1.3.2", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/org.springframework/spring-context@5.3.16", + "extracted_requirement": "5.3.16", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/org.springframework/spring-tx@5.3.16", + "extracted_requirement": "5.3.16", + "scope": "provided", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/com.hazelcast/hazelcast@5.1.5", + "extracted_requirement": "5.1.5", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/org.apache.httpcomponents/httpclient", + "extracted_requirement": "${http.components.version}", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.6.3", + "extracted_requirement": "3.6.3", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {} + } + ], + "repository_homepage_url": "https://repo1.maven.org/maven2/com/hazelcast/hazelcast-spring/5.1.5/", + "repository_download_url": "https://repo1.maven.org/maven2/com/hazelcast/hazelcast-spring/5.1.5/hazelcast-spring-5.1.5.jar", + "api_data_url": "https://repo1.maven.org/maven2/com/hazelcast/hazelcast-spring/5.1.5/hazelcast-spring-5.1.5.pom", + "datasource_id": "maven_pom", + "purl": "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5" + } + ], + "for_packages": [ + "pkg:maven/com.hazelcast/hazelcast-spring@5.1.5?uuid=bb0d7b7b-1c63-4bbb-9f8f-d0da1c078f22" + ], + "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": 4, + "end_line": 14, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [ + "from-package-file" + ], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + } + ], + "license_clues": [], + "percentage_of_license_text": 13.54, + "copyrights": [ + { + "copyright": "Copyright (c) 2008-2022, Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "holders": [ + { + "holder": "Hazelcast, Inc.", + "start_line": 2, + "end_line": 2 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "http://www.apache.org/licenses/LICENSE-2.0", + "start_line": 8, + "end_line": 8 + }, + { + "url": "http://maven.apache.org/xsd/maven-4.0.0.xsd", + "start_line": 18, + "end_line": 18 + } + ], + "is_legal": false, + "is_manifest": true, + "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 diff --git a/samples/old-batik-src-1.12-clipeu.json b/samples/old-batik-src-1.12-clipeu.json deleted file mode 100644 index aff6f401..00000000 --- a/samples/old-batik-src-1.12-clipeu.json +++ /dev/null @@ -1 +0,0 @@ -{"headers":[{"tool_name":"scancode-toolkit","tool_version":"3.1.2","options":{"input":["batik-src-1.12.tar.gz-extract"],"--copyright":true,"--csv":"batik-src-1.12-clipeu.csv","--email":true,"--info":true,"--json":"batik-src-1.12-clipeu.json","--license":true,"--package":true,"--processes":"2","--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":"2020-04-01T215415.669430","end_timestamp":"2020-04-01T221244.973691","duration":1109.3042612075806,"message":null,"errors":[],"extra_data":{"files_count":2848}}],"files":[{"path":"batik-src-1.12.tar.gz-extract","type":"directory","name":"batik-src-1.12.tar.gz-extract","base_name":"batik-src-1.12.tar.gz-extract","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2848,"dirs_count":770,"size_count":36481011,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12","type":"directory","name":"batik-1.12","base_name":"batik-1.12","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2848,"dirs_count":769,"size_count":36481011,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/build.bat","type":"file","name":"build.bat","base_name":"build","extension":".bat","size":2362,"date":"2019-10-25","sha1":"722b81e1c2c38dd461b0d603f21edffe8dd21fbd","md5":"fa3b636c21178229d205805b75df2997","mime_type":"text/x-msdos-batch","file_type":"DOS batch file, ASCII text","programming_language":"Batchfile","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/build.xml","type":"file","name":"build.xml","base_name":"build","extension":".xml","size":70288,"date":"2019-10-29","sha1":"085badb6d74f7e9ddd84dbaa7c23d48dc432325b","md5":"da54b4922fff3f719b69fdfa6386075d","mime_type":"text/plain","file_type":"exported SGML document, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[{"value":"Copyright (c) year Apache Software Foundation","start_line":645,"end_line":646},{"value":"Copyright (c) year a http://www.apache.org/ Apache Software Foundation /a","start_line":1434,"end_line":1434}],"holders":[{"value":"$ year Apache Software Foundation","start_line":645,"end_line":646},{"value":"$ year a Apache Software Foundation /a","start_line":1434,"end_line":1434}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://ant.apache.org/","start_line":31,"end_line":31},{"url":"http://xmlgraphics.apache.org/batik","start_line":92,"end_line":92},{"url":"http://www.w3.org/2003/01/dom2-javadoc/","start_line":120,"end_line":120},{"url":"http://docs.oracle.com/javase/6/docs/api/","start_line":121,"end_line":121},{"url":"http://www.mozilla.org/rhino/apidocs/","start_line":122,"end_line":122},{"url":"https://svn.apache.org/repos/asf/xmlgraphics/site/deploy/batik","start_line":131,"end_line":131},{"url":"http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6527962","start_line":206,"end_line":206},{"url":"http://xmlgraphics.apache.org/batik/","start_line":336,"end_line":336},{"url":"http://www.apache.org/","start_line":1434,"end_line":1434}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/CHANGES","type":"file","name":"CHANGES","base_name":"CHANGES","extension":"","size":68248,"date":"2019-10-29","sha1":"4d136c05e08f837e9a6295e12b75d04f72e997b6","md5":"907124e9e3821658467799e85b3e5cce","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Python","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Henri Ruini, Henri.Ruini@nokia.com","start_line":946,"end_line":946},{"value":"David Schweinsberg of SteadyState (david@steadystate.co.uk)","start_line":1503,"end_line":1505}],"packages":[],"emails":[{"email":"Henri.Ruini@nokia.com","start_line":946,"end_line":946},{"email":"david@steadystate.co.uk","start_line":1504,"end_line":1504},{"email":"Carroll@boimail.com","start_line":1599,"end_line":1599}],"urls":[{"url":"http://nagoya.apache.org/bugzilla","start_line":796,"end_line":796},{"url":"http://koala.ilog.fr/batik/mlists/batik-users/archives/msg03513.html","start_line":848,"end_line":848},{"url":"http://xml.apache.org/batik/supportedProperties.html","start_line":1207,"end_line":1207}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/KEYS","type":"file","name":"KEYS","base_name":"KEYS","extension":"","size":18450,"date":"2019-10-25","sha1":"a94c5b4e6967d6b8095386fa5d621c257de5d832","md5":"da12367aa98a36993893b3b3d9b0ad20","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Python","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":11,"end_line":11},{"email":"rbowen@rcbowen.com","start_line":14,"end_line":14},{"email":"martin@apache.org","start_line":15,"end_line":15},{"email":"idsfa@visi.com","start_line":16,"end_line":16},{"email":"turner@blackbear.com","start_line":17,"end_line":17},{"email":"manoj@apache.org","start_line":18,"end_line":18},{"email":"meara@alumni.princeton.edu","start_line":19,"end_line":19},{"email":"twl@sauria.com","start_line":20,"end_line":20},{"email":"ammulder@alumni.princeton.edu","start_line":21,"end_line":21},{"email":"james@freelancepropaganda.com","start_line":22,"end_line":22},{"email":"mcomstock@raidworks.com","start_line":23,"end_line":23},{"email":"cliff@alum.mit.edu","start_line":24,"end_line":24},{"email":"sander@temme.net","start_line":25,"end_line":25},{"email":"thies@project-pint.org","start_line":27,"end_line":27},{"email":"jamie@legobuff.com","start_line":28,"end_line":28},{"email":"lars@eilebrecht.org","start_line":29,"end_line":29},{"email":"glenn@apache.org","start_line":31,"end_line":31},{"email":"bimargulies@apache.org","start_line":34,"end_line":34},{"email":"cam@mcc.id.au","start_line":103,"end_line":103},{"email":"gpg@cacert.org","start_line":105,"end_line":105},{"email":"anibal@debian.org","start_line":106,"end_line":106},{"email":"helen@thousand-ships.com","start_line":108,"end_line":108},{"email":"Tanat@Tanat.Net","start_line":109,"end_line":109},{"email":"jimmy@deefa.com","start_line":110,"end_line":110},{"email":"jgoodwin@studio442.com.au","start_line":112,"end_line":112},{"email":"cam@apache.org","start_line":113,"end_line":113},{"email":"lbernardo@apache.org","start_line":224,"end_line":224},{"email":"ssteiner@apache.org","start_line":260,"end_line":260}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/LICENSE","type":"file","name":"LICENSE","base_name":"LICENSE","extension":"","size":11357,"date":"2019-10-25","sha1":"355fed45278113ae2d4b5117adec2ee830249562","md5":"4b6bad7556d7d15f51d7caebc1cf1c22","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":1,"end_line":201,"matched_rule":{"identifier":"apache-2.0.LICENSE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"1-hash","rule_length":1581,"matched_length":1581,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/","start_line":3,"end_line":3},{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":195,"end_line":195}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/MAINTAIN","type":"file","name":"MAINTAIN","base_name":"MAINTAIN","extension":"","size":6600,"date":"2019-10-25","sha1":"0d2d9cb963d2d0edcc641582ea9a14b621bbc0db","md5":"f17336781f1970d264005adf787e66f9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@people.apache.org","start_line":109,"end_line":109},{"email":"vhardy@svn.apache.org","start_line":119,"end_line":119}],"urls":[{"url":"http://xmlgraphics.apache.org/batik","start_line":7,"end_line":7},{"url":"http://wiki.apache.org/old/SigningReleases","start_line":31,"end_line":31},{"url":"https://svn.apache.org/repos/asf/xmlgraphics/batik/trunk","start_line":41,"end_line":41},{"url":"https://svn.apache.org/repos/asf/xmlgraphics/batik/tags/","start_line":42,"end_line":42},{"url":"http://www.w3.org/Graphics/SVG","start_line":77,"end_line":77},{"url":"http://www.apache.org/dist/xmlgraphics/batik/README","start_line":82,"end_line":82},{"url":"http://www.apache.org/dist/xmlgraphics/batik/","start_line":105,"end_line":105},{"url":"http://www.apache.org/dist/xml/batik/","start_line":109,"end_line":109},{"url":"http://www.apache.org/dev/mirrors.html","start_line":113,"end_line":113},{"url":"http://people.apache.org/~bodewig/mirror.html","start_line":114,"end_line":114},{"url":"http://www.apache.org/dist/xmlgraphics/batik","start_line":133,"end_line":133},{"url":"http://www.apache.org/","start_line":145,"end_line":145},{"url":"https://svn.apache.org/repos/asf/xmlgraphics/site/deploy/batik/","start_line":173,"end_line":173}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/NOTICE","type":"file","name":"NOTICE","base_name":"NOTICE","extension":"","size":684,"date":"2019-10-25","sha1":"e45cfe30104fc9329b0adbe7dc6740c475732b86","md5":"fdd66066303eef9fbff5d2f5026480bf","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,"licenses":[{"key":"apache-2.0","score":90.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":5,"matched_rule":{"identifier":"apache_5.RULE","license_expression":"apache-2.0 OR apache-1.1","licenses":["apache-2.0","apache-1.1"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":14,"matched_length":14,"match_coverage":100.0,"rule_relevance":90.0}},{"key":"apache-1.1","score":90.0,"name":"Apache License 1.1","short_name":"Apache 1.1","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://apache.org/licenses/LICENSE-1.1","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-1.1","spdx_license_key":"Apache-1.1","spdx_url":"https://spdx.org/licenses/Apache-1.1","start_line":4,"end_line":5,"matched_rule":{"identifier":"apache_5.RULE","license_expression":"apache-2.0 OR apache-1.1","licenses":["apache-2.0","apache-1.1"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":14,"matched_length":14,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["apache-2.0 OR apache-1.1"],"copyrights":[{"value":"Copyright 1999-2019 The Apache Software Foundation","start_line":2,"end_line":2}],"holders":[{"value":"The Apache Software Foundation","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/","start_line":5,"end_line":5},{"url":"http://tango.freedesktop.org/","start_line":15,"end_line":15},{"url":"http://www.jesusda.com/projects/pasodoble","start_line":18,"end_line":18}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":6633,"date":"2019-10-25","sha1":"0e0a93f32fd4453cd72f51d290be6f10208f26d3","md5":"618954e8dbd9315a9ca1c3fad8c8d42c","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":57,"end_line":63,"matched_rule":{"identifier":"apache-2.0_149.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":false,"is_license_tag":true,"matcher":"2-aho","rule_length":27,"matched_length":27,"match_coverage":100.0,"rule_relevance":100.0}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik\nXML Graphics Batik","release_date":null,"parties":[{"type":"organization","role":"owner","name":"Apache Software Foundation","email":null,"url":"http://www.apache.org/"}],"keywords":[],"homepage_url":"http://xmlgraphics.apache.org/batik/","download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":"scm:svn:https://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/","vcs_url":"svn+https://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/","copyright":null,"license_expression":"apache-2.0","declared_license":[{"name":"The Apache Software License, Version 2.0","url":"http://www.apache.org/licenses/LICENSE-2.0.txt","comments":null,"distribution":"repo"}],"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12","dependencies":[],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik/1.12/batik-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik/1.12/batik-1.12.pom"}],"emails":[{"email":"batik-users-subscribe@xmlgraphics.apache.org","start_line":39,"end_line":39},{"email":"batik-users-unsubscribe@xmlgraphics.apache.org","start_line":40,"end_line":40},{"email":"batik-dev-subscribe@xmlgraphics.apache.org","start_line":45,"end_line":45},{"email":"batik-dev-unsubscribe@xmlgraphics.apache.org","start_line":46,"end_line":46},{"email":"batik-commits-subscribe@xmlgraphics.apache.org","start_line":51,"end_line":51},{"email":"batik-commits-unsubscribe@xmlgraphics.apache.org","start_line":52,"end_line":52}],"urls":[{"url":"http://xmlgraphics.apache.org/batik/","start_line":12,"end_line":12},{"url":"http://mail-archives.apache.org/mod_mbox/xmlgraphics-batik-users/","start_line":41,"end_line":41},{"url":"http://mail-archives.apache.org/mod_mbox/xmlgraphics-batik-dev/","start_line":47,"end_line":47},{"url":"http://mail-archives.apache.org/mod_mbox/xmlgraphics-batik-commits/","start_line":53,"end_line":53},{"url":"http://www.apache.org/licenses/LICENSE-2.0.txt","start_line":60,"end_line":60},{"url":"http://www.apache.org/","start_line":67,"end_line":67},{"url":"https://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/","start_line":162,"end_line":162},{"url":"https://repository.apache.org/content/repositories/snapshots","start_line":170,"end_line":170}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/README","type":"file","name":"README","base_name":"README","extension":"","size":2860,"date":"2019-10-29","sha1":"9b20199ff41c3c0c013058c0505035bf5e62b761","md5":"e09a9a3129e90d2690fed7aa227e3dad","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://xmlgraphics.apache.org/batik","start_line":40,"end_line":40},{"url":"http://xmlgraphics.apache.org/batik/install.html#optionalComponents","start_line":56,"end_line":56},{"url":"http://xmlgraphics.apache.org/batik/install.html","start_line":62,"end_line":62},{"url":"http://xmlgraphics.apache.org/","start_line":77,"end_line":77}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-all","type":"directory","name":"batik-all","base_name":"batik-all","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":4,"size_count":8339,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-all/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":7318,"date":"2019-10-25","sha1":"f1c786709002e8ee76df9a5ac23c5548e5d18db1","md5":"17547717b1722cf589e34c94fca23d8a","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-all","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-all\nBatik aggregate artifact","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-all","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-anim","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-awt-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-bridge","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-codec","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-constants","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-css","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-dom","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-ext","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-extension","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-gui-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-gvt","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-i18n","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-parser","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-rasterizer-ext","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-rasterizer","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-script","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-slideshow","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-squiggle-ext","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-squiggle","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-svg-dom","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-svgbrowser","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-svggen","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-svgpp","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-svgrasterizer","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-swing","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-transcoder","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-ttf2svg","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-xml","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-all@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-all@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-all/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-all/1.12/batik-all-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-all/1.12/batik-all-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-all/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":3,"size_count":1021,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-all/src/tools","type":"directory","name":"tools","base_name":"tools","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":2,"size_count":1021,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-all/src/tools/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":1021,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-all/src/tools/resources/assembly","type":"directory","name":"assembly","base_name":"assembly","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1021,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-all/src/tools/resources/assembly/assembly.xml","type":"file","name":"assembly.xml","base_name":"assembly","extension":".xml","size":1021,"date":"2019-10-25","sha1":"4b35bb20662da91b329bfb04291cad26c0437986","md5":"f6a2d684eb8b47b063ec89fae87a5222","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0","start_line":2,"end_line":2},{"url":"http://maven.apache.org/xsd/assembly-1.1.0.xsd","start_line":4,"end_line":4}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim","type":"directory","name":"batik-anim","base_name":"batik-anim","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":211,"dirs_count":21,"size_count":1357377,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":3106,"date":"2019-10-25","sha1":"cee25c4d6afedb452410d10a57d29566c928c739","md5":"4ebc6297d599818a338157948eaf76ce","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-anim","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-anim\nBatik animation engine","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-awt-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-css","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-dom","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-ext","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-parser","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-svg-dom","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/xml-apis/xml-apis-ext","requirement":"${xmlapisext.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-anim@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-anim@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-anim/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-anim/1.12/batik-anim-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-anim/1.12/batik-anim-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":210,"dirs_count":20,"size_count":1354271,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":210,"dirs_count":16,"size_count":1354271,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":207,"dirs_count":7,"size_count":1349944,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":207,"dirs_count":6,"size_count":1349944,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":207,"dirs_count":5,"size_count":1349944,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":207,"dirs_count":4,"size_count":1349944,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim","type":"directory","name":"anim","base_name":"anim","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":207,"dirs_count":3,"size_count":1349944,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/AbstractAnimation.java","type":"file","name":"AbstractAnimation.java","base_name":"AbstractAnimation","extension":".java","size":6326,"date":"2019-10-25","sha1":"4ddd563dd03d53a5fec9c40cb3a09679a3733925","md5":"8605f68a06c50b88ad7fb528f4c345f0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/AnimationEngine.java","type":"file","name":"AnimationEngine.java","base_name":"AnimationEngine","extension":".java","size":25417,"date":"2019-10-25","sha1":"fdc1d2e13d12f263e46306ddffbd1e6bb68ab1fa","md5":"bc3f792c616b6423567d5bbf932a0bb5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/AnimationException.java","type":"file","name":"AnimationException.java","base_name":"AnimationException","extension":".java","size":2450,"date":"2019-10-25","sha1":"639c547e321eaa98c8b9c7cd08ca0c2d4b2d599b","md5":"e264d36a05daa77f93bd06a5f671da35","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/ColorAnimation.java","type":"file","name":"ColorAnimation.java","base_name":"ColorAnimation","extension":".java","size":1981,"date":"2019-10-25","sha1":"d69ce084f9ba9d58a126611d67227b9a535691a0","md5":"459be42caf7ce4fa9e91d7322b1d2c3a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/InterpolatingAnimation.java","type":"file","name":"InterpolatingAnimation.java","base_name":"InterpolatingAnimation","extension":".java","size":6131,"date":"2019-10-25","sha1":"1cf22f5139d19a899835f7324e217076e5964a80","md5":"42b0a61b9116e12b1ba408b0ecd6d764","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/MotionAnimation.java","type":"file","name":"MotionAnimation.java","base_name":"MotionAnimation","extension":".java","size":13458,"date":"2019-10-25","sha1":"9a2d044f51f368418807ef018cd19f44cf7df02b","md5":"da4a7f0579883cd0e07d07b1892775d7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/SetAnimation.java","type":"file","name":"SetAnimation.java","base_name":"SetAnimation","extension":".java","size":2133,"date":"2019-10-25","sha1":"3240bdbe29533401ddf6a0f96e6c86c8effb423e","md5":"f2f0bf9271ed06883fd3ba1bd90ae064","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/SimpleAnimation.java","type":"file","name":"SimpleAnimation.java","base_name":"SimpleAnimation","extension":".java","size":8535,"date":"2019-10-25","sha1":"f280c6c851c011692d38fa4f7e42ec289baa3e36","md5":"7dc258a180476fccd7caf7baab50cb5a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/TransformAnimation.java","type":"file","name":"TransformAnimation.java","base_name":"TransformAnimation","extension":".java","size":10608,"date":"2019-10-25","sha1":"56606917180b46d8b4e228023486e0e86016b940","md5":"e843aeabff0f446b3ea8744fa5ddcef4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom","type":"directory","name":"dom","base_name":"dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":156,"dirs_count":0,"size_count":1013791,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/AbstractElement.java","type":"file","name":"AbstractElement.java","base_name":"AbstractElement","extension":".java","size":11477,"date":"2019-10-25","sha1":"93ac2c7bc0cfcbb5093c855cf507a8376b885cae","md5":"eb1c947afd22903344e94ac81d3374cb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/AbstractSVGAnimatedLength.java","type":"file","name":"AbstractSVGAnimatedLength.java","base_name":"AbstractSVGAnimatedLength","extension":".java","size":13092,"date":"2019-10-25","sha1":"4a33e5ef8ec918b0958edc56053fb672f223c26a","md5":"586ff63ac0eb355d53679d699a9944a6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/AbstractSVGAnimatedValue.java","type":"file","name":"AbstractSVGAnimatedValue.java","base_name":"AbstractSVGAnimatedValue","extension":".java","size":3888,"date":"2019-10-25","sha1":"b6b41767bab47e2f8d5658ed2ab4082bd50c53cf","md5":"970196acad9a97955c036cceca7b5118","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/AbstractSVGLength.java","type":"file","name":"AbstractSVGLength.java","base_name":"AbstractSVGLength","extension":".java","size":8198,"date":"2019-10-25","sha1":"2360a9785850910e44841d98fc2fee5852376f47","md5":"60ae2c81a03c56d2337366a075bc5dbe","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":45,"end_line":46}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/AbstractSVGLengthList.java","type":"file","name":"AbstractSVGLengthList.java","base_name":"AbstractSVGLengthList","extension":".java","size":10157,"date":"2019-10-25","sha1":"c463c16b7bb063850ec717bbb5968b321da0a95d","md5":"262828fbeed8e35d8c0a296e7e38d5f6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/AnimatableElement.java","type":"file","name":"AnimatableElement.java","base_name":"AnimatableElement","extension":".java","size":1425,"date":"2019-10-25","sha1":"2254363a14050cd6b45245a96d766faff0d7ce94","md5":"cf530e8c567d0fe12cc8ff3c543cd1cb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/AnimatedAttributeListener.java","type":"file","name":"AnimatedAttributeListener.java","base_name":"AnimatedAttributeListener","extension":".java","size":1786,"date":"2019-10-25","sha1":"0364ee3b7d25e2a714f9d2ba00f471e7edcc6b08","md5":"5d3063961d70d42ca7c01f848752e169","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/AnimatedLiveAttributeValue.java","type":"file","name":"AnimatedLiveAttributeValue.java","base_name":"AnimatedLiveAttributeValue","extension":".java","size":1950,"date":"2019-10-25","sha1":"58ba3f9172a0f0432aff38466173f2ed0f3da780","md5":"d017ec6d518a5152e12fa8337c30c77e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/AnimationTarget.java","type":"file","name":"AnimationTarget.java","base_name":"AnimationTarget","extension":".java","size":3312,"date":"2019-10-25","sha1":"09cf7590b08acf76239f3a78499518f23fee1c69","md5":"d4e233585bce94eb9ea29d8fa6e8c51e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/AnimationTargetListener.java","type":"file","name":"AnimationTargetListener.java","base_name":"AnimationTargetListener","extension":".java","size":1450,"date":"2019-10-25","sha1":"20dfdc80a54dc9eac8518e676f28c9cb1209ee37","md5":"59a84f3c8172774a0dd148cc4cf719ad","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/AttributeInitializer.java","type":"file","name":"AttributeInitializer.java","base_name":"AttributeInitializer","extension":".java","size":3319,"date":"2019-10-25","sha1":"607c2f620c8b8ac34d5518f5460724d535ef680d","md5":"c143d885ae8f77814aa186800e1dfaf4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/BindableElement.java","type":"file","name":"BindableElement.java","base_name":"BindableElement","extension":".java","size":3580,"date":"2019-10-25","sha1":"106c0d0148eb044f01e9458c967113cadd1f2632","md5":"56490f2957f1345bc07d73bb1350b43c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SAXSVGDocumentFactory.java","type":"file","name":"SAXSVGDocumentFactory.java","base_name":"SAXSVGDocumentFactory","extension":".java","size":14127,"date":"2019-10-25","sha1":"59f03c8870122e04a976c948e268aa22064c139a","md5":"0cfd38c44762ca7de08b07ab84ec5691","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":46,"end_line":46}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVG12DOMImplementation.java","type":"file","name":"SVG12DOMImplementation.java","base_name":"SVG12DOMImplementation","extension":".java","size":18776,"date":"2019-10-25","sha1":"4c84e4d1f8d1d59833c3c64cb6fcac505f2e82bb","md5":"2e9a1726a91782c82d35f3cc572d87dd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":56,"end_line":56}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVG12OMDocument.java","type":"file","name":"SVG12OMDocument.java","base_name":"SVG12OMDocument","extension":".java","size":5393,"date":"2019-10-25","sha1":"6a5801d4138ddb51e45d4bde7437d741f2f8bd57","md5":"b1d19dcec779af402cf4acbeabbd6209","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGAnimationTargetContext.java","type":"file","name":"SVGAnimationTargetContext.java","base_name":"SVGAnimationTargetContext","extension":".java","size":1577,"date":"2019-10-25","sha1":"482954f06fcd33c5e68463a980b341c91d16ab18","md5":"93aa78df613868caec30e5e145ef045d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGDescriptiveElement.java","type":"file","name":"SVGDescriptiveElement.java","base_name":"SVGDescriptiveElement","extension":".java","size":2417,"date":"2019-10-25","sha1":"d9b0a5c0c645a1a522f2715c6b37b8162cf05da1","md5":"39c25f43ca03a8ccebe051ed9a4ef03e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGDOMImplementation.java","type":"file","name":"SVGDOMImplementation.java","base_name":"SVGDOMImplementation","extension":".java","size":53718,"date":"2019-10-25","sha1":"60e75c25efbce14df988d9f414291a060da97066","md5":"ee9f0d27229e41435f88c957e5af2d11","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":61,"end_line":61}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGGraphicsElement.java","type":"file","name":"SVGGraphicsElement.java","base_name":"SVGGraphicsElement","extension":".java","size":9406,"date":"2019-10-25","sha1":"a19bce0ac5b41a858c01b850e10fea694a0c07f9","md5":"a108bbae51358834b581d9c48614a77a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGLocatableSupport.java","type":"file","name":"SVGLocatableSupport.java","base_name":"SVGLocatableSupport","extension":".java","size":7000,"date":"2019-10-25","sha1":"13a0e33c9c6c187b81300226ffa931741e74e089","md5":"1e4f6f9d4b8614afd83e4f022b6bbb2a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAElement.java","type":"file","name":"SVGOMAElement.java","base_name":"SVGOMAElement","extension":".java","size":4553,"date":"2019-10-25","sha1":"5ea7c3b1d8714a51186f7ff4e96d35581da2d46c","md5":"3e4b2b1398173c0ae6bb2e24162205c1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAltGlyphDefElement.java","type":"file","name":"SVGOMAltGlyphDefElement.java","base_name":"SVGOMAltGlyphDefElement","extension":".java","size":1989,"date":"2019-10-25","sha1":"7667661cbe767c5f4d044a73102282ac1f15c957","md5":"af7a26b1585bffbd5e210023fa11252e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAltGlyphElement.java","type":"file","name":"SVGOMAltGlyphElement.java","base_name":"SVGOMAltGlyphElement","extension":".java","size":4845,"date":"2019-10-25","sha1":"313e765ef2f63a40bcf28a08e27f3fc792be4937","md5":"7ab832e50f65cc431d0fd3150ad14295","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAltGlyphItemElement.java","type":"file","name":"SVGOMAltGlyphItemElement.java","base_name":"SVGOMAltGlyphItemElement","extension":".java","size":1998,"date":"2019-10-25","sha1":"f3a096fcf91c828e30117281082d2a0de8000d5a","md5":"1c5e6e1e69cc9a58a57a87ebebf7ca90","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimateColorElement.java","type":"file","name":"SVGOMAnimateColorElement.java","base_name":"SVGOMAnimateColorElement","extension":".java","size":4917,"date":"2019-10-25","sha1":"e9580ef37a451c264983aeb9252dce4bf48c8c49","md5":"5a618ba7b038e7e16e90e143410b176a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimatedBoolean.java","type":"file","name":"SVGOMAnimatedBoolean.java","base_name":"SVGOMAnimatedBoolean","extension":".java","size":5377,"date":"2019-10-25","sha1":"4f42905dfdbf4d8a45cdfd401dfffb344313bda2","md5":"fb2f799e65c13167981cfa4d13697374","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimatedEnumeration.java","type":"file","name":"SVGOMAnimatedEnumeration.java","base_name":"SVGOMAnimatedEnumeration","extension":".java","size":6733,"date":"2019-10-25","sha1":"930180f0a7b01b52b0730b1f6393b53559863efc","md5":"b1925cacd716a7a31ea6d83e11fb3842","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimatedInteger.java","type":"file","name":"SVGOMAnimatedInteger.java","base_name":"SVGOMAnimatedInteger","extension":".java","size":5137,"date":"2019-10-25","sha1":"a5319a066840991e3db86effbbec886dc9d3c1a4","md5":"f9fa3d9f7fdec36925c7ac2a76cf2193","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimatedLength.java","type":"file","name":"SVGOMAnimatedLength.java","base_name":"SVGOMAnimatedLength","extension":".java","size":2188,"date":"2019-10-25","sha1":"ef6b70f18a35160ec8697c6d825fec6327564719","md5":"9081be696d8bcb4206306e4e10c219cd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimatedLengthList.java","type":"file","name":"SVGOMAnimatedLengthList.java","base_name":"SVGOMAnimatedLengthList","extension":".java","size":16740,"date":"2019-10-25","sha1":"d44c7ed6051150891089f38a950f0a9e3fac75be","md5":"1a451f2045f6644c7e80c027daac1389","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimatedMarkerOrientValue.java","type":"file","name":"SVGOMAnimatedMarkerOrientValue.java","base_name":"SVGOMAnimatedMarkerOrientValue","extension":".java","size":13753,"date":"2019-10-25","sha1":"7c1f327f113028bdea6da422453183104470cc4d","md5":"e0f8ea606ce9bf6d5e36478606f1f40b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimatedNumber.java","type":"file","name":"SVGOMAnimatedNumber.java","base_name":"SVGOMAnimatedNumber","extension":".java","size":6203,"date":"2019-10-25","sha1":"5a63c2e843e387aa618aa94a806f677ab9e6fd05","md5":"03f3527b155001dfaa41b0a3409fc60e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimatedNumberList.java","type":"file","name":"SVGOMAnimatedNumberList.java","base_name":"SVGOMAnimatedNumberList","extension":".java","size":15842,"date":"2019-10-25","sha1":"dc1449e39bf38081cec2b7947dfb223868d3a6c7","md5":"459cb8d69f214c3c8f9593a0ac9c80cb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tonny@kiyut.com","start_line":46,"end_line":46}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimatedPathData.java","type":"file","name":"SVGOMAnimatedPathData.java","base_name":"SVGOMAnimatedPathData","extension":".java","size":29385,"date":"2019-10-25","sha1":"50ae25b5dbc345a26b78e405f7224b5d08e0dd7b","md5":"e9c171add832a72fca1ee8bcd696a59a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":56,"end_line":56},{"email":"andrest@world-affair.com","start_line":57,"end_line":57}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimatedPoints.java","type":"file","name":"SVGOMAnimatedPoints.java","base_name":"SVGOMAnimatedPoints","extension":".java","size":14960,"date":"2019-10-25","sha1":"bb0ed1f0d567e9d022459cd3d9a24eaa5e1c26ee","md5":"c62e849bf2e1a583c1c82d94d8ddc244","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":44,"end_line":44}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimatedPreserveAspectRatio.java","type":"file","name":"SVGOMAnimatedPreserveAspectRatio.java","base_name":"SVGOMAnimatedPreserveAspectRatio","extension":".java","size":8904,"date":"2019-10-25","sha1":"aba4b1409f2eb54a2a8046219a492522055687c2","md5":"3d76e77fea7ac62305b8dc9f836c5ac9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tonny@kiyut.com","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimatedRect.java","type":"file","name":"SVGOMAnimatedRect.java","base_name":"SVGOMAnimatedRect","extension":".java","size":11420,"date":"2019-10-25","sha1":"f75abc58e8af335a74e70547305c1f93ca708843","md5":"41ef02a0b6002a64165399375e738f1a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimatedString.java","type":"file","name":"SVGOMAnimatedString.java","base_name":"SVGOMAnimatedString","extension":".java","size":3911,"date":"2019-10-25","sha1":"432ee493e8e6621504b81602fdd937f9ae6b5281","md5":"0b0727b1e986b2090e6275b380073a10","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimatedTransformList.java","type":"file","name":"SVGOMAnimatedTransformList.java","base_name":"SVGOMAnimatedTransformList","extension":".java","size":15958,"date":"2019-10-25","sha1":"cb81b0b30af87c8b242eefd6b5315d2b068b237e","md5":"8dc2e163777173e9673ead190f27e30f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimateElement.java","type":"file","name":"SVGOMAnimateElement.java","base_name":"SVGOMAnimateElement","extension":".java","size":4861,"date":"2019-10-25","sha1":"5d187fc55c714c6ee2226f10ea4e56e62e28af8d","md5":"756a59b648b96b9b82a4bec4fd94dc2c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimateMotionElement.java","type":"file","name":"SVGOMAnimateMotionElement.java","base_name":"SVGOMAnimateMotionElement","extension":".java","size":6090,"date":"2019-10-25","sha1":"02381f2201297b70b138e4aadcc4dfebf32d2cf6","md5":"c7638e56478dbd4d467e3e8e8d26c016","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimateTransformElement.java","type":"file","name":"SVGOMAnimateTransformElement.java","base_name":"SVGOMAnimateTransformElement","extension":".java","size":5684,"date":"2019-10-25","sha1":"02bb901ee52210a2af2c1cc05c0779150a2efe8d","md5":"09409c7b0d382f98cdc6c1c1678479f1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMAnimationElement.java","type":"file","name":"SVGOMAnimationElement.java","base_name":"SVGOMAnimationElement","extension":".java","size":7194,"date":"2019-10-25","sha1":"63f337732e571df8dd1c2095ddb195bfc856f08c","md5":"fed7829f17144085d8b9c0ead5ba38cd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMCircleElement.java","type":"file","name":"SVGOMCircleElement.java","base_name":"SVGOMCircleElement","extension":".java","size":4544,"date":"2019-10-25","sha1":"ec62f849c64d1e17fb61a47f2f4144132a2c2736","md5":"6df760b094f2970f046963470f366f38","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMClipPathElement.java","type":"file","name":"SVGOMClipPathElement.java","base_name":"SVGOMClipPathElement","extension":".java","size":3770,"date":"2019-10-25","sha1":"d6abae92523f42d974f269d35ab9df90b16dc30a","md5":"2143e61c201199a5d626771161d5e3f7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMColorProfileElement.java","type":"file","name":"SVGOMColorProfileElement.java","base_name":"SVGOMColorProfileElement","extension":".java","size":7592,"date":"2019-10-25","sha1":"588d605469bf64002073b05716cf7da41eb7ea33","md5":"2f2a71a46bc01fa86c59ee588506cbb6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMComponentTransferFunctionElement.java","type":"file","name":"SVGOMComponentTransferFunctionElement.java","base_name":"SVGOMComponentTransferFunctionElement","extension":".java","size":6802,"date":"2019-10-25","sha1":"6dd0d00ad26d26c2b12a1260e088a614ebb8c08b","md5":"9d03054d4338b0033b465c796acbc8e0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMCursorElement.java","type":"file","name":"SVGOMCursorElement.java","base_name":"SVGOMCursorElement","extension":".java","size":7063,"date":"2019-10-25","sha1":"309648f2e725957c4315bc1acfc891b2d4a4c026","md5":"d76205f0acc0dd4c2e7c70d5b0801aa5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMDefinitionSrcElement.java","type":"file","name":"SVGOMDefinitionSrcElement.java","base_name":"SVGOMDefinitionSrcElement","extension":".java","size":2009,"date":"2019-10-25","sha1":"fc896d43f530d65fd91888fdd1f12c0ce7f1db0d","md5":"5fb882854279e1e557b82991cfa45473","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMDefsElement.java","type":"file","name":"SVGOMDefsElement.java","base_name":"SVGOMDefsElement","extension":".java","size":1915,"date":"2019-10-25","sha1":"7f27acf1167c3b7001ede981ec5743b8a799dc03","md5":"1b49cdc752c742953b592e0e4c5421a1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMDescElement.java","type":"file","name":"SVGOMDescElement.java","base_name":"SVGOMDescElement","extension":".java","size":1917,"date":"2019-10-25","sha1":"2dff6ee3bc59af9d0d927fc15c02ae290558ee64","md5":"4859394409d0b6efdd23328b6a5af2c1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMDocument.java","type":"file","name":"SVGOMDocument.java","base_name":"SVGOMDocument","extension":".java","size":25344,"date":"2019-10-25","sha1":"d3842f891aa337c4d864658021427f2a1031d3dc","md5":"b57640f8e34946debf3e2ec2a2a7abd0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":79,"end_line":79}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMElement.java","type":"file","name":"SVGOMElement.java","base_name":"SVGOMElement","extension":".java","size":31602,"date":"2019-10-25","sha1":"cfd38f9e4a45b9e02535023dbe25e234c6796b43","md5":"c0ac7fa63f60dd45970987d037449326","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":57,"end_line":57}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMEllipseElement.java","type":"file","name":"SVGOMEllipseElement.java","base_name":"SVGOMEllipseElement","extension":".java","size":5027,"date":"2019-10-25","sha1":"4cf768315285cabf32f040df97cc8f319ed66f72","md5":"aed82dd8d0082eee22faa2c064a1d631","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEBlendElement.java","type":"file","name":"SVGOMFEBlendElement.java","base_name":"SVGOMFEBlendElement","extension":".java","size":4758,"date":"2019-10-25","sha1":"b00a91f436a93fe18d5bc920119e240f0126fb4c","md5":"afa38f0a5111ddf0760c654c463760ae","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEColorMatrixElement.java","type":"file","name":"SVGOMFEColorMatrixElement.java","base_name":"SVGOMFEColorMatrixElement","extension":".java","size":4824,"date":"2019-10-25","sha1":"debdc47dcffd2e97234c723b54d731e3278ef1ab","md5":"df6b69643ca910e4abb6c1acf01580ab","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEComponentTransferElement.java","type":"file","name":"SVGOMFEComponentTransferElement.java","base_name":"SVGOMFEComponentTransferElement","extension":".java","size":3600,"date":"2019-10-25","sha1":"0f8bb77d5ffdd4e804ca6d114d6754f8e5eae365","md5":"17d0de5ec1a4f2d8d17a35f96f9b8f63","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFECompositeElement.java","type":"file","name":"SVGOMFECompositeElement.java","base_name":"SVGOMFECompositeElement","extension":".java","size":6392,"date":"2019-10-25","sha1":"a24c7d6b0336a09886548025d8b47b216cea22a4","md5":"5e3be5abc9623a301e6804f06f9851ae","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEConvolveMatrixElement.java","type":"file","name":"SVGOMFEConvolveMatrixElement.java","base_name":"SVGOMFEConvolveMatrixElement","extension":".java","size":11824,"date":"2019-10-25","sha1":"60b1583f7e06a8ab0ac624e61910f3c4763f8770","md5":"f774d85d2f2e3a02ef6c52e12f02620a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEDiffuseLightingElement.java","type":"file","name":"SVGOMFEDiffuseLightingElement.java","base_name":"SVGOMFEDiffuseLightingElement","extension":".java","size":7390,"date":"2019-10-25","sha1":"534308d046ab26ccde504bfb071628b69bed4543","md5":"f4af9c44a0ced9bda72794624289fea6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEDisplacementMapElement.java","type":"file","name":"SVGOMFEDisplacementMapElement.java","base_name":"SVGOMFEDisplacementMapElement","extension":".java","size":6085,"date":"2019-10-25","sha1":"90830a2b6f0110118f07e555de8e490d1da7ad31","md5":"541777c99a261bde66ec4affafe2795b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEDistantLightElement.java","type":"file","name":"SVGOMFEDistantLightElement.java","base_name":"SVGOMFEDistantLightElement","extension":".java","size":3983,"date":"2019-10-25","sha1":"d4910c3ed922e707ac97fc2749d5a42db2c2946d","md5":"87a0aadb8ef3273f32e7eed7886724ab","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEFloodElement.java","type":"file","name":"SVGOMFEFloodElement.java","base_name":"SVGOMFEFloodElement","extension":".java","size":3435,"date":"2019-10-25","sha1":"59bd2a966c2345a34c7d0e25b946689bf104fbd2","md5":"cdae4a0fa07b0d09aa0d033d3d7cfe02","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEFuncAElement.java","type":"file","name":"SVGOMFEFuncAElement.java","base_name":"SVGOMFEFuncAElement","extension":".java","size":1945,"date":"2019-10-25","sha1":"a8f1b7b06c547cddde241ea11c2e05381f031b59","md5":"6a9ed0a766062f34a4856388878ac551","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEFuncBElement.java","type":"file","name":"SVGOMFEFuncBElement.java","base_name":"SVGOMFEFuncBElement","extension":".java","size":1945,"date":"2019-10-25","sha1":"c58f10dff1f47ecae6299e205011c5bbed0be9b6","md5":"fa2bb41f6c6121c2bd0ff3a139615025","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEFuncGElement.java","type":"file","name":"SVGOMFEFuncGElement.java","base_name":"SVGOMFEFuncGElement","extension":".java","size":1945,"date":"2019-10-25","sha1":"5c786770e2adb7625ddd91dd2fb85b6c8655e03a","md5":"39ef9cf942e39826b9dae036d6496a42","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEFuncRElement.java","type":"file","name":"SVGOMFEFuncRElement.java","base_name":"SVGOMFEFuncRElement","extension":".java","size":1945,"date":"2019-10-25","sha1":"e467417063dd14ed162176a19908cb10819448a7","md5":"96a6e1865bf386543259ed728d7d5af0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEGaussianBlurElement.java","type":"file","name":"SVGOMFEGaussianBlurElement.java","base_name":"SVGOMFEGaussianBlurElement","extension":".java","size":6423,"date":"2019-10-25","sha1":"73de260f27751100dc3382881550b61df0f9e9b8","md5":"b1bb851fe0a2a8a1a94fb7c674a8e8c5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEImageElement.java","type":"file","name":"SVGOMFEImageElement.java","base_name":"SVGOMFEImageElement","extension":".java","size":6891,"date":"2019-10-25","sha1":"549923439b7e636f0e159a5b106fa81fec6d306c","md5":"67777f45daec1318777865ce6d676201","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEMergeElement.java","type":"file","name":"SVGOMFEMergeElement.java","base_name":"SVGOMFEMergeElement","extension":".java","size":1968,"date":"2019-10-25","sha1":"a6140c719f6f0a7a5451b0f997345b03eca2a0f8","md5":"9041724d05a8622b97da1eca6f891aee","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEMergeNodeElement.java","type":"file","name":"SVGOMFEMergeNodeElement.java","base_name":"SVGOMFEMergeNodeElement","extension":".java","size":3404,"date":"2019-10-25","sha1":"9f15757306e37d0ae32a802a616219e737fb9f3a","md5":"eb6dee782ffde033e5e4cda1ca08fd68","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEMorphologyElement.java","type":"file","name":"SVGOMFEMorphologyElement.java","base_name":"SVGOMFEMorphologyElement","extension":".java","size":6721,"date":"2019-10-25","sha1":"0f18b3cd9b60d23c57e12c016e26588c4257c483","md5":"3a14bc06a039f21b544c4d190799237c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEOffsetElement.java","type":"file","name":"SVGOMFEOffsetElement.java","base_name":"SVGOMFEOffsetElement","extension":".java","size":4322,"date":"2019-10-25","sha1":"5f29d04ff7b01153551803ff4ca788e5a971c3f7","md5":"cca4e1324db87a54f6b54e27c31ba446","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFEPointLightElement.java","type":"file","name":"SVGOMFEPointLightElement.java","base_name":"SVGOMFEPointLightElement","extension":".java","size":4246,"date":"2019-10-25","sha1":"bc65f46c65b04bfa49036b81703c2a52dcafe346","md5":"7f9e00a87d692758a38e15e0701cf2be","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFESpecularLightingElement.java","type":"file","name":"SVGOMFESpecularLightingElement.java","base_name":"SVGOMFESpecularLightingElement","extension":".java","size":5235,"date":"2019-10-25","sha1":"cf7f8f2d7a7bce9848f59e6c1fd05f10de0edf1c","md5":"ebd999eb1129f538a2e739301b559865","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFESpotLightElement.java","type":"file","name":"SVGOMFESpotLightElement.java","base_name":"SVGOMFESpotLightElement","extension":".java","size":6790,"date":"2019-10-25","sha1":"f0e47f32990f65962c68507b14108f561f60b671","md5":"e6268c89632d82acd68b362d8f77ac8c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFETileElement.java","type":"file","name":"SVGOMFETileElement.java","base_name":"SVGOMFETileElement","extension":".java","size":3388,"date":"2019-10-25","sha1":"67a7f8fbd24ac4542194c09831794a1d27263358","md5":"cd13e5711993264944290a73a95177d9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFETurbulenceElement.java","type":"file","name":"SVGOMFETurbulenceElement.java","base_name":"SVGOMFETurbulenceElement","extension":".java","size":8118,"date":"2019-10-25","sha1":"8c84c3509d6810c8f31b2d6b699bbb6d10ce2fca","md5":"13d43b825cc908fe2ee96b61aa215c20","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFilterElement.java","type":"file","name":"SVGOMFilterElement.java","base_name":"SVGOMFilterElement","extension":".java","size":12487,"date":"2019-10-25","sha1":"ef79deae3f263e49902e2cddafc0b93b992e618b","md5":"906ad21bb37d4d121bd436e32346e3e7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFilterPrimitiveStandardAttributes.java","type":"file","name":"SVGOMFilterPrimitiveStandardAttributes.java","base_name":"SVGOMFilterPrimitiveStandardAttributes","extension":".java","size":5826,"date":"2019-10-25","sha1":"e3093f1c6119271c8be7ea7efc86cb895af8d92c","md5":"0dc38bc71da8229301e46f8c76c33a99","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFlowDivElement.java","type":"file","name":"SVGOMFlowDivElement.java","base_name":"SVGOMFlowDivElement","extension":".java","size":2056,"date":"2019-10-25","sha1":"50db3545f6627cc987cd8e4b6b80b9e6d5eef0a2","md5":"a12234cd581993a719805dba6fce6a0e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFlowLineElement.java","type":"file","name":"SVGOMFlowLineElement.java","base_name":"SVGOMFlowLineElement","extension":".java","size":1984,"date":"2019-10-25","sha1":"ca5120fdc324e305a4097f74ea6f9949ac6a463c","md5":"7e1bc4793c04bbd52051e5714602b863","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFlowParaElement.java","type":"file","name":"SVGOMFlowParaElement.java","base_name":"SVGOMFlowParaElement","extension":".java","size":1986,"date":"2019-10-25","sha1":"b2261c9eaca9a52ac293ac62bd01712adde78d4a","md5":"1bdc3810baa2b6f739faaaf9945f2fbc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFlowRegionBreakElement.java","type":"file","name":"SVGOMFlowRegionBreakElement.java","base_name":"SVGOMFlowRegionBreakElement","extension":".java","size":2025,"date":"2019-10-25","sha1":"73775a1b2a8976f7201427eeefb767b8f6cd367b","md5":"b106a780922e4d64f235caa9ff86066f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFlowRegionElement.java","type":"file","name":"SVGOMFlowRegionElement.java","base_name":"SVGOMFlowRegionElement","extension":".java","size":1980,"date":"2019-10-25","sha1":"232e5c1efc2a7e995e3c078e50ac7a1f16db289c","md5":"91c2446518358a57e053def26eb9be89","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFlowRegionExcludeElement.java","type":"file","name":"SVGOMFlowRegionExcludeElement.java","base_name":"SVGOMFlowRegionExcludeElement","extension":".java","size":2022,"date":"2019-10-25","sha1":"cc304fa9783be0bb44828476b1ea2f015e3813a5","md5":"82a43350809204675d50b88a76ed3d87","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFlowRootElement.java","type":"file","name":"SVGOMFlowRootElement.java","base_name":"SVGOMFlowRootElement","extension":".java","size":1968,"date":"2019-10-25","sha1":"cb945b5b10a70eabeaed4af796441f66b42fd9fe","md5":"4707de93242f8e7c83f0fa322a96a731","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFlowSpanElement.java","type":"file","name":"SVGOMFlowSpanElement.java","base_name":"SVGOMFlowSpanElement","extension":".java","size":1987,"date":"2019-10-25","sha1":"9d1246873a5fc98c1c8f21ec893029c0107aaa05","md5":"685cce55177cf1d46566e2631d3f9563","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFontElement.java","type":"file","name":"SVGOMFontElement.java","base_name":"SVGOMFontElement","extension":".java","size":4398,"date":"2019-10-25","sha1":"51454abe33fd87e6018c5f7afce29073a4ff0dc1","md5":"6f7a3786db1f470b89a11e90b0481643","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFontFaceElement.java","type":"file","name":"SVGOMFontFaceElement.java","base_name":"SVGOMFontFaceElement","extension":".java","size":6445,"date":"2019-10-25","sha1":"d491e7282b7b2dda8abc52ba12736c1678561c4b","md5":"a43f716d41c047092d82c13c6d57e5fb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFontFaceFormatElement.java","type":"file","name":"SVGOMFontFaceFormatElement.java","base_name":"SVGOMFontFaceFormatElement","extension":".java","size":2674,"date":"2019-10-25","sha1":"4830d3cf066661993c06828717d79119ea1bcc25","md5":"145412cc532fb7214a695f04459c647f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFontFaceNameElement.java","type":"file","name":"SVGOMFontFaceNameElement.java","base_name":"SVGOMFontFaceNameElement","extension":".java","size":2650,"date":"2019-10-25","sha1":"38785a4718410233067b208e45b1e897415c6861","md5":"3c97119922426c26c3f18c6e23b7fbac","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFontFaceSrcElement.java","type":"file","name":"SVGOMFontFaceSrcElement.java","base_name":"SVGOMFontFaceSrcElement","extension":".java","size":1987,"date":"2019-10-25","sha1":"5e7d97596c11fd980a413e2575edc281192aa9c1","md5":"f436ce9d51ba07ec9dcfe3b5e60b97e5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMFontFaceUriElement.java","type":"file","name":"SVGOMFontFaceUriElement.java","base_name":"SVGOMFontFaceUriElement","extension":".java","size":1987,"date":"2019-10-25","sha1":"afbed3ea653ffa6e0ee6c55f8e9eb9aa199c8aa5","md5":"a27994c4c04dc3ab6ddeea81b31df09b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMForeignObjectElement.java","type":"file","name":"SVGOMForeignObjectElement.java","base_name":"SVGOMForeignObjectElement","extension":".java","size":5417,"date":"2019-10-25","sha1":"734fb2c7d37123ab017300aa3d352102f2ec527c","md5":"7c099ee62251652e4afcc1154a72c428","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMGElement.java","type":"file","name":"SVGOMGElement.java","base_name":"SVGOMGElement","extension":".java","size":1880,"date":"2019-10-25","sha1":"95f715ddb0f7623744835042b316dd39a052d1d7","md5":"e1efdf430434c74a455a2dd4d4fb5e50","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMGlyphElement.java","type":"file","name":"SVGOMGlyphElement.java","base_name":"SVGOMGlyphElement","extension":".java","size":3651,"date":"2019-10-25","sha1":"86ce58e825ef442455657cc9762263199238f263","md5":"fd707c1aa782c3cc9cc99eb3b05b2999","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMGlyphRefElement.java","type":"file","name":"SVGOMGlyphRefElement.java","base_name":"SVGOMGlyphRefElement","extension":".java","size":7831,"date":"2019-10-25","sha1":"2d0f779f6e5f83a01173ef1bb829c23d049b766f","md5":"fc22ed8c9f3494ce0f2a1efe2226004c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMGradientElement.java","type":"file","name":"SVGOMGradientElement.java","base_name":"SVGOMGradientElement","extension":".java","size":7439,"date":"2019-10-25","sha1":"ae6d6b245f0aa0b0e4065b172adcc3c9e608a93b","md5":"da7e14162babf1b925beb39d78ada6dd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMHandlerElement.java","type":"file","name":"SVGOMHandlerElement.java","base_name":"SVGOMHandlerElement","extension":".java","size":1913,"date":"2019-10-25","sha1":"41508b974191ee46773b80b66fe4a7d97d15aa7d","md5":"70e42b925c505f81ba52447990544dc9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMHKernElement.java","type":"file","name":"SVGOMHKernElement.java","base_name":"SVGOMHKernElement","extension":".java","size":3013,"date":"2019-10-25","sha1":"34ba9b4e783a96b0fabf3aadf21d6767461eac88","md5":"687b0c73243a4229d30fc8ceeb11bffa","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMImageElement.java","type":"file","name":"SVGOMImageElement.java","base_name":"SVGOMImageElement","extension":".java","size":6965,"date":"2019-10-25","sha1":"a77f8792fc9d7355987aa685d8e3520d880ddb34","md5":"0bab649055f173d444c875520d6644f4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMLength.java","type":"file","name":"SVGOMLength.java","base_name":"SVGOMLength","extension":".java","size":1738,"date":"2019-10-25","sha1":"95b04bb1ea99c5c85f1dd89c5a8f38328d09afcb","md5":"fa7311c5d2d18f5823b96c6680902e53","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":31,"end_line":32}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMLinearGradientElement.java","type":"file","name":"SVGOMLinearGradientElement.java","base_name":"SVGOMLinearGradientElement","extension":".java","size":5253,"date":"2019-10-25","sha1":"a6d51ac3b91e98438013648f0ce752d6a9de0783","md5":"3f1465fd95fa5b2e7c93c87d48d7bba2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMLineElement.java","type":"file","name":"SVGOMLineElement.java","base_name":"SVGOMLineElement","extension":".java","size":5021,"date":"2019-10-25","sha1":"a2a451ea1e76b0b896059c22a590597a98a8df61","md5":"004ce9357d9f0256b4a43930300b1170","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMMarkerElement.java","type":"file","name":"SVGOMMarkerElement.java","base_name":"SVGOMMarkerElement","extension":".java","size":13495,"date":"2019-10-25","sha1":"84d70c9a6e76cb7e4edeae8b5ce647949bacf211","md5":"789ddc64ff68f84b6526c5e9993e4e05","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMMaskElement.java","type":"file","name":"SVGOMMaskElement.java","base_name":"SVGOMMaskElement","extension":".java","size":6492,"date":"2019-10-25","sha1":"6998794e347e00cfb41148fa64ff220c003122b8","md5":"5d00a57db5bb4429df7f66be93f9f71e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMMetadataElement.java","type":"file","name":"SVGOMMetadataElement.java","base_name":"SVGOMMetadataElement","extension":".java","size":1979,"date":"2019-10-25","sha1":"8faf9a766c99a9942d55f2f89187c67a5471928c","md5":"5771e5220596c5f4d2325aab58b0256b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMMissingGlyphElement.java","type":"file","name":"SVGOMMissingGlyphElement.java","base_name":"SVGOMMissingGlyphElement","extension":".java","size":3261,"date":"2019-10-25","sha1":"d328a3a1942144cfb3bc12d217e445f66496ced6","md5":"5c6ce02742db8aa1663d8baaf6f27772","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMMPathElement.java","type":"file","name":"SVGOMMPathElement.java","base_name":"SVGOMMPathElement","extension":".java","size":4893,"date":"2019-10-25","sha1":"527befda0ea99bc83ab372e9d27d56ae23a159d2","md5":"b84b075f962de46f61e4a381b963b593","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMMultiImageElement.java","type":"file","name":"SVGOMMultiImageElement.java","base_name":"SVGOMMultiImageElement","extension":".java","size":2799,"date":"2019-10-25","sha1":"118190e8e2939dd93e883c0aa9b980cce7cb55bc","md5":"eb9cc85cfcd7ce0eba3272877a931077","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMPathElement.java","type":"file","name":"SVGOMPathElement.java","base_name":"SVGOMPathElement","extension":".java","size":31708,"date":"2019-10-25","sha1":"71b1a65cc3f74d785da00587f7ead2ae1ef8c40d","md5":"764c47186738bc76a17ea2ab326b7917","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":55,"end_line":55}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMPatternElement.java","type":"file","name":"SVGOMPatternElement.java","base_name":"SVGOMPatternElement","extension":".java","size":12763,"date":"2019-10-25","sha1":"b8b8fbf0d701b45b2e0fad710dcd2326878c85d8","md5":"7466650e56299a024fbce192b337a128","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMPolygonElement.java","type":"file","name":"SVGOMPolygonElement.java","base_name":"SVGOMPolygonElement","extension":".java","size":1950,"date":"2019-10-25","sha1":"bec0c0151727ad9fdef315eae79a20b757097a6f","md5":"23d62f742432f7011dacedd53da04597","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMPolylineElement.java","type":"file","name":"SVGOMPolylineElement.java","base_name":"SVGOMPolylineElement","extension":".java","size":1961,"date":"2019-10-25","sha1":"59f8b85c65f9b7b92e68cc867d7b97ab182295b9","md5":"fabad181063d5387a198f26fc716c1fa","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMRadialGradientElement.java","type":"file","name":"SVGOMRadialGradientElement.java","base_name":"SVGOMRadialGradientElement","extension":".java","size":6850,"date":"2019-10-25","sha1":"e05b28cede661c8ccf4eb85b3300efe2e0b49126","md5":"91d984a8ff42e25c9ac121ebab7c0de3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMRectElement.java","type":"file","name":"SVGOMRectElement.java","base_name":"SVGOMRectElement","extension":".java","size":8893,"date":"2019-10-25","sha1":"c6610e5e6fc345d149f4234bfb7f115db5336502","md5":"bc6f46eb8d5be5b92a16c2772d5a4fd9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMScriptElement.java","type":"file","name":"SVGOMScriptElement.java","base_name":"SVGOMScriptElement","extension":".java","size":5421,"date":"2019-10-25","sha1":"ab2853245f7a47618c316a5c1dc384898fd51165","md5":"d3d14eaa2c9ae253aa2cf7b47a2d89cf","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMSetElement.java","type":"file","name":"SVGOMSetElement.java","base_name":"SVGOMSetElement","extension":".java","size":3874,"date":"2019-10-25","sha1":"e390b22d05eca652388af4123027fab2484ca9a6","md5":"8a310ff79187b2a884726eb6ad6c0372","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMSolidColorElement.java","type":"file","name":"SVGOMSolidColorElement.java","base_name":"SVGOMSolidColorElement","extension":".java","size":1980,"date":"2019-10-25","sha1":"598f07481d0a1caa0590029f943a29cfca7cc492","md5":"ef9e136e71887600280f928bfd2d4211","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMStopElement.java","type":"file","name":"SVGOMStopElement.java","base_name":"SVGOMStopElement","extension":".java","size":3425,"date":"2019-10-25","sha1":"316e30ed809c56c15f8129bbd6a18f490631f042","md5":"4352d512707dfbfcc51979f9ed06cf8c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMStyleElement.java","type":"file","name":"SVGOMStyleElement.java","base_name":"SVGOMStyleElement","extension":".java","size":8048,"date":"2019-10-25","sha1":"1b62f1a8e7b31b0e8ca18f03199acf7a3c80f36e","md5":"1a28e8aa0f2056f371ec8ea71fde9a7b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMSubImageElement.java","type":"file","name":"SVGOMSubImageElement.java","base_name":"SVGOMSubImageElement","extension":".java","size":2717,"date":"2019-10-25","sha1":"b26d5ffa6fc86505c0979189cb669660f2f3b8f2","md5":"9d703481d0041ceca9f57674bb4ecf70","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMSubImageRefElement.java","type":"file","name":"SVGOMSubImageRefElement.java","base_name":"SVGOMSubImageRefElement","extension":".java","size":2736,"date":"2019-10-25","sha1":"025abfb1ec5a04244e7a993bf08f79e3044440da","md5":"fd8d65eaf9ca8766142cd107c657affd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMSVGElement.java","type":"file","name":"SVGOMSVGElement.java","base_name":"SVGOMSVGElement","extension":".java","size":29410,"date":"2019-10-25","sha1":"20950550ea9775f1924f4bdde551f6d6e6d685ca","md5":"c56dc438025c487a21ab52118d676586","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":73,"end_line":73}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMSwitchElement.java","type":"file","name":"SVGOMSwitchElement.java","base_name":"SVGOMSwitchElement","extension":".java","size":1936,"date":"2019-10-25","sha1":"a3688d5960a5db03da1b245b1f535fd4b334a009","md5":"46b7748be02ad8eba49f0b6b7d266fbb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMSymbolElement.java","type":"file","name":"SVGOMSymbolElement.java","base_name":"SVGOMSymbolElement","extension":".java","size":6706,"date":"2019-10-25","sha1":"0f0401ff42a235c1c68a8f36ca63d42770547c1e","md5":"b71ff6dbdcec47c686c75c781daf4551","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMTextContentElement.java","type":"file","name":"SVGOMTextContentElement.java","base_name":"SVGOMTextContentElement","extension":".java","size":10531,"date":"2019-10-25","sha1":"8feefee097194b3d90a3f4d5b84bbaa1eff0014d","md5":"aab2e4220d01442facaa5a6681cbe6ff","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMTextElement.java","type":"file","name":"SVGOMTextElement.java","base_name":"SVGOMTextElement","extension":".java","size":7194,"date":"2019-10-25","sha1":"fe41f9c3581462aa3c43917d00725d543f07e166","md5":"b9ec278a1326852536d335991fc24691","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMTextPathElement.java","type":"file","name":"SVGOMTextPathElement.java","base_name":"SVGOMTextPathElement","extension":".java","size":6864,"date":"2019-10-25","sha1":"d63fa0e015126488cea9bd78a58623853041160e","md5":"b9c3737b06c589cd94029d1a3ea1acc7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMTextPositioningElement.java","type":"file","name":"SVGOMTextPositioningElement.java","base_name":"SVGOMTextPositioningElement","extension":".java","size":5709,"date":"2019-10-25","sha1":"c1ac31b3ac60a27d6991879c1ebb1a9d0681e5be","md5":"dc7a9105799bd78b626775ccb47de748","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMTitleElement.java","type":"file","name":"SVGOMTitleElement.java","base_name":"SVGOMTitleElement","extension":".java","size":1944,"date":"2019-10-25","sha1":"1cdc08d6e23e15816ca50abd2742a22f5d02721e","md5":"3c120978481da717683f93ffafe9be43","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMToBeImplementedElement.java","type":"file","name":"SVGOMToBeImplementedElement.java","base_name":"SVGOMToBeImplementedElement","extension":".java","size":3501,"date":"2019-10-25","sha1":"6ba139ddcf7a2aab1fa2e9de69fce1fa3834e9cd","md5":"9cb2aae3e4ce1cc6cd3c0bf2f9768c13","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMTRefElement.java","type":"file","name":"SVGOMTRefElement.java","base_name":"SVGOMTRefElement","extension":".java","size":1933,"date":"2019-10-25","sha1":"b2228cec6252849be2846434e8e9906526d37595","md5":"3e730fa927d822520c16503649fc0e1a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMTSpanElement.java","type":"file","name":"SVGOMTSpanElement.java","base_name":"SVGOMTSpanElement","extension":".java","size":1934,"date":"2019-10-25","sha1":"5a9f89b803652a08f70c47e28bd6e7dc09dd168a","md5":"104117da8cdb907a93281730265f047a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMURIReferenceElement.java","type":"file","name":"SVGOMURIReferenceElement.java","base_name":"SVGOMURIReferenceElement","extension":".java","size":3122,"date":"2019-10-25","sha1":"8575cc1837ba01642ff8b3008424671e6f1714b6","md5":"0fc9b77c0ea30d906e320f9a3d5e1d1c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMUseElement.java","type":"file","name":"SVGOMUseElement.java","base_name":"SVGOMUseElement","extension":".java","size":8078,"date":"2019-10-25","sha1":"83a8094c0fb1493bee62aff824fa0a8f717c09c6","md5":"964c918b6ae764febc14c7a6b1ac873a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMViewElement.java","type":"file","name":"SVGOMViewElement.java","base_name":"SVGOMViewElement","extension":".java","size":6818,"date":"2019-10-25","sha1":"7e9fe15b3e59c61f3bf17ddb7d13c1082d148813","md5":"4086fc1e773162b6bf51f291b403c067","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGOMVKernElement.java","type":"file","name":"SVGOMVKernElement.java","base_name":"SVGOMVKernElement","extension":".java","size":3013,"date":"2019-10-25","sha1":"49777ffb307be82bfa61ffa25003f5b5bb4c6324","md5":"d51de3acf1ceb962bfd5cc5c7acde324","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGPathSupport.java","type":"file","name":"SVGPathSupport.java","base_name":"SVGPathSupport","extension":".java","size":3354,"date":"2019-10-25","sha1":"c3c6bcbece406d4b17fe9f1da6ee33d0a213a830","md5":"dc7c2be337d0cff56f20098437fbbb22","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGPointShapeElement.java","type":"file","name":"SVGPointShapeElement.java","base_name":"SVGPointShapeElement","extension":".java","size":3608,"date":"2019-10-25","sha1":"e82efb4433b2590d374b69a6ec8550a15e06a848","md5":"164b7cd8603eeeaff71ce2b3988e01ad","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGStylableElement.java","type":"file","name":"SVGStylableElement.java","base_name":"SVGStylableElement","extension":".java","size":25076,"date":"2019-10-25","sha1":"2e35aa9e268fb5e990d5452932fbb11d03e7133e","md5":"58d704608c3dc1ad41e3ca37da8277fb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":51,"end_line":51}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGStyleSheetProcessingInstruction.java","type":"file","name":"SVGStyleSheetProcessingInstruction.java","base_name":"SVGStyleSheetProcessingInstruction","extension":".java","size":3996,"date":"2019-10-25","sha1":"05e009d1d0016cef59128e61fa102b6d255344a3","md5":"53242e58903d200b7cdaaf4b98801395","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGTextContentSupport.java","type":"file","name":"SVGTextContentSupport.java","base_name":"SVGTextContentSupport","extension":".java","size":10371,"date":"2019-10-25","sha1":"90b30f9d177679995e1ef1aa9b7c45e9793d6560","md5":"d565ab2c8e97eb24929c8c45d1151a39","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":35,"end_line":36}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGURIReferenceGraphicsElement.java","type":"file","name":"SVGURIReferenceGraphicsElement.java","base_name":"SVGURIReferenceGraphicsElement","extension":".java","size":3156,"date":"2019-10-25","sha1":"928614cb7cbd4cb8df843492736c8cca00e7a88f","md5":"b1ce170e55e10feb7e4922bd774fc994","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/SVGURIReferenceTextPositioningElement.java","type":"file","name":"SVGURIReferenceTextPositioningElement.java","base_name":"SVGURIReferenceTextPositioningElement","extension":".java","size":3346,"date":"2019-10-25","sha1":"9c5faaed0a09d6484f0b3ef21d1e2038656e51cb","md5":"bbb2e7adb7b3f16ae4ec2ca02357c55a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/TraitInformation.java","type":"file","name":"TraitInformation.java","base_name":"TraitInformation","extension":".java","size":3211,"date":"2019-10-25","sha1":"0ef8dc39c56524248497b01b44cc09fc759c94e4","md5":"34537e22e287c7af9d21c05c8db906e8","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/XBLEventSupport.java","type":"file","name":"XBLEventSupport.java","base_name":"XBLEventSupport","extension":".java","size":19829,"date":"2019-10-25","sha1":"3f2472858f8c8d62656bdeeac4adbd0476480ba0","md5":"c0a5d1c86f96e7da7d6c594a6cafb374","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/XBLOMContentElement.java","type":"file","name":"XBLOMContentElement.java","base_name":"XBLOMContentElement","extension":".java","size":1844,"date":"2019-10-25","sha1":"ad91c1cc69ca39210023055692388f82ceb8d02d","md5":"6fa97ff9026bc671de31ed5f8e79bec9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/XBLOMDefinitionElement.java","type":"file","name":"XBLOMDefinitionElement.java","base_name":"XBLOMDefinitionElement","extension":".java","size":2849,"date":"2019-10-25","sha1":"462d21a564894ae480bc20d4695cff3941c19d24","md5":"d9b10977fc4777750aebb701ebd36102","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/XBLOMElement.java","type":"file","name":"XBLOMElement.java","base_name":"XBLOMElement","extension":".java","size":4220,"date":"2019-10-25","sha1":"447b53bf5ebb8c0613c3955f6f0e7883f1e9ef1b","md5":"894e2d6a1f0a1faeae77cfc257565d67","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/XBLOMHandlerGroupElement.java","type":"file","name":"XBLOMHandlerGroupElement.java","base_name":"XBLOMHandlerGroupElement","extension":".java","size":1890,"date":"2019-10-25","sha1":"a81d379e115dcdc009e664b57bf7db5510dece78","md5":"e8c89ee4d6fb3b6767b538acf3bdefa6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/XBLOMImportElement.java","type":"file","name":"XBLOMImportElement.java","base_name":"XBLOMImportElement","extension":".java","size":1835,"date":"2019-10-25","sha1":"26e3b02cb92025075058c159d4f3ecbf909f14c4","md5":"471fb3fde5f6b132dd3b6a51a51849b7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/XBLOMShadowTreeElement.java","type":"file","name":"XBLOMShadowTreeElement.java","base_name":"XBLOMShadowTreeElement","extension":".java","size":3171,"date":"2019-10-25","sha1":"0287a07fb6403ece05bc74ced24775fe780baca4","md5":"8069371fa2e880242554588ec2c290d1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/XBLOMTemplateElement.java","type":"file","name":"XBLOMTemplateElement.java","base_name":"XBLOMTemplateElement","extension":".java","size":1854,"date":"2019-10-25","sha1":"b69e5aa6b9518e68d3dfccf6f792ab4cacc863e8","md5":"33ca6620ed72e398fc02bbada256068d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/dom/XBLOMXBLElement.java","type":"file","name":"XBLOMXBLElement.java","base_name":"XBLOMXBLElement","extension":".java","size":1808,"date":"2019-10-25","sha1":"57eaa76c272e10150201c3e3a256728ca57674d9","md5":"e642ee0d937882ac820e1def2fe329ce","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing","type":"directory","name":"timing","base_name":"timing","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":19,"dirs_count":0,"size_count":125104,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/AccesskeyTimingSpecifier.java","type":"file","name":"AccesskeyTimingSpecifier.java","base_name":"AccesskeyTimingSpecifier","extension":".java","size":5055,"date":"2019-10-25","sha1":"de84d9bc41c32aa3b263fa5fc2dd98497f419231","md5":"8a2c6ab74dd9b5b4ac874b82acdb91a8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/EventbaseTimingSpecifier.java","type":"file","name":"EventbaseTimingSpecifier.java","base_name":"EventbaseTimingSpecifier","extension":".java","size":4091,"date":"2019-10-25","sha1":"bc4a35ea42127621502bba2c44e9bb8f8f05c929","md5":"5f54868619a7666cb001de7408449bcd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/EventLikeTimingSpecifier.java","type":"file","name":"EventLikeTimingSpecifier.java","base_name":"EventLikeTimingSpecifier","extension":".java","size":1799,"date":"2019-10-25","sha1":"d2ed81a994b1fe7fa201f8ad0cb94296fc5dbb6d","md5":"53a14341cd5601c9b8394e962071c68f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/IndefiniteTimingSpecifier.java","type":"file","name":"IndefiniteTimingSpecifier.java","base_name":"IndefiniteTimingSpecifier","extension":".java","size":2221,"date":"2019-10-25","sha1":"8c1145594e25ac3e2a3e1004cee87719ced11059","md5":"67dc98965e6793aa9fb263b57c491b7f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/InstanceTime.java","type":"file","name":"InstanceTime.java","base_name":"InstanceTime","extension":".java","size":3864,"date":"2019-10-25","sha1":"4118652a761912d8f7b7a00e2334e3ce7a19e381","md5":"003ce46d77e2d1d1d26504ee38efc34b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/Interval.java","type":"file","name":"Interval.java","base_name":"Interval","extension":".java","size":5681,"date":"2019-10-25","sha1":"ab5b3ee4fab7780992804c676289ca359acb6247","md5":"57dfdf463e6b5a74530841c85d57d61a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/MediaMarkerTimingSpecifier.java","type":"file","name":"MediaMarkerTimingSpecifier.java","base_name":"MediaMarkerTimingSpecifier","extension":".java","size":2329,"date":"2019-10-25","sha1":"da5426f6ba01a7e9d5a1776b9e8b86a7bc44ff2f","md5":"73f2b4a175ceebecfcb8e8dc09e32a06","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/OffsetTimingSpecifier.java","type":"file","name":"OffsetTimingSpecifier.java","base_name":"OffsetTimingSpecifier","extension":".java","size":2164,"date":"2019-10-25","sha1":"cc06badec3e652176c4c0d9026201a5a83981023","md5":"f8cf9ced85b540778367f05139533fb7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/RepeatTimingSpecifier.java","type":"file","name":"RepeatTimingSpecifier.java","base_name":"RepeatTimingSpecifier","extension":".java","size":2910,"date":"2019-10-25","sha1":"c9143b82d9332bf161da201e7f0253f49da6e31b","md5":"8e4e6b937264b0aeeed2651241464bde","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/SyncbaseTimingSpecifier.java","type":"file","name":"SyncbaseTimingSpecifier.java","base_name":"SyncbaseTimingSpecifier","extension":".java","size":4823,"date":"2019-10-25","sha1":"b27c348ce395c2bd22991d0035770a060bfd7a95","md5":"4384affd8c15473319f9aab5621f9a87","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/TimeContainer.java","type":"file","name":"TimeContainer.java","base_name":"TimeContainer","extension":".java","size":4820,"date":"2019-10-25","sha1":"7aab41633fcf832643c9320b44f4909ff6133d7e","md5":"6b143f901079d42fbc4501fc3d1482e4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/TimedDocumentRoot.java","type":"file","name":"TimedDocumentRoot.java","base_name":"TimedDocumentRoot","extension":".java","size":8900,"date":"2019-10-25","sha1":"e1d52d6a6c7deb30b983afc508e9ac2dfc2486f1","md5":"36efbdd3519fdf07122201c605da2868","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/TimedElement.java","type":"file","name":"TimedElement.java","base_name":"TimedElement","extension":".java","size":56152,"date":"2019-10-25","sha1":"334ccf164f6dd3e05800d84dfc97c949f20f60ff","md5":"817a243cc419bcbe6ed95b92c836826d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/TimegraphAdapter.java","type":"file","name":"TimegraphAdapter.java","base_name":"TimegraphAdapter","extension":".java","size":3246,"date":"2019-10-25","sha1":"488373b5cc721c0bf740277c10e0438a9c76ec76","md5":"a9f582a92cdc6860a3bdda4212665cc5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/TimegraphListener.java","type":"file","name":"TimegraphListener.java","base_name":"TimegraphListener","extension":".java","size":3085,"date":"2019-10-25","sha1":"05dea2a392fee990bd73f6d3cc61a85ec4cf73dd","md5":"6571fd4437b6b876af48cafddabaefa0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/TimingSpecifier.java","type":"file","name":"TimingSpecifier.java","base_name":"TimingSpecifier","extension":".java","size":3519,"date":"2019-10-25","sha1":"03715794707e6bf0b3e21e14dd1910e22d2ad371","md5":"32c71ec440f67d9380a86e7000c192ce","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/TimingSpecifierListProducer.java","type":"file","name":"TimingSpecifierListProducer.java","base_name":"TimingSpecifierListProducer","extension":".java","size":5947,"date":"2019-10-25","sha1":"9c0e382f267a3a2343cc50aef9c2bd1b68da30da","md5":"cb57c73d8f48b56ae0db4e0ee02c1807","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/Trace.java","type":"file","name":"Trace.java","base_name":"Trace","extension":".java","size":2161,"date":"2019-10-25","sha1":"fb851654b8087527ac693389735a7370990c46e7","md5":"17ab5e1c1878b6f0761669efd2faa492","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/timing/WallclockTimingSpecifier.java","type":"file","name":"WallclockTimingSpecifier.java","base_name":"WallclockTimingSpecifier","extension":".java","size":2337,"date":"2019-10-25","sha1":"509596cd526dab38b969f18aef8484c2fc21bfef","md5":"cb2763823cf05c3c3eb327fc9b2167c9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values","type":"directory","name":"values","base_name":"values","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":23,"dirs_count":0,"size_count":134010,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableAngleOrIdentValue.java","type":"file","name":"AnimatableAngleOrIdentValue.java","base_name":"AnimatableAngleOrIdentValue","extension":".java","size":5744,"date":"2019-10-25","sha1":"1ea3304a8dc076cf5ae55f16ca1e05d78cd9d3c9","md5":"0fbb93ea644c18e853747bdd159aa4e1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableAngleValue.java","type":"file","name":"AnimatableAngleValue.java","base_name":"AnimatableAngleValue","extension":".java","size":4504,"date":"2019-10-25","sha1":"5f991e6df2ea81c41fd4a04848dafca3dccbd262","md5":"865b61917167834ae1c71ad21e3d485b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableBooleanValue.java","type":"file","name":"AnimatableBooleanValue.java","base_name":"AnimatableBooleanValue","extension":".java","size":3393,"date":"2019-10-25","sha1":"589c3b4776b8e7c65400497d49582966232e0935","md5":"45e23458ed2f778bd7342168ab388350","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableColorValue.java","type":"file","name":"AnimatableColorValue.java","base_name":"AnimatableColorValue","extension":".java","size":4380,"date":"2019-10-25","sha1":"47145f19a8a35dcf8e5a6a0304abd7d1d083ede2","md5":"2b22c8f16054d6129e65a156b324d8ac","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableIntegerValue.java","type":"file","name":"AnimatableIntegerValue.java","base_name":"AnimatableIntegerValue","extension":".java","size":3597,"date":"2019-10-25","sha1":"08692784f09f0b3f8fb82b08b10197dc85a1ee5e","md5":"9905d9372af623178db0ccdd889afb47","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableLengthListValue.java","type":"file","name":"AnimatableLengthListValue.java","base_name":"AnimatableLengthListValue","extension":".java","size":7998,"date":"2019-10-25","sha1":"7ba0fbea4c76542b2bfca093024740f78c5a4186","md5":"91118b153595172a62a75bc65e16d794","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableLengthOrIdentValue.java","type":"file","name":"AnimatableLengthOrIdentValue.java","base_name":"AnimatableLengthOrIdentValue","extension":".java","size":6237,"date":"2019-10-25","sha1":"7fa80a58f51bac29e842662e46e9e441eeda63e9","md5":"cfb3249dfe0d9bede2929854a68bf59c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableLengthValue.java","type":"file","name":"AnimatableLengthValue.java","base_name":"AnimatableLengthValue","extension":".java","size":7474,"date":"2019-10-25","sha1":"8c76e3f7f4dad342136a112c0785391e5f6b5254","md5":"effc9a8b22c32a1fff7e6091f1b0c024","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableMotionPointValue.java","type":"file","name":"AnimatableMotionPointValue.java","base_name":"AnimatableMotionPointValue","extension":".java","size":4879,"date":"2019-10-25","sha1":"0ca7a7371e12c4f94d2b7a92c3d4320bacf0644d","md5":"459c669be2632c352b06d76871d50518","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableNumberListValue.java","type":"file","name":"AnimatableNumberListValue.java","base_name":"AnimatableNumberListValue","extension":".java","size":4722,"date":"2019-10-25","sha1":"757f4412baceca39eb33ddf99f7b1e04ad828af0","md5":"c357c21b07f0050582fd84c23b224d30","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableNumberOptionalNumberValue.java","type":"file","name":"AnimatableNumberOptionalNumberValue.java","base_name":"AnimatableNumberOptionalNumberValue","extension":".java","size":5328,"date":"2019-10-25","sha1":"a6e5a3a332c0d3890c81c5acbb4426bf5d8ea6fd","md5":"2566ecc7ef035e3f244ef696a26e5547","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableNumberOrIdentValue.java","type":"file","name":"AnimatableNumberOrIdentValue.java","base_name":"AnimatableNumberOrIdentValue","extension":".java","size":6012,"date":"2019-10-25","sha1":"9516e34ad361d1f6b90c278759ba440b140fd2dd","md5":"2b4de08f8392d048296b35421240944f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableNumberOrPercentageValue.java","type":"file","name":"AnimatableNumberOrPercentageValue.java","base_name":"AnimatableNumberOrPercentageValue","extension":".java","size":4953,"date":"2019-10-25","sha1":"e816aa88ffd9263baed74a205314fcf6d94582be","md5":"ff852a3a0be2ae67b4e999bd82d14dbf","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableNumberValue.java","type":"file","name":"AnimatableNumberValue.java","base_name":"AnimatableNumberValue","extension":".java","size":3546,"date":"2019-10-25","sha1":"e955ea5510df3b6ece8afd2a2e293818bf477a62","md5":"121f7f3f1b0e1313df18e3bf0b084e58","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatablePaintValue.java","type":"file","name":"AnimatablePaintValue.java","base_name":"AnimatablePaintValue","extension":".java","size":8996,"date":"2019-10-25","sha1":"5ac4efa5773aa93d4bc3ffc5ae64007653c90b98","md5":"2f6512c6121add3d694b0992c057c1a4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatablePathDataValue.java","type":"file","name":"AnimatablePathDataValue.java","base_name":"AnimatablePathDataValue","extension":".java","size":6449,"date":"2019-10-25","sha1":"b7476f11523a85215b85841d207adc9df8ed532f","md5":"f8a2116a52d36d8c76e9f2914a9fe276","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatablePercentageValue.java","type":"file","name":"AnimatablePercentageValue.java","base_name":"AnimatablePercentageValue","extension":".java","size":2448,"date":"2019-10-25","sha1":"641d3f0270cbe871dc73727bf55b77a660ed75dc","md5":"7d25a12ad8612bacb9d8feffec760e35","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatablePointListValue.java","type":"file","name":"AnimatablePointListValue.java","base_name":"AnimatablePointListValue","extension":".java","size":2733,"date":"2019-10-25","sha1":"73956125de61003976b6f51023d4f0f47016c77a","md5":"6b0d4a26bf60b68d4bd1a24e11215433","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatablePreserveAspectRatioValue.java","type":"file","name":"AnimatablePreserveAspectRatioValue.java","base_name":"AnimatablePreserveAspectRatioValue","extension":".java","size":5386,"date":"2019-10-25","sha1":"12cfe7c58092516bfbbae1c09c2cc5a68b746718","md5":"5bfe22f8fff69905acc7260b404b35a6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableRectValue.java","type":"file","name":"AnimatableRectValue.java","base_name":"AnimatableRectValue","extension":".java","size":4907,"date":"2019-10-25","sha1":"17f1cb0af3d7c0971bbab6b4f05611a8979e0f02","md5":"7f99f5d74c4cd857f423c78bb14c28b4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableStringValue.java","type":"file","name":"AnimatableStringValue.java","base_name":"AnimatableStringValue","extension":".java","size":3405,"date":"2019-10-25","sha1":"85769e7962a63d3cd1758ef6823bc8e009c9a5b5","md5":"71b85230c8ec1044ad4cbdad14524624","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableTransformListValue.java","type":"file","name":"AnimatableTransformListValue.java","base_name":"AnimatableTransformListValue","extension":".java","size":22435,"date":"2019-10-25","sha1":"ec4d93aff4bdfe810a37333f4331cbf3c4aaf454","md5":"aa7ba4533cc0799c73d2a0850fa7abf9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/java/org/apache/batik/anim/values/AnimatableValue.java","type":"file","name":"AnimatableValue.java","base_name":"AnimatableValue","extension":".java","size":4484,"date":"2019-10-25","sha1":"42de02745ea9f051f8acc2b90aa2bde2cf4e4393","md5":"03128b636b6c8788a69de631b9faea5a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":7,"size_count":4327,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":6,"size_count":4327,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":5,"size_count":4327,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":4,"size_count":4327,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/resources/org/apache/batik/anim","type":"directory","name":"anim","base_name":"anim","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":3,"size_count":4327,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/resources/org/apache/batik/anim/dom","type":"directory","name":"dom","base_name":"dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":1,"size_count":3019,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/resources/org/apache/batik/anim/dom/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":3019,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/resources/org/apache/batik/anim/dom/resources/dtdids.properties","type":"file","name":"dtdids.properties","base_name":"dtdids","extension":".properties","size":2854,"date":"2019-10-25","sha1":"a0383a47ea96c6972bbd455bb8683efbf1c31bc7","md5":"33ab99470307c8f966554c67fbf82d05","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":68,"end_line":68}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/resources/org/apache/batik/anim/dom/resources/UserAgentStyleSheet.css","type":"file","name":"UserAgentStyleSheet.css","base_name":"UserAgentStyleSheet","extension":".css","size":165,"date":"2019-10-25","sha1":"ff6757b39b1f8dc77ba4e637e239e600e39234ac","md5":"ddf44fd7725aa2d86b6f9601a0a61731","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/resources/org/apache/batik/anim/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1308,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/main/resources/org/apache/batik/anim/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":1308,"date":"2019-10-25","sha1":"9bf570cc261612e5542492143c79a525b42435f7","md5":"ca161344618a21a956bdade77285fdbc","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-anim/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util","type":"directory","name":"batik-awt-util","base_name":"batik-awt-util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":163,"dirs_count":31,"size_count":1474545,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2137,"date":"2019-10-25","sha1":"125f60532aed9d632e2d3f6b807148f719bbb85b","md5":"6f9284e6061cea26a486739cd5065b37","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-awt-util","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-awt-util\nBatik AWT utilities","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/xmlgraphics-commons","requirement":"${xmlgraphics.commons.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-awt-util@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-awt-util@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-awt-util/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-awt-util/1.12/batik-awt-util-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-awt-util/1.12/batik-awt-util-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":162,"dirs_count":30,"size_count":1472408,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":162,"dirs_count":26,"size_count":1472408,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":160,"dirs_count":14,"size_count":1469102,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":160,"dirs_count":13,"size_count":1469102,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":160,"dirs_count":12,"size_count":1469102,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":160,"dirs_count":11,"size_count":1469102,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext","type":"directory","name":"ext","base_name":"ext","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":160,"dirs_count":10,"size_count":1469102,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt","type":"directory","name":"awt","base_name":"awt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":154,"dirs_count":8,"size_count":1432953,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/AreaOfInterestHintKey.java","type":"file","name":"AreaOfInterestHintKey.java","base_name":"AreaOfInterestHintKey","extension":".java","size":1500,"date":"2019-10-25","sha1":"bbbba3120da7d4f87fd80bef28579bd6966c9fb5","md5":"e01fade7225dd598c6a5758116994cd5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/AvoidTilingHintKey.java","type":"file","name":"AvoidTilingHintKey.java","base_name":"AvoidTilingHintKey","extension":".java","size":1523,"date":"2019-10-25","sha1":"f3f06d94f884f3ed91a434a03bbdb74e322fd296","md5":"c537abd29eb5d2c17db88ce9a99513e5","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/BufferedImageHintKey.java","type":"file","name":"BufferedImageHintKey.java","base_name":"BufferedImageHintKey","extension":".java","size":1699,"date":"2019-10-25","sha1":"590328d9d6f398f736079b7814a9f3528eca0be7","md5":"6360fbd51298ab5a89f1a5e3f463b6f5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/ColorSpaceHintKey.java","type":"file","name":"ColorSpaceHintKey.java","base_name":"ColorSpaceHintKey","extension":".java","size":2945,"date":"2019-10-25","sha1":"f2c9bca8b9e9cb553362b72d083f190c1543fd9a","md5":"51a6a72f3ff56731bf557371579e2012","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/LinearGradientPaint.java","type":"file","name":"LinearGradientPaint.java","base_name":"LinearGradientPaint","extension":".java","size":13717,"date":"2019-10-25","sha1":"84430db539af653c7aebdd224696f954dac3720d","md5":"16932a66af4ebc3f23ba7049a906818a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Nicholas Talian, Vincent Hardy, Jim Graham, Jerry Evans","start_line":81,"end_line":85}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":82,"end_line":82}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/LinearGradientPaintContext.java","type":"file","name":"LinearGradientPaintContext.java","base_name":"LinearGradientPaintContext","extension":".java","size":21746,"date":"2019-10-25","sha1":"07e4855eeeb9d0465715e1a4ebb64097d5ca8e16","md5":"39ddaf7da767fae33dc067d43c661d96","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Nicholas Talian, Vincent Hardy, Jim Graham, Jerry Evans","start_line":34,"end_line":38}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/MultipleGradientPaint.java","type":"file","name":"MultipleGradientPaint.java","base_name":"MultipleGradientPaint","extension":".java","size":8384,"date":"2019-10-25","sha1":"b8f06ecd221019befadedb8ea6a71745600b403d","md5":"e2a4160a968d03acc6ea356a51fa2e85","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Nicholas Talian, Vincent Hardy, Jim Graham, Jerry Evans","start_line":30,"end_line":32}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/MultipleGradientPaintContext.java","type":"file","name":"MultipleGradientPaintContext.java","base_name":"MultipleGradientPaintContext","extension":".java","size":55084,"date":"2019-10-25","sha1":"d1116508cdfb2fb7ee2f75fdc42f6ea80670d59c","md5":"04f2efc02667b0a2bb078101e51b9515","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Nicholas Talian, Vincent Hardy, Jim Graham, Jerry Evans","start_line":46,"end_line":48}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":47,"end_line":47}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":292,"date":"2019-10-25","sha1":"d9835f74bfa09eba2d136f77cf09d3ed08a2498e","md5":"44ce46ea2208e85dc393b62bd375650f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/RadialGradientPaint.java","type":"file","name":"RadialGradientPaint.java","base_name":"RadialGradientPaint","extension":".java","size":17849,"date":"2019-10-25","sha1":"96ebd74c262edf7986be908ce42d3da7ebeee43a","md5":"266d74dbb1fe52e97849f72257832a1a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Nicholas Talian, Vincent Hardy, Jim Graham, Jerry Evans","start_line":98,"end_line":100}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":99,"end_line":99}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/RadialGradientPaintContext.java","type":"file","name":"RadialGradientPaintContext.java","base_name":"RadialGradientPaintContext","extension":".java","size":30646,"date":"2019-10-25","sha1":"f5b8bbe25de345c366d2bec431aa2121e6a2b5cd","md5":"b8348cd5a7f0784161d2815d1946d6ec","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Nicholas Talian, Vincent Hardy, Jim Graham, Jerry Evans","start_line":36,"end_line":38}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/RenderingHintsKeyExt.java","type":"file","name":"RenderingHintsKeyExt.java","base_name":"RenderingHintsKeyExt","extension":".java","size":4344,"date":"2019-10-25","sha1":"8455c8301b1bd4e249411c22722945eebacbc6c3","md5":"7b36e6e9c540262640a5aa7d41a9df64","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/TranscodingHintKey.java","type":"file","name":"TranscodingHintKey.java","base_name":"TranscodingHintKey","extension":".java","size":1435,"date":"2019-10-25","sha1":"db22eaf13fe86baedd0b4b86fc82b6f8fc786c0d","md5":"41f454175f344f0dff451d238f35600c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/color","type":"directory","name":"color","base_name":"color","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":7474,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/color/ICCColorSpaceExt.java","type":"file","name":"ICCColorSpaceExt.java","base_name":"ICCColorSpaceExt","extension":".java","size":3923,"date":"2019-10-25","sha1":"8e47ee53d9f4ac2ab08f57f389aad8f6b4c79d15","md5":"9137c63d6e267c816cfa54c367ebfc65","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/color/NamedProfileCache.java","type":"file","name":"NamedProfileCache.java","base_name":"NamedProfileCache","extension":".java","size":3551,"date":"2019-10-25","sha1":"1e3e9b6df797ad947fb0fd3e7bd3e600ba306af2","md5":"d0e004a1679a5e87cdd468cffdf08b3f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/font","type":"directory","name":"font","base_name":"font","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":9501,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/font/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":372,"date":"2019-10-25","sha1":"b2aeea2f188ea74364b27db267620199845666b3","md5":"36f24628797ec172e1bf14766f2b0d99","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/font/TextPathLayout.java","type":"file","name":"TextPathLayout.java","base_name":"TextPathLayout","extension":".java","size":9129,"date":"2019-10-25","sha1":"8a180e5a13d6e3d3e5f4bac7dcab3a3ecce9102b","md5":"fbea4130ddabce5cc116611bba61e149","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"dean.jackson@cmis.csiro.au","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/g2d","type":"directory","name":"g2d","base_name":"g2d","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":0,"size_count":122924,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/g2d/AbstractGraphics2D.java","type":"file","name":"AbstractGraphics2D.java","base_name":"AbstractGraphics2D","extension":".java","size":60743,"date":"2019-10-25","sha1":"0da8957ac09f8a6f10ccbe727451cefedba73c1d","md5":"1597869e703d04b2066f45219ba1b9dc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":63,"end_line":63}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/g2d/DefaultGraphics2D.java","type":"file","name":"DefaultGraphics2D.java","base_name":"DefaultGraphics2D","extension":".java","size":16975,"date":"2019-10-25","sha1":"c6c6d9e81d384c162e56e449504f0e3d7bdd8efa","md5":"e1e38d7d095d9a677214aa5699bc84a7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/g2d/GraphicContext.java","type":"file","name":"GraphicContext.java","base_name":"GraphicContext","extension":".java","size":33507,"date":"2019-10-25","sha1":"fd95c4b172f71396e6674ac203b642facd4d0533","md5":"f19e9cbf7c393bc5628c8707e441a928","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":50,"end_line":50},{"email":"vincent.hardy@eng.sun.com","start_line":51,"end_line":51}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/g2d/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":364,"date":"2019-10-25","sha1":"236ac0230ee2616a98598000f42f5846a17950f9","md5":"32c9e9121658c522137fe5d4418bc930","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/g2d/TransformStackElement.java","type":"file","name":"TransformStackElement.java","base_name":"TransformStackElement","extension":".java","size":7576,"date":"2019-10-25","sha1":"753a9b33ddf6f1d8199e47d8efdc313d9cb1f64f","md5":"60ed396d61b02e4f859c28c2ca2dce48","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":28,"end_line":28},{"email":"paul_evenblij@compuware.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/g2d/TransformType.java","type":"file","name":"TransformType.java","base_name":"TransformType","extension":".java","size":3759,"date":"2019-10-25","sha1":"28e120e8ad6b0d11a3a851f14ccafdd6efb9a5c2","md5":"fe9657ea38ab08fab6c4d1b302c21aaa","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom","type":"directory","name":"geom","base_name":"geom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":15,"dirs_count":0,"size_count":172568,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom/AbstractSegment.java","type":"file","name":"AbstractSegment.java","base_name":"AbstractSegment","extension":".java","size":11529,"date":"2019-10-25","sha1":"ce4e26aef70d54afd6753bea376dbc28f828fea6","md5":"1e94b67385283639e86e33921d0afaf2","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":301,"end_line":301}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom/Cubic.java","type":"file","name":"Cubic.java","base_name":"Cubic","extension":".java","size":13784,"date":"2019-10-25","sha1":"766dbff15d25994f3533e76324f9f2e420d42f1a","md5":"8ebb681d30399e583a33777e59a7ad86","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom/ExtendedGeneralPath.java","type":"file","name":"ExtendedGeneralPath.java","base_name":"ExtendedGeneralPath","extension":".java","size":24185,"date":"2019-10-25","sha1":"022ff6e934e6266ae7d58660fd1af5f173a0eb8e","md5":"4fe5bb6de71a2dce7c48793da530cf5e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom/ExtendedPathIterator.java","type":"file","name":"ExtendedPathIterator.java","base_name":"ExtendedPathIterator","extension":".java","size":4705,"date":"2019-10-25","sha1":"3ac368cf5ab90d8f378e16e5d2c34b0e8350dc9a","md5":"c9c7e24fb579d81663f76f5a1292eb83","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom/ExtendedShape.java","type":"file","name":"ExtendedShape.java","base_name":"ExtendedShape","extension":".java","size":1366,"date":"2019-10-25","sha1":"ebdd0b204aea3c01effe90d9a1835029cb90bf70","md5":"9e6d022869895e83bac902180e8e19dd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom/Linear.java","type":"file","name":"Linear.java","base_name":"Linear","extension":".java","size":8525,"date":"2019-10-25","sha1":"2e2991c9e284629ab52f256251e07faa69bbc27d","md5":"74b7d911ade8e456a8c1cbc421b6cb1d","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":313,"date":"2019-10-25","sha1":"bb5c825858217c04f6a458cafa82b30c76b8fb88","md5":"dc8280c3242801ced82812c4c502038a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom/PathLength.java","type":"file","name":"PathLength.java","base_name":"PathLength","extension":".java","size":18463,"date":"2019-10-25","sha1":"55772ad28c99080da9d978d65a679503ea8161af","md5":"d110c917a4cedfb6d24d79b2f81a255e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"dean.jackson@cmis.csiro.au","start_line":44,"end_line":44}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom/Polygon2D.java","type":"file","name":"Polygon2D.java","base_name":"Polygon2D","extension":".java","size":17346,"date":"2019-10-25","sha1":"012c87ce9fe213295b161a403c2dfed6ffeb8edd","md5":"74627e942ceaeb9fe79b2ca821e539c1","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom/Polyline2D.java","type":"file","name":"Polyline2D.java","base_name":"Polyline2D","extension":".java","size":16460,"date":"2019-10-25","sha1":"cce3182fb1c14b0b6018d97034eaf8ff2a12d69c","md5":"edd6afe8da2f674b6ba75a22ae3446f0","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom/Quadradic.java","type":"file","name":"Quadradic.java","base_name":"Quadradic","extension":".java","size":11777,"date":"2019-10-25","sha1":"a22839ddc202ab125618448618554b6ea43aff4c","md5":"d14fbf675a13a8681c8cd9ac3708d141","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom/RectListManager.java","type":"file","name":"RectListManager.java","base_name":"RectListManager","extension":".java","size":33259,"date":"2019-10-25","sha1":"705e97bb4e4bc0751364b8198644ec93ecf96713","md5":"ada66a993aca0ffd899b108534d9af93","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom/Segment.java","type":"file","name":"Segment.java","base_name":"Segment","extension":".java","size":1932,"date":"2019-10-25","sha1":"ba8f0abda093c9b87e69349d6f1a7d562aec16fb","md5":"d4002d74632091f3d13ed3405e5f02f7","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom/SegmentList.java","type":"file","name":"SegmentList.java","base_name":"SegmentList","extension":".java","size":5667,"date":"2019-10-25","sha1":"ae66cd08d874b308f10aed22e8ccd65199b04c63","md5":"4247ff350b33bd24223fb7f0cd37ed7a","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/geom/ShapeExtender.java","type":"file","name":"ShapeExtender.java","base_name":"ShapeExtender","extension":".java","size":3257,"date":"2019-10-25","sha1":"b57c856bc09cbd2b3fb095332be77c44b1f8fcf8","md5":"f5464837e3b52c0c20cfcb769edc409e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image","type":"directory","name":"image","base_name":"image","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":116,"dirs_count":3,"size_count":959322,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/AbstractLight.java","type":"file","name":"AbstractLight.java","base_name":"AbstractLight","extension":".java","size":5053,"date":"2019-10-25","sha1":"1b603e042051b4fa7a66e1b741064492527449b8","md5":"87dd2b269a59334475d158857ce7332b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/ARGBChannel.java","type":"file","name":"ARGBChannel.java","base_name":"ARGBChannel","extension":".java","size":3112,"date":"2019-10-25","sha1":"df6b99159dfea8fd7b259eb3f16d386d94818170","md5":"0707a5646e3208054496fc9ebe44a30e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/ComponentTransferFunction.java","type":"file","name":"ComponentTransferFunction.java","base_name":"ComponentTransferFunction","extension":".java","size":1992,"date":"2019-10-25","sha1":"c6ea779387d4498023db17de7df8799bca6f8909","md5":"413ad65a9b1c101cd9a29ab923138fd8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/CompositeRule.java","type":"file","name":"CompositeRule.java","base_name":"CompositeRule","extension":".java","size":8414,"date":"2019-10-25","sha1":"1fa8fed64f8d6c228db046d9526f7a072c7b52a7","md5":"cddfa1f4aba42ef69c2c131ff1ba93f9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/ConcreteComponentTransferFunction.java","type":"file","name":"ConcreteComponentTransferFunction.java","base_name":"ConcreteComponentTransferFunction","extension":".java","size":4942,"date":"2019-10-25","sha1":"dbf2e3c1490a956206c0ee9fb66e0d957fe703cb","md5":"aa42aa3596ac4b994f02c3f76426d5ff","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/DiscreteTransfer.java","type":"file","name":"DiscreteTransfer.java","base_name":"DiscreteTransfer","extension":".java","size":2348,"date":"2019-10-25","sha1":"2438fadbaa77cd2afcaae69fdf5291b8d3133669","md5":"ab12e10a0e0931f387666aea621c14ca","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"sheng.pei@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/DistantLight.java","type":"file","name":"DistantLight.java","base_name":"DistantLight","extension":".java","size":4586,"date":"2019-10-25","sha1":"c708e9f4abcd51b2df372d1a89829b4af402e8cc","md5":"d97acb0a108a1bdbade1a9c60e660251","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/GammaTransfer.java","type":"file","name":"GammaTransfer.java","base_name":"GammaTransfer","extension":".java","size":2581,"date":"2019-10-25","sha1":"319a73041672aa4e319dccb369770acf2c3fc25d","md5":"d73b94272e72b237f7b28f7aa5698984","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"sheng.pei@sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/GraphicsUtil.java","type":"file","name":"GraphicsUtil.java","base_name":"GraphicsUtil","extension":".java","size":63601,"date":"2019-10-25","sha1":"45405453c654e3a072096d28fccda7a1a1bf1040","md5":"f1089df13b4e41276ab03c3c30e957b1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":68,"end_line":68}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/IdentityTransfer.java","type":"file","name":"IdentityTransfer.java","base_name":"IdentityTransfer","extension":".java","size":1835,"date":"2019-10-25","sha1":"bc7aec8d7492d33c21620c4904b57af166bf6df0","md5":"17770032d2f004580086fe39816768bc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"sheng.pei@sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/Light.java","type":"file","name":"Light.java","base_name":"Light","extension":".java","size":4373,"date":"2019-10-25","sha1":"65dee2e370572c4e530de790af5f611c1d43aaf4","md5":"72b9863ee9b6bb2f533016dc3ced2f2c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/LinearTransfer.java","type":"file","name":"LinearTransfer.java","base_name":"LinearTransfer","extension":".java","size":2660,"date":"2019-10-25","sha1":"2468c4493b8249577e71beee6bdb89f1859e9c0a","md5":"9205574a5586888c0af5d28240292ef1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"sheng.pei@sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":366,"date":"2019-10-25","sha1":"da046a01233b27c54d3612b817ff87e001822060","md5":"6262d4fc056cf1aa6b0d6b60dd4be4a7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/PadMode.java","type":"file","name":"PadMode.java","base_name":"PadMode","extension":".java","size":2752,"date":"2019-10-25","sha1":"fb25ab33417f10d14614d81ec4752d013d7cba4a","md5":"52676e5730bf3b392beae93eb55c4950","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/PointLight.java","type":"file","name":"PointLight.java","base_name":"PointLight","extension":".java","size":2883,"date":"2019-10-25","sha1":"22a5d1ea4f0255555c81847910a85951024c8e3f","md5":"f3a2ccc7481914ed3e9a850c624ae076","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/SpotLight.java","type":"file","name":"SpotLight.java","base_name":"SpotLight","extension":".java","size":6939,"date":"2019-10-25","sha1":"41088ac3b0ee2c976bf1d78e91f914cd8bece7c8","md5":"76a610bd9fc619d8c6750c499514b244","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/SVGComposite.java","type":"file","name":"SVGComposite.java","base_name":"SVGComposite","extension":".java","size":58262,"date":"2019-10-25","sha1":"48c113bc5230f026d5dc241db1d4d914d28be624","md5":"864528fb6af7a6c01f4be9b017388f5a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/TableTransfer.java","type":"file","name":"TableTransfer.java","base_name":"TableTransfer","extension":".java","size":2933,"date":"2019-10-25","sha1":"2a5e96844091c869f75ab6153237402398cff4da","md5":"be7cf3ed0406aca9ec462738a1fb8de6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"sheng.pei@sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/TransferFunction.java","type":"file","name":"TransferFunction.java","base_name":"TransferFunction","extension":".java","size":1249,"date":"2019-10-25","sha1":"368a0fd711b58462e8b40bbefcec258a0324e8ef","md5":"cc08b28aedb84d9fbd4fc809ec41a5a7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"sheng.pei@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/URLImageCache.java","type":"file","name":"URLImageCache.java","base_name":"URLImageCache","extension":".java","size":3698,"date":"2019-10-25","sha1":"9acbbd80211a8fb4600ae56a30cb7a97325c3e11","md5":"f4fdf442a8dc9bc08d0a8e83deb5e148","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable","type":"directory","name":"renderable","base_name":"renderable","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":45,"dirs_count":0,"size_count":249522,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/AbstractColorInterpolationRable.java","type":"file","name":"AbstractColorInterpolationRable.java","base_name":"AbstractColorInterpolationRable","extension":".java","size":4652,"date":"2019-10-25","sha1":"103654e750985c7659e851361966dccb9ec7c79b","md5":"c0deb1e045cfb316d418ae8e55ba504f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/AbstractRable.java","type":"file","name":"AbstractRable.java","base_name":"AbstractRable","extension":".java","size":10611,"date":"2019-10-25","sha1":"26ab045567f3a35712607266fcaf7600121087a2","md5":"0697458f0249a1576088867dd7e24378","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":47,"end_line":47}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/AffineRable.java","type":"file","name":"AffineRable.java","base_name":"AffineRable","extension":".java","size":1699,"date":"2019-10-25","sha1":"0c322c5d4fef85d384c2d757be2f798f1f274026","md5":"0dd3ab130cacce64ceef3b1c1576f04e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/AffineRable8Bit.java","type":"file","name":"AffineRable8Bit.java","base_name":"AffineRable8Bit","extension":".java","size":4730,"date":"2019-10-25","sha1":"49938cc646e29a8a41644751d1efe2698ed13f26","md5":"3cca2c79903e9d691c6c9cefadea4b26","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/ClipRable.java","type":"file","name":"ClipRable.java","base_name":"ClipRable","extension":".java","size":2310,"date":"2019-10-25","sha1":"a874e862b5896737d031c318ef625206da463efa","md5":"c22f3d70535d0bbc6ef587e04ee4edf0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/ClipRable8Bit.java","type":"file","name":"ClipRable8Bit.java","base_name":"ClipRable8Bit","extension":".java","size":5809,"date":"2019-10-25","sha1":"cdee0808014908a68a011fe08a82291dd43b00c1","md5":"daa051a05a212349246845253879a6cb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/ColorMatrixRable.java","type":"file","name":"ColorMatrixRable.java","base_name":"ColorMatrixRable","extension":".java","size":1905,"date":"2019-10-25","sha1":"cab691e9131e3b9d27284af6915df331931e4ff2","md5":"42e0431db0e23e5fdc7391445fc9d119","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/ColorMatrixRable8Bit.java","type":"file","name":"ColorMatrixRable8Bit.java","base_name":"ColorMatrixRable8Bit","extension":".java","size":6286,"date":"2019-10-25","sha1":"a2b5bde6a0375e20b31b2ef3e6d093a523ce063a","md5":"0c7208a98500238c73c4983423477c4c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/ComponentTransferRable.java","type":"file","name":"ComponentTransferRable.java","base_name":"ComponentTransferRable","extension":".java","size":2490,"date":"2019-10-25","sha1":"c8eef5e009e71b8a0078b5bf31acf2f92855a8a7","md5":"839f183ec595bd176de5d5277ad99b8b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/ComponentTransferRable8Bit.java","type":"file","name":"ComponentTransferRable8Bit.java","base_name":"ComponentTransferRable8Bit","extension":".java","size":7957,"date":"2019-10-25","sha1":"4be0a516a8a344fe4150cf54df8a655b83275596","md5":"f524a54ef97bd8e51cbd7742edc59d0e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/CompositeRable.java","type":"file","name":"CompositeRable.java","base_name":"CompositeRable","extension":".java","size":1800,"date":"2019-10-25","sha1":"b77460d9092d56cb43a4b30beb19edbcb5e82a45","md5":"c06f83f967cb5b2a4514153ea1da9920","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/CompositeRable8Bit.java","type":"file","name":"CompositeRable8Bit.java","base_name":"CompositeRable8Bit","extension":".java","size":6657,"date":"2019-10-25","sha1":"a101142bca9af27fb24744f028dae2bb3743e344","md5":"5b23eaa0da7270257b6af5487c15258e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/ConvolveMatrixRable.java","type":"file","name":"ConvolveMatrixRable.java","base_name":"ConvolveMatrixRable","extension":".java","size":3084,"date":"2019-10-25","sha1":"e362c5a6b04f80f09b6340a3d24f39f4aaaf3992","md5":"776ceb5325332bfd16253e81b26a5c33","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/ConvolveMatrixRable8Bit.java","type":"file","name":"ConvolveMatrixRable8Bit.java","base_name":"ConvolveMatrixRable8Bit","extension":".java","size":17803,"date":"2019-10-25","sha1":"774a852a2064e54badd93b53e574b36da7ad5788","md5":"b2c727fe3ad0cbe0cf803fab9b559b99","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":56,"end_line":56}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/DeferRable.java","type":"file","name":"DeferRable.java","base_name":"DeferRable","extension":".java","size":6574,"date":"2019-10-25","sha1":"e72d12ecfc07cfc6cac038538d14763db5a7cc80","md5":"832f84af326a57486e712cd0d2adf763","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/DiffuseLightingRable.java","type":"file","name":"DiffuseLightingRable.java","base_name":"DiffuseLightingRable","extension":".java","size":2932,"date":"2019-10-25","sha1":"80c2a3910c908bec9d9543900fdfe1eceb8d877e","md5":"cff2426c3d47d1986637ad39a4eee472","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/DiffuseLightingRable8Bit.java","type":"file","name":"DiffuseLightingRable8Bit.java","base_name":"DiffuseLightingRable8Bit","extension":".java","size":8782,"date":"2019-10-25","sha1":"6cbfe9c0c48b84b71065eb3fff2ce4dde7c726cc","md5":"f51a9c7b5a094ee74cb668fb92463cf8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/DisplacementMapRable.java","type":"file","name":"DisplacementMapRable.java","base_name":"DisplacementMapRable","extension":".java","size":2645,"date":"2019-10-25","sha1":"d4fb611243a624454a5e5990eff51fd1e6d1bf4a","md5":"dcc0b819e49376acd50d79e8ce4b3017","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"sheng.pei@eng.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/DisplacementMapRable8Bit.java","type":"file","name":"DisplacementMapRable8Bit.java","base_name":"DisplacementMapRable8Bit","extension":".java","size":9314,"date":"2019-10-25","sha1":"250f36c2b041ca6de00f69de9c5020fcf592c806","md5":"8df712354863fdc8bfb447bdf2163c6f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"sheng.pei@eng.sun.com","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/Filter.java","type":"file","name":"Filter.java","base_name":"Filter","extension":".java","size":2913,"date":"2019-10-25","sha1":"f9df1bd6ee16bf222eac29b5b89d29d10e78c482","md5":"c1924be32af1c8ffcc37d6fea639cb54","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/FilterAlphaRable.java","type":"file","name":"FilterAlphaRable.java","base_name":"FilterAlphaRable","extension":".java","size":3245,"date":"2019-10-25","sha1":"fed3894294648369d462edea004d7bced9ac5a4e","md5":"c9750787548b5c1d4604f157a8b6fa36","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/FilterAsAlphaRable.java","type":"file","name":"FilterAsAlphaRable.java","base_name":"FilterAsAlphaRable","extension":".java","size":3100,"date":"2019-10-25","sha1":"af06d44d3c89912094361896a23c5eae4708642a","md5":"3527bbe20f6d7a03a460918524073db7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/FilterChainRable.java","type":"file","name":"FilterChainRable.java","base_name":"FilterChainRable","extension":".java","size":2239,"date":"2019-10-25","sha1":"92e338b21333c505c093fd75464a08ea81261915","md5":"2f3a525cbb3de1243e651dc808f34197","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/FilterChainRable8Bit.java","type":"file","name":"FilterChainRable8Bit.java","base_name":"FilterChainRable8Bit","extension":".java","size":7712,"date":"2019-10-25","sha1":"485d76d7f6a905a71d4c14b9bb8c24d529720712","md5":"2c07b940e3a8cde4e5077503d04cfea6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":44,"end_line":44}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/FilterColorInterpolation.java","type":"file","name":"FilterColorInterpolation.java","base_name":"FilterColorInterpolation","extension":".java","size":1960,"date":"2019-10-25","sha1":"265a36f1dfb20fc870515364c3940e6c317cf403","md5":"30dec17d82092d486da5760d61567060","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/FilterResRable.java","type":"file","name":"FilterResRable.java","base_name":"FilterResRable","extension":".java","size":2010,"date":"2019-10-25","sha1":"50f77841a475ea6bfd446a79f97be8aca6df5620","md5":"7cd9f151076bfca18cce93031a8299ae","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/FilterResRable8Bit.java","type":"file","name":"FilterResRable8Bit.java","base_name":"FilterResRable8Bit","extension":".java","size":14469,"date":"2019-10-25","sha1":"2dfeb640680a389f10cc88a76afe5ee749438849","md5":"d19fdc3e5ee4884674e69c9650de14bd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":46,"end_line":46}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/FloodRable.java","type":"file","name":"FloodRable.java","base_name":"FloodRable","extension":".java","size":1639,"date":"2019-10-25","sha1":"e1318e4d2b36a7a7664988b580fb906f16508dcd","md5":"3c21b86ddc8aa875bbc7694ce7951ed6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"dean@w3.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/FloodRable8Bit.java","type":"file","name":"FloodRable8Bit.java","base_name":"FloodRable8Bit","extension":".java","size":5099,"date":"2019-10-25","sha1":"356c22a77a5045242400a6cb5adef1a97efe56c9","md5":"211d6b0f2ed4b20863bef67b77e342b1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"dean@w3.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/GaussianBlurRable.java","type":"file","name":"GaussianBlurRable.java","base_name":"GaussianBlurRable","extension":".java","size":1983,"date":"2019-10-25","sha1":"5f7e9a875894f4e5ed0e7c4c4a780042ab03adbc","md5":"a98adba516a3b9b944414fe5e4592e3e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/GaussianBlurRable8Bit.java","type":"file","name":"GaussianBlurRable8Bit.java","base_name":"GaussianBlurRable8Bit","extension":".java","size":12337,"date":"2019-10-25","sha1":"4434cb2980cd47f14d7591e8a62146cc8971473c","md5":"ceb509b51204ccc6a14ffed81c9316a5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/MorphologyRable.java","type":"file","name":"MorphologyRable.java","base_name":"MorphologyRable","extension":".java","size":2213,"date":"2019-10-25","sha1":"a6fe14945a89483824c592cb3f6289eeb002d7f9","md5":"e6762769c2a8ad491592ae0c98e07321","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"sheng.pei@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/MorphologyRable8Bit.java","type":"file","name":"MorphologyRable8Bit.java","base_name":"MorphologyRable8Bit","extension":".java","size":9858,"date":"2019-10-25","sha1":"a082a8f2d5b9be9196f4424dc2ddf5ca561fac2f","md5":"f4e4e920db060615982f0388da73209a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/OffsetRable.java","type":"file","name":"OffsetRable.java","base_name":"OffsetRable","extension":".java","size":1878,"date":"2019-10-25","sha1":"2665949f98250fcf3d6089828c4e04fe2693d45a","md5":"b877d9aacc3247461437e08e07d3dffc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/PadRable.java","type":"file","name":"PadRable.java","base_name":"PadRable","extension":".java","size":2097,"date":"2019-10-25","sha1":"9486978dc23271eb6de90b379ca3ebbf98f1a47e","md5":"a8507db6f6f9059eb983c771873137ed","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/PadRable8Bit.java","type":"file","name":"PadRable8Bit.java","base_name":"PadRable8Bit","extension":".java","size":7524,"date":"2019-10-25","sha1":"eee588625fe7e6a2bb97603f96277cb4afd65d4d","md5":"b77ab0f2ec8eacbc8224f0a9baf1863e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/PaintRable.java","type":"file","name":"PaintRable.java","base_name":"PaintRable","extension":".java","size":1548,"date":"2019-10-25","sha1":"f715023c65b36c6faba6162494378fd8ac065cf4","md5":"4c5ed4f5fa619b5c34d9400d7afc2c93","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/ProfileRable.java","type":"file","name":"ProfileRable.java","base_name":"ProfileRable","extension":".java","size":2716,"date":"2019-10-25","sha1":"7d3b4e98f6dd8dae1b492db5e748b3b5ece1b6a9","md5":"dacb2285adf75bb38c4a69ae92c6e94c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/RedRable.java","type":"file","name":"RedRable.java","base_name":"RedRable","extension":".java","size":3849,"date":"2019-10-25","sha1":"9b2f2563df6f65e85a2c1ecacae6dad9b9283239","md5":"36b0989058231df1b963b75c2f914332","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/SpecularLightingRable.java","type":"file","name":"SpecularLightingRable.java","base_name":"SpecularLightingRable","extension":".java","size":2741,"date":"2019-10-25","sha1":"9d36bc7f9c6173bb03597c0a2a7706a51b58059e","md5":"c90b1e291adca96bfe299799753286ba","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/SpecularLightingRable8Bit.java","type":"file","name":"SpecularLightingRable8Bit.java","base_name":"SpecularLightingRable8Bit","extension":".java","size":9220,"date":"2019-10-25","sha1":"6c27a0263845f2c13a3154d76d6f47c698320f0b","md5":"246cf7207545dee2f60a8dc186464674","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/TileRable.java","type":"file","name":"TileRable.java","base_name":"TileRable","extension":".java","size":2046,"date":"2019-10-25","sha1":"011533cba0995db300e00aa47c0f5b6acc24a494","md5":"2cf9aba449b35c6f0d1569cac268a63b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/TileRable8Bit.java","type":"file","name":"TileRable8Bit.java","base_name":"TileRable8Bit","extension":".java","size":25757,"date":"2019-10-25","sha1":"eaac501d47b54cf10f61609d45471df9cfe9ae58","md5":"02d14625dde6c73134dc697f71c0245b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/TurbulenceRable.java","type":"file","name":"TurbulenceRable.java","base_name":"TurbulenceRable","extension":".java","size":3641,"date":"2019-10-25","sha1":"d6f6057c9ba6f6625f73ac9df0a00f79704cc8a6","md5":"b0bb929c0d31bb5c65442ab7aa623a83","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/renderable/TurbulenceRable8Bit.java","type":"file","name":"TurbulenceRable8Bit.java","base_name":"TurbulenceRable8Bit","extension":".java","size":7688,"date":"2019-10-25","sha1":"2c3198ee06f5edb2e98009904932f32125ec565d","md5":"1cef107d915402b580ca79d75b12ba77","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered","type":"directory","name":"rendered","base_name":"rendered","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":0,"size_count":466520,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/AbstractRed.java","type":"file","name":"AbstractRed.java","base_name":"AbstractRed","extension":".java","size":24038,"date":"2019-10-25","sha1":"e759ba500195096556a5a10dc9de8c1b80b5a2f4","md5":"f23dc9097c99f7772d2697abcc2c2035","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":53,"end_line":53}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/AbstractTiledRed.java","type":"file","name":"AbstractTiledRed.java","base_name":"AbstractTiledRed","extension":".java","size":24102,"date":"2019-10-25","sha1":"96ca90a59aed515af35a46544339f11c9b319aac","md5":"e98fc4ce086bdb2f696b874c1d4f494b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/AffineRed.java","type":"file","name":"AffineRed.java","base_name":"AffineRed","extension":".java","size":9247,"date":"2019-10-25","sha1":"6cfcad24f58cb0065d4fdff116813b9dd1eb65f1","md5":"06688487a2cce27be093deb0fd961528","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":46,"end_line":46}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/Any2LsRGBRed.java","type":"file","name":"Any2LsRGBRed.java","base_name":"Any2LsRGBRed","extension":".java","size":11067,"date":"2019-10-25","sha1":"973a58d8ff94bf69b3edc49a775624fd1cd342c9","md5":"2b2380673ff3a9b97cee9196b102cadb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/Any2LumRed.java","type":"file","name":"Any2LumRed.java","base_name":"Any2LumRed","extension":".java","size":10818,"date":"2019-10-25","sha1":"a48a1758bba9e95eea27a7709c86680b4f534c39","md5":"f17c70bc55a5b0797006ffd5729bedec","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":47,"end_line":47}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"https://bugs.openjdk.java.net/browse/JDK-8005930","start_line":115,"end_line":115}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/Any2sRGBRed.java","type":"file","name":"Any2sRGBRed.java","base_name":"Any2sRGBRed","extension":".java","size":12620,"date":"2019-10-25","sha1":"02ab8ee7c339907b9b78afd3f9f0667ca189829f","md5":"c6fbc3df5faef763414844fd6cfdfe3d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/BufferedImageCachableRed.java","type":"file","name":"BufferedImageCachableRed.java","base_name":"BufferedImageCachableRed","extension":".java","size":4766,"date":"2019-10-25","sha1":"8a6d26b6f43efde07e826b7eaba232bcd245529c","md5":"6b3c8d1814a7d0ff8cf17df7e4d1865a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/BumpMap.java","type":"file","name":"BumpMap.java","base_name":"BumpMap","extension":".java","size":17352,"date":"2019-10-25","sha1":"6dadb0d41cdb9f9c896b6737aba1b1d382efed26","md5":"9fdb4ee5756631e546c1db2349e7ac74","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/CachableRed.java","type":"file","name":"CachableRed.java","base_name":"CachableRed","extension":".java","size":2647,"date":"2019-10-25","sha1":"fe3672a8e69c8436c4e1cb8c78cb0972e3309fc6","md5":"57968e76db887d5841b30492776f2fd6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/ColorMatrixRed.java","type":"file","name":"ColorMatrixRed.java","base_name":"ColorMatrixRed","extension":".java","size":7323,"date":"2019-10-25","sha1":"ed1a08cb347e4afa171289a2eddd65b9b77f159f","md5":"59fc88c3843e9a8f508387a4ac28bebb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/ComponentTransferRed.java","type":"file","name":"ComponentTransferRed.java","base_name":"ComponentTransferRed","extension":".java","size":3125,"date":"2019-10-25","sha1":"dd2cbd0855024734ef6ae494569039f877c89822","md5":"97dfe9cdd4ef51c761bff0642c05639d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/CompositeRed.java","type":"file","name":"CompositeRed.java","base_name":"CompositeRed","extension":".java","size":10982,"date":"2019-10-25","sha1":"f28b4fa050927ce2b3b285f9342d8d603f0a3960","md5":"9b8e4d16de19b3d872478f73e3172d14","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":47,"end_line":47}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/DiffuseLightingRed.java","type":"file","name":"DiffuseLightingRed.java","base_name":"DiffuseLightingRed","extension":".java","size":7334,"date":"2019-10-25","sha1":"6917b289045912066466fda28a981109b7fb44fb","md5":"31b83a81e51bcfab0197ed30a18a7b59","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/DisplacementMapRed.java","type":"file","name":"DisplacementMapRed.java","base_name":"DisplacementMapRed","extension":".java","size":29462,"date":"2019-10-25","sha1":"342b0b68909fd64b4bd66e9613c2743c61ba1dee","md5":"e85b9e3ae765c41808c70af5b505d3a4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/FilterAlphaRed.java","type":"file","name":"FilterAlphaRed.java","base_name":"FilterAlphaRed","extension":".java","size":2495,"date":"2019-10-25","sha1":"ee9dbb5e6896c07ef363eeb8681e3d73339b357f","md5":"f6416f830b50d034ef5a3c874a05cbc4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/FilterAsAlphaRed.java","type":"file","name":"FilterAsAlphaRed.java","base_name":"FilterAsAlphaRed","extension":".java","size":5847,"date":"2019-10-25","sha1":"e7bede5901abe3c7cf4a047fec0255e1df2d138a","md5":"bbd228cba9817da8884b16f4298872e9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/FloodRed.java","type":"file","name":"FloodRed.java","base_name":"FloodRed","extension":".java","size":4344,"date":"2019-10-25","sha1":"1e9ea910243d5a57421c5d99e55a4d74c517f4a0","md5":"fbb71e2561e2c1c27fa983a173cacdc9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/FormatRed.java","type":"file","name":"FormatRed.java","base_name":"FormatRed","extension":".java","size":7432,"date":"2019-10-25","sha1":"70b5f8e4c4a994a58f2efce02b4d0b9b19553b9e","md5":"323d82913ecc376be889e65bae8ee6c9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/GaussianBlurRed8Bit.java","type":"file","name":"GaussianBlurRed8Bit.java","base_name":"GaussianBlurRed8Bit","extension":".java","size":21113,"date":"2019-10-25","sha1":"c8d3f6394bd15843fa47f4f20fbe42e348711463","md5":"241690460b8196ea324c2946f17775e5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/IndexImage.java","type":"file","name":"IndexImage.java","base_name":"IndexImage","extension":".java","size":29008,"date":"2019-10-25","sha1":"1686b7def3f6b7df569efd5a6c36ba6e73013691","md5":"1eafda52710578d73bd84b6420be1a6c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":48,"end_line":48},{"email":"jun@oop-reserch.com","start_line":49,"end_line":49}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/LRUCache.java","type":"file","name":"LRUCache.java","base_name":"LRUCache","extension":".java","size":5333,"date":"2019-10-25","sha1":"1c7a222b009572f86dc0b1b648c05399ee762a37","md5":"8a7e9a6060f83e1bea6cae27f44e6c7e","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/MorphologyOp.java","type":"file","name":"MorphologyOp.java","base_name":"MorphologyOp","extension":".java","size":63381,"date":"2019-10-25","sha1":"8881fc5c4b59a7ade23cbb1fbed93b8ce4b9dccc","md5":"f4f95f09baf3b5df95a6f4d934840848","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"sheng.pei@sun.com","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/MultiplyAlphaRed.java","type":"file","name":"MultiplyAlphaRed.java","base_name":"MultiplyAlphaRed","extension":".java","size":12651,"date":"2019-10-25","sha1":"3f30770fd0500d5c9f7bd875aa2afed713e9928c","md5":"c024ea53a2c008895320a054f82bf838","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/PadRed.java","type":"file","name":"PadRed.java","base_name":"PadRed","extension":".java","size":17456,"date":"2019-10-25","sha1":"8dcbc193e2277661c9bd7a9c68718fd14124052e","md5":"9fed27e874bd322bfe11ccbf3689caf0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/ProfileRed.java","type":"file","name":"ProfileRed.java","base_name":"ProfileRed","extension":".java","size":12380,"date":"2019-10-25","sha1":"5500d0ef4e322ed38e53af4b66dd5968bee705bd","md5":"ea8dd118d8707bff7eb886dd6131628e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":44,"end_line":44}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/RenderedImageCachableRed.java","type":"file","name":"RenderedImageCachableRed.java","base_name":"RenderedImageCachableRed","extension":".java","size":4369,"date":"2019-10-25","sha1":"e33df01298ad58d570a51904694bfeabd71dc2e3","md5":"7b38ddc403e96f2bbbee41f7471730c2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/SpecularLightingRed.java","type":"file","name":"SpecularLightingRed.java","base_name":"SpecularLightingRed","extension":".java","size":8653,"date":"2019-10-25","sha1":"e5e4757d901451bfff8fcf47a0a0810aa0bb3481","md5":"2d03d126a168782cf7b856265e3c2bfb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/TileBlock.java","type":"file","name":"TileBlock.java","base_name":"TileBlock","extension":".java","size":8156,"date":"2019-10-25","sha1":"bca47cb6428f6fcdbf0c4188d12effeebe112b41","md5":"105302b59af9d6a00be31882c7aed915","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/TileCache.java","type":"file","name":"TileCache.java","base_name":"TileCache","extension":".java","size":1806,"date":"2019-10-25","sha1":"0302194669a1a25430c5a549cd64a55efb418c07","md5":"b2eb4c525fde4b994d6168c4c36218d6","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/TileCacheRed.java","type":"file","name":"TileCacheRed.java","base_name":"TileCacheRed","extension":".java","size":3031,"date":"2019-10-25","sha1":"0aeaafd2470f408a6be8191f14075111040d3f96","md5":"3232d11ad5cc1e5d40b2893e8680b407","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/TileGenerator.java","type":"file","name":"TileGenerator.java","base_name":"TileGenerator","extension":".java","size":1137,"date":"2019-10-25","sha1":"42bb152087ada3a92d5fb71b08ce017ea550a391","md5":"abfe384d112a71eab545e6c8b68d2a11","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/TileGrid.java","type":"file","name":"TileGrid.java","base_name":"TileGrid","extension":".java","size":5192,"date":"2019-10-25","sha1":"cd7edb9b2fa421d5cc261fba409160ad031c4350","md5":"490a5fe111d092fee4216c812758f30d","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/TileLRUMember.java","type":"file","name":"TileLRUMember.java","base_name":"TileLRUMember","extension":".java","size":2683,"date":"2019-10-25","sha1":"78c093bcb9fcfa63a4b9901d8b319001c89b91c7","md5":"bdffb1713f586f0d9a38d4ffc5b5b4d9","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/TileMap.java","type":"file","name":"TileMap.java","base_name":"TileMap","extension":".java","size":4906,"date":"2019-10-25","sha1":"bfc4b37417d2b9c65259a00b3111484bca278e92","md5":"43439acea9e918d1b3a2608bfc6ec936","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/TileRed.java","type":"file","name":"TileRed.java","base_name":"TileRed","extension":".java","size":14817,"date":"2019-10-25","sha1":"43a4341f98c005e07944f88ffb43ae37d4a211f8","md5":"087c01f87e7e1c1c3f71646736ec4abf","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":44,"end_line":44}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/TileStore.java","type":"file","name":"TileStore.java","base_name":"TileStore","extension":".java","size":1367,"date":"2019-10-25","sha1":"d514a6f436fe77076f22f42aae6bdeb4659049f0","md5":"c6f3ebe43cc636e0a4a2b57ffdc8950f","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/TranslateRed.java","type":"file","name":"TranslateRed.java","base_name":"TranslateRed","extension":".java","size":3599,"date":"2019-10-25","sha1":"781deac2277248e24a30e329d7cfed9264dce722","md5":"5730701eda633d5f860dcaf483774bb8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/rendered/TurbulencePatternRed.java","type":"file","name":"TurbulencePatternRed.java","base_name":"TurbulencePatternRed","extension":".java","size":50481,"date":"2019-10-25","sha1":"d42010f94ededcf8a6d92909486adadbc051af1f","md5":"ed32098be89d3aa0b19083922f4aade4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":61,"end_line":61},{"email":"DeWeese@apache.org","start_line":62,"end_line":62}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/spi","type":"directory","name":"spi","base_name":"spi","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":13,"dirs_count":0,"size_count":58701,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/spi/AbstractRegistryEntry.java","type":"file","name":"AbstractRegistryEntry.java","base_name":"AbstractRegistryEntry","extension":".java","size":2645,"date":"2019-10-25","sha1":"37bf823b3b26fd0fcf52bb7544318c4a9b9bd403","md5":"1ba60cd11f95bb5a0f4ceda5f36a44bf","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/spi/BrokenLinkProvider.java","type":"file","name":"BrokenLinkProvider.java","base_name":"BrokenLinkProvider","extension":".java","size":2787,"date":"2019-10-25","sha1":"ae61629dce408c1bf05c67fb75b1b5b3b6c747b6","md5":"1c26fe6def1778ed6fd292156501b7f2","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/spi/DefaultBrokenLinkProvider.java","type":"file","name":"DefaultBrokenLinkProvider.java","base_name":"DefaultBrokenLinkProvider","extension":".java","size":3475,"date":"2019-10-25","sha1":"89f45952dfa22f19631503d19ecf6470521c141e","md5":"67848642b2983b745fbba59672e9028e","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/spi/ErrorConstants.java","type":"file","name":"ErrorConstants.java","base_name":"ErrorConstants","extension":".java","size":2486,"date":"2019-10-25","sha1":"c6284e83b2672e94664630fd530b9fb2edc10360","md5":"97a3bbd7b3742769c9db60b75bcd3c65","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/spi/ImageTagRegistry.java","type":"file","name":"ImageTagRegistry.java","base_name":"ImageTagRegistry","extension":".java","size":12178,"date":"2019-10-25","sha1":"ec06e1012db9a7329ca42538245213a6fd990049","md5":"3f3bf12d30380edc691e2c85bddd27e4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/spi/ImageWriter.java","type":"file","name":"ImageWriter.java","base_name":"ImageWriter","extension":".java","size":1373,"date":"2019-10-25","sha1":"ad61489812e23f21ea82a8bccd60800619a6e22f","md5":"91a9ed5b35b5fd5b939fbc777960afac","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/spi/ImageWriterParams.java","type":"file","name":"ImageWriterParams.java","base_name":"ImageWriterParams","extension":".java","size":2837,"date":"2019-10-25","sha1":"43d8aaf46e378917fd06b0f3e0b37608fd9fda2c","md5":"5d7ac69d8a604cfb47f990ef084a9e53","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/spi/ImageWriterRegistry.java","type":"file","name":"ImageWriterRegistry.java","base_name":"ImageWriterRegistry","extension":".java","size":2163,"date":"2019-10-25","sha1":"2169a52d721e0e3dd1c641374de5a757df29bc53","md5":"9e3e3e2260147d1aaafede99b26bf639","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/spi/JDKRegistryEntry.java","type":"file","name":"JDKRegistryEntry.java","base_name":"JDKRegistryEntry","extension":".java","size":9408,"date":"2019-10-25","sha1":"9d96c8ca61605165ba887dc7ec2c453d74084712","md5":"9bcb9f3f81e9948d0d52ab1cf1f44236","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/spi/MagicNumberRegistryEntry.java","type":"file","name":"MagicNumberRegistryEntry.java","base_name":"MagicNumberRegistryEntry","extension":".java","size":11346,"date":"2019-10-25","sha1":"e82c063c18ddeda50f6304ee90189d11efffc82b","md5":"659226566d0c8aeb4de0cb30892cdb4f","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/spi/RegistryEntry.java","type":"file","name":"RegistryEntry.java","base_name":"RegistryEntry","extension":".java","size":2069,"date":"2019-10-25","sha1":"d2323f3fe9ef0e7b2422dd716f02b340804ba12f","md5":"ac1c17dbf83d2414d88479c0bd48ae24","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/spi/StreamRegistryEntry.java","type":"file","name":"StreamRegistryEntry.java","base_name":"StreamRegistryEntry","extension":".java","size":3121,"date":"2019-10-25","sha1":"8ba0b988509073a90c7c209a25eca568372c9257","md5":"147960d3c494239c4df79b5672720f3e","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/awt/image/spi/URLRegistryEntry.java","type":"file","name":"URLRegistryEntry.java","base_name":"URLRegistryEntry","extension":".java","size":2813,"date":"2019-10-25","sha1":"ef5fed2dedc1fe19fec4d28166fb47f1a1c7b08a","md5":"9c1d2acafd005c4e62c530bce90f8a72","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/swing","type":"directory","name":"swing","base_name":"swing","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":0,"size_count":36149,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/swing/DoubleDocument.java","type":"file","name":"DoubleDocument.java","base_name":"DoubleDocument","extension":".java","size":3560,"date":"2019-10-25","sha1":"14c38ac5ce4cfa481bf0be92343e56d4a0923644","md5":"0ff3b781eb65aae0ccd9c9f2541d4066","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/swing/GridBagConstants.java","type":"file","name":"GridBagConstants.java","base_name":"GridBagConstants","extension":".java","size":3321,"date":"2019-10-25","sha1":"ce81b0c0edaaa8540a7d7a1d67afe1bf454c6a76","md5":"b339190af53de4dfe9590450ecd0299a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/swing/JAffineTransformChooser.java","type":"file","name":"JAffineTransformChooser.java","base_name":"JAffineTransformChooser","extension":".java","size":17965,"date":"2019-10-25","sha1":"858dde3648a3dff87a3f3a8bf666a2a3e566d064","md5":"dcc069f14c71531ac6b59012b2d53f87","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":53,"end_line":53}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/swing/JGridBagPanel.java","type":"file","name":"JGridBagPanel.java","base_name":"JGridBagPanel","extension":".java","size":5906,"date":"2019-10-25","sha1":"ea6c4268b8553c9365e99a7def692017c776d601","md5":"3463e40d4c4bb7f9b7dabd57cf22969c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/swing/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2455,"date":"2019-10-25","sha1":"8b6a06fa4ea9ef46337561372583783c00f9ab89","md5":"c5793d81f0b33859a9c00d1b0a7e624e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/java/org/apache/batik/ext/swing/Resources.java","type":"file","name":"Resources.java","base_name":"Resources","extension":".java","size":2942,"date":"2019-10-25","sha1":"3c7c31c43fddf7373737590a1f0b67a8e5889d77","md5":"69b3e07ea903c8d451b9cd38673467e9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":10,"size_count":3306,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":9,"size_count":3306,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":8,"size_count":3306,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":7,"size_count":3306,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/resources/org/apache/batik/ext","type":"directory","name":"ext","base_name":"ext","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":6,"size_count":3306,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/resources/org/apache/batik/ext/awt","type":"directory","name":"awt","base_name":"awt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":3,"size_count":1355,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/resources/org/apache/batik/ext/awt/image","type":"directory","name":"image","base_name":"image","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":2,"size_count":1355,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/resources/org/apache/batik/ext/awt/image/spi","type":"directory","name":"spi","base_name":"spi","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":1355,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/resources/org/apache/batik/ext/awt/image/spi/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1355,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/resources/org/apache/batik/ext/awt/image/spi/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":1355,"date":"2019-10-25","sha1":"d835ff582dcc02ec86d521e3d28df099cfdc6510","md5":"dbc302332ab8b9e5b3789fd5eabf7513","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/resources/org/apache/batik/ext/swing","type":"directory","name":"swing","base_name":"swing","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":1951,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/resources/org/apache/batik/ext/swing/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1951,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/main/resources/org/apache/batik/ext/swing/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":1951,"date":"2019-10-25","sha1":"46992f3dcd4c226a28338a0cca01e9b4693c831e","md5":"22f8e9a5ce4c6ef35ea31ccd506f0fb8","mime_type":"text/plain","file_type":"ISO-8859 text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-awt-util/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge","type":"directory","name":"batik-bridge","base_name":"batik-bridge","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":188,"dirs_count":17,"size_count":2000764,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":3963,"date":"2019-10-25","sha1":"510c4c9f4a201a94e5b357f6f304f0bd28128aa6","md5":"eea63da5841589d4326bb485e7db0e5b","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-bridge","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-bridge\nBatik bridge","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-anim","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-awt-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-css","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-dom","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-gvt","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-parser","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-script","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-svg-dom","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-xml","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/xmlgraphics-commons","requirement":"${xmlgraphics.commons.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/xml-apis/xml-apis-ext","requirement":"${xmlapisext.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.mozilla/rhino","requirement":"${rhino.version}","scope":"compile","is_runtime":true,"is_optional":true,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-bridge@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-bridge@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-bridge/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-bridge/1.12/batik-bridge-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-bridge/1.12/batik-bridge-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":187,"dirs_count":16,"size_count":1996801,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":187,"dirs_count":12,"size_count":1996801,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":184,"dirs_count":5,"size_count":1989663,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":184,"dirs_count":4,"size_count":1989663,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":184,"dirs_count":3,"size_count":1989663,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":184,"dirs_count":2,"size_count":1989663,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge","type":"directory","name":"bridge","base_name":"bridge","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":184,"dirs_count":1,"size_count":1989663,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/AbstractGraphicsNodeBridge.java","type":"file","name":"AbstractGraphicsNodeBridge.java","base_name":"AbstractGraphicsNodeBridge","extension":".java","size":19292,"date":"2019-10-25","sha1":"07c8b49ff374193d211962eb587e7004d0ca25ba","md5":"ed667c0aa4d2be29cf612fa791a1d600","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":67,"end_line":67}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/AbstractSVGBridge.java","type":"file","name":"AbstractSVGBridge.java","base_name":"AbstractSVGBridge","extension":".java","size":1662,"date":"2019-10-25","sha1":"303f82ddae6b3d89a3ac69bb886446933e0430ef","md5":"eca7e60e5d7d6be07aa54b8cabf4e0cb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/AbstractSVGFilterPrimitiveElementBridge.java","type":"file","name":"AbstractSVGFilterPrimitiveElementBridge.java","base_name":"AbstractSVGFilterPrimitiveElementBridge","extension":".java","size":11946,"date":"2019-10-25","sha1":"cfb85be61b69c91b4c92c939d19fe13aa760eefd","md5":"11914a4e2a70b727e7a80194118ca4a5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/AbstractSVGGradientElementBridge.java","type":"file","name":"AbstractSVGGradientElementBridge.java","base_name":"AbstractSVGGradientElementBridge","extension":".java","size":12037,"date":"2019-10-25","sha1":"32e7d7bb2c6ff43a6a4ec294b9bc8f3875be9e54","md5":"2245ec02f2c96db191c9802e668aa4d8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/AbstractSVGLightingElementBridge.java","type":"file","name":"AbstractSVGLightingElementBridge.java","base_name":"AbstractSVGLightingElementBridge","extension":".java","size":10299,"date":"2019-10-25","sha1":"55c990161b963564a4610dfbc25a4b7e212a31fd","md5":"b69d1ee7b6dff7a3974b5d23d76990b9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/AnimatableGenericSVGBridge.java","type":"file","name":"AnimatableGenericSVGBridge.java","base_name":"AnimatableGenericSVGBridge","extension":".java","size":4967,"date":"2019-10-25","sha1":"79c0d420428e92062b0689871b11dcb5fbcb770f","md5":"8c5577ed855b68db7f40d8a87fb68e4c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/AnimatableSVGBridge.java","type":"file","name":"AnimatableSVGBridge.java","base_name":"AnimatableSVGBridge","extension":".java","size":3167,"date":"2019-10-25","sha1":"2a88e19a17eb67aa0880eaf8d0f431423225e319","md5":"9dbe57aeabf182a9f20e60bbfbf634f5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/AnimationSupport.java","type":"file","name":"AnimationSupport.java","base_name":"AnimationSupport","extension":".java","size":3568,"date":"2019-10-25","sha1":"eea41830c1483a3569c53e16d32d0d6a5af00c33","md5":"52f6a8e39978796ec211a7f31ae48e7e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/BaseScriptingEnvironment.java","type":"file","name":"BaseScriptingEnvironment.java","base_name":"BaseScriptingEnvironment","extension":".java","size":31311,"date":"2019-10-25","sha1":"b6629db44080ec74573567d3d4a8f828d986c543","md5":"0cbf63dd949a811d72025155174affa1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":65,"end_line":65}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/BasicTextPainter.java","type":"file","name":"BasicTextPainter.java","base_name":"BasicTextPainter","extension":".java","size":4327,"date":"2019-10-25","sha1":"c00551afbb68c42268186f62463a8ad83676ee10","md5":"146efbfb5de7b31cd0ce01cb0dba8b82","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":32,"end_line":32},{"email":"vincent.hardy@sun.com","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/BatikWrapFactory.java","type":"file","name":"BatikWrapFactory.java","base_name":"BatikWrapFactory","extension":".java","size":1876,"date":"2019-10-25","sha1":"ddfb8a14ef0399c0538e48037a46daabcfec9f67","md5":"ca34a196438207d0ad2a3eb54d2003cb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/Bridge.java","type":"file","name":"Bridge.java","base_name":"Bridge","extension":".java","size":1553,"date":"2019-10-25","sha1":"dff6a4f2a6a031a521d4e63b6d142a260ff69f8f","md5":"a25cc1e8dff82fa8ddaf0635fd42f874","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/BridgeContext.java","type":"file","name":"BridgeContext.java","base_name":"BridgeContext","extension":".java","size":69391,"date":"2019-10-25","sha1":"d23dd0cc1fe2801d33d2c83ce829ef27a007b42e","md5":"a9cdf3ba5eafdade0dcec4536f04843d","mime_type":"text/html","file_type":"HTML document, UTF-8 Unicode text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":89,"end_line":89}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/BridgeEventSupport.java","type":"file","name":"BridgeEventSupport.java","base_name":"BridgeEventSupport","extension":".java","size":18647,"date":"2019-10-25","sha1":"5c9b83273b4cf6fe1bd53e4ea373bc36b07887ea","md5":"909cc22f309976783a5b93d30802c908","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":54,"end_line":54}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/BridgeException.java","type":"file","name":"BridgeException.java","base_name":"BridgeException","extension":".java","size":6575,"date":"2019-10-25","sha1":"0c6f52aad3419ed121c9e00ec5d8bdd88c3d1bb6","md5":"89c41a1d033547fade8b946d057da74a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/BridgeExtension.java","type":"file","name":"BridgeExtension.java","base_name":"BridgeExtension","extension":".java","size":3185,"date":"2019-10-25","sha1":"502c623a80f1c338f00b7e930e61455577513a74","md5":"71f6676a3a7478b909ed0543270704e3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/BridgeUpdateHandler.java","type":"file","name":"BridgeUpdateHandler.java","base_name":"BridgeUpdateHandler","extension":".java","size":2464,"date":"2019-10-25","sha1":"fe2e9424824fbbe545aae611c63f68c39aa550ed","md5":"ea1d71f9bcea0e7ffbeaefa6de0d3f69","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@apache.org","start_line":29,"end_line":29},{"email":"Thierry.Kormann@sophia.inria.fr","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/ClipBridge.java","type":"file","name":"ClipBridge.java","base_name":"ClipBridge","extension":".java","size":1854,"date":"2019-10-25","sha1":"31a5e5007b704320e034008280b4ac914bef9299","md5":"b01d16dab8a970e018393d3dd9676857","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":29,"end_line":29},{"email":"Thomas.DeWeeese@Kodak.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/ConcreteTextLayoutFactory.java","type":"file","name":"ConcreteTextLayoutFactory.java","base_name":"ConcreteTextLayoutFactory","extension":".java","size":2111,"date":"2019-10-25","sha1":"0de3c12a1f21cd6dba5db8fc08a55c140fbc35e0","md5":"3fd4b1fd24d536be8f7ee554911f1f7a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/ConcreteTextPainter.java","type":"file","name":"ConcreteTextPainter.java","base_name":"ConcreteTextPainter","extension":".java","size":2251,"date":"2019-10-25","sha1":"b7a0a1eace1276c237a4f7dfc657d563f9da6ccd","md5":"12b370336701d8967f1769ba87e85342","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/ConcreteTextSelector.java","type":"file","name":"ConcreteTextSelector.java","base_name":"ConcreteTextSelector","extension":".java","size":12047,"date":"2019-10-25","sha1":"0262e21960195c1f30b6bdb6135f003edb337cdb","md5":"69413458be1c510e995cc114a405f0f8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/CSSFontFace.java","type":"file","name":"CSSFontFace.java","base_name":"CSSFontFace","extension":".java","size":6988,"date":"2019-10-25","sha1":"df6668b56094f1dfd907d753ab413fa547c39321","md5":"159b700732cc249a18a2fd65b923425f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/CSSUtilities.java","type":"file","name":"CSSUtilities.java","base_name":"CSSUtilities","extension":".java","size":35431,"date":"2019-10-25","sha1":"907bea0349a4af7f762c014e1939bc4936b20f36","md5":"4515c3c797dbccae793f37ec3530b138","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":52,"end_line":52}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/CursorManager.java","type":"file","name":"CursorManager.java","base_name":"CursorManager","extension":".java","size":24814,"date":"2019-10-25","sha1":"9eab71df82d24f6d4af93aa9859a7a648e0400d1","md5":"20c813b6d4cb7cbdaa6017c254d72274","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":65,"end_line":65}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/DefaultExternalResourceSecurity.java","type":"file","name":"DefaultExternalResourceSecurity.java","base_name":"DefaultExternalResourceSecurity","extension":".java","size":4012,"date":"2019-10-25","sha1":"dacaa7fdc4bce123f9f45cc7c14c602a692e260c","md5":"5814a06747b328539f9cf314627db308","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/DefaultFontFamilyResolver.java","type":"file","name":"DefaultFontFamilyResolver.java","base_name":"DefaultFontFamilyResolver","extension":".java","size":7328,"date":"2019-10-25","sha1":"2d0f9009eda5d857b36a6d3166e4c18f12c175f2","md5":"c5e7bfd4d4c7408eea06f89cb3492769","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/DefaultScriptSecurity.java","type":"file","name":"DefaultScriptSecurity.java","base_name":"DefaultScriptSecurity","extension":".java","size":3900,"date":"2019-10-25","sha1":"f344c52b6e16b5cac34b2badaf5e886d891edfeb","md5":"8098b52138a189a541d2157efa6d24b7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/DocumentBridge.java","type":"file","name":"DocumentBridge.java","base_name":"DocumentBridge","extension":".java","size":2269,"date":"2019-10-25","sha1":"14ee1f84b814912718141a80bf02c2957add575f","md5":"bd8932179af82869a4cc069c47b2a2c1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/DocumentJarClassLoader.java","type":"file","name":"DocumentJarClassLoader.java","base_name":"DocumentJarClassLoader","extension":".java","size":3634,"date":"2019-10-25","sha1":"59616b6e39a03632c712a673d045d4d8b472e8e9","md5":"b225ac1064c11b0e97d30d1898919397","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/DocumentLoader.java","type":"file","name":"DocumentLoader.java","base_name":"DocumentLoader","extension":".java","size":6283,"date":"2019-10-25","sha1":"241e22968a249dcc9ef8a353528577060e8d523c","md5":"a1d161620f132ab615d8693e6874c29b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/DynamicGVTBuilder.java","type":"file","name":"DynamicGVTBuilder.java","base_name":"DynamicGVTBuilder","extension":".java","size":1209,"date":"2019-10-25","sha1":"f2d5cac8cc38f77f66ab3d01d876d8623790be9b","md5":"4b214ba347e6640cc715daef91403916","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/EmbededExternalResourceSecurity.java","type":"file","name":"EmbededExternalResourceSecurity.java","base_name":"EmbededExternalResourceSecurity","extension":".java","size":2803,"date":"2019-10-25","sha1":"bb6d66e01ac1df196706f2b56db1e2a4fb8008a0","md5":"720d3c7e600ef757fe2a1ffae6bba882","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/EmbededScriptSecurity.java","type":"file","name":"EmbededScriptSecurity.java","base_name":"EmbededScriptSecurity","extension":".java","size":3601,"date":"2019-10-25","sha1":"ce73533677fe2acfb6239addf22611c45da16e9b","md5":"4ff81d765a8b3f0806fdbc3f41526b5e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/ErrorConstants.java","type":"file","name":"ErrorConstants.java","base_name":"ErrorConstants","extension":".java","size":4115,"date":"2019-10-25","sha1":"bf2b5d8896deb09a740aedcb7d2e4c5c0d2ad673","md5":"ddb6d4f81f4ba98ac58764ca381ab794","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/EventTargetWrapper.java","type":"file","name":"EventTargetWrapper.java","base_name":"EventTargetWrapper","extension":".java","size":18691,"date":"2019-10-25","sha1":"3f2afae39e463fd54b8f38f4c3220ed40c003a7b","md5":"04db0cbf299dc4a25d5d9ac72593ebc0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":48,"end_line":48}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/ExternalResourceSecurity.java","type":"file","name":"ExternalResourceSecurity.java","base_name":"ExternalResourceSecurity","extension":".java","size":1359,"date":"2019-10-25","sha1":"517bafe9147e5166fde5476af836a1825a8e781d","md5":"2473acd7693546239add31827a8997ca","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/FilterBridge.java","type":"file","name":"FilterBridge.java","base_name":"FilterBridge","extension":".java","size":1824,"date":"2019-10-25","sha1":"9c13b2f537fc0f803ebe266413b125654dcacd89","md5":"ead1fa2fa6a5ba573714ff4452dac60d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":28,"end_line":28},{"email":"tkormann@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/FilterPrimitiveBridge.java","type":"file","name":"FilterPrimitiveBridge.java","base_name":"FilterPrimitiveBridge","extension":".java","size":2499,"date":"2019-10-25","sha1":"0979f4895d0745075bc0728bf95ac895512cb935","md5":"f4d4a212222a7e727ef554f50ecf3bf4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/FlowGlyphLayout.java","type":"file","name":"FlowGlyphLayout.java","base_name":"FlowGlyphLayout","extension":".java","size":1679,"date":"2019-10-25","sha1":"28bb39df0f70d463ec5b8f0141d76bcf321b5eb4","md5":"40716fc6bc28abacb2b3c1b3c4d45eda","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/FlowTextLayoutFactory.java","type":"file","name":"FlowTextLayoutFactory.java","base_name":"FlowTextLayoutFactory","extension":".java","size":2078,"date":"2019-10-25","sha1":"0ac78a4f23dec05b13fd8ddec89855829fed9976","md5":"eb45f92ef80f304a3b5cfd88741b9151","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"dewese@apache.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/FlowTextNode.java","type":"file","name":"FlowTextNode.java","base_name":"FlowTextNode","extension":".java","size":1381,"date":"2019-10-25","sha1":"935c2a9bdcb6027813ef21c2a729cf6228f202d8","md5":"944378d327db05c6dab51925e74bc557","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/FlowTextPainter.java","type":"file","name":"FlowTextPainter.java","base_name":"FlowTextPainter","extension":".java","size":19758,"date":"2019-10-25","sha1":"e3aa6f28f101f4846ff28a395c03f4c81b2cfac2","md5":"311f6d39d5c502bb6669517a34256bd1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":51,"end_line":51}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/FocusManager.java","type":"file","name":"FocusManager.java","base_name":"FocusManager","extension":".java","size":9635,"date":"2019-10-25","sha1":"476b58f9505a2b447f6e8c89bedb82ce755be7b5","md5":"864382aac21a4d3e7e8c043d7d945747","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/FontFace.java","type":"file","name":"FontFace.java","base_name":"FontFace","extension":".java","size":8367,"date":"2019-10-25","sha1":"a8344f450e6c23257fea3353f5a3f7544733ea0d","md5":"480fb28a811123c962cf82f91cf1a92f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/FontFamilyResolver.java","type":"file","name":"FontFamilyResolver.java","base_name":"FontFamilyResolver","extension":".java","size":1623,"date":"2019-10-25","sha1":"27484a7ee7c70605fde6bfa6e6aa17bae7bdc966","md5":"0d3746fa715cea5149e536cdee834290","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/GenericBridge.java","type":"file","name":"GenericBridge.java","base_name":"GenericBridge","extension":".java","size":1577,"date":"2019-10-25","sha1":"f2ac58417300cdd95f5e8a5e50e1715754dfdcd8","md5":"4561bca7d2868b0bf5166eabbbdcc476","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@apache.org","start_line":27,"end_line":27},{"email":"Thierry.Kormann@sophia.inria.fr","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/GlobalWrapper.java","type":"file","name":"GlobalWrapper.java","base_name":"GlobalWrapper","extension":".java","size":3436,"date":"2019-10-25","sha1":"96b6d57c87131cdca902f4b387c0a9c06982b61e","md5":"af57fd9cac6d140e249fcd3b3a5b7ae0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/GlyphLayout.java","type":"file","name":"GlyphLayout.java","base_name":"GlyphLayout","extension":".java","size":78192,"date":"2019-10-25","sha1":"c37a770eacd5fcd3c80f0c241fc53d58190c75ae","md5":"1bf2e171279441fdb4c2836688a18e19","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":53,"end_line":53}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/GraphicsNodeBridge.java","type":"file","name":"GraphicsNodeBridge.java","base_name":"GraphicsNodeBridge","extension":".java","size":2900,"date":"2019-10-25","sha1":"9b83604ad0f5b39b0a2914c5846fdfca375093a1","md5":"b25f9257a01449ef712407cc868e2b8e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/GVTBuilder.java","type":"file","name":"GVTBuilder.java","base_name":"GVTBuilder","extension":".java","size":9926,"date":"2019-10-25","sha1":"36d9fd20b37330ed3f1e6016e70c7dbe3152309d","md5":"100141878cfbe0ec716d159234bd63b3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/InterruptedBridgeException.java","type":"file","name":"InterruptedBridgeException.java","base_name":"InterruptedBridgeException","extension":".java","size":1288,"date":"2019-10-25","sha1":"3c4ac193b4c3b1f3b77443e557bda2b7e7430b87","md5":"477ccb8e58da19d23b7ac45b554e4100","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/Location.java","type":"file","name":"Location.java","base_name":"Location","extension":".java","size":2057,"date":"2019-10-25","sha1":"1254a8a99dfa415127135107fbd4c35289c65421","md5":"62b69d9bf5c85af14087527329e74a64","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"gwadej@anomaly.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/Mark.java","type":"file","name":"Mark.java","base_name":"Mark","extension":".java","size":1343,"date":"2019-10-25","sha1":"43ef96ac44e0cc9bd43ce442ac68aef7e6ce483e","md5":"7a86e5dc23520976d94a756660d7a9fe","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/MarkerBridge.java","type":"file","name":"MarkerBridge.java","base_name":"MarkerBridge","extension":".java","size":1589,"date":"2019-10-25","sha1":"8e6492c5c7aff302874df97edbc30a9681e4d0f8","md5":"aeee81f303c96d7b77935b84a7c110ff","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/MaskBridge.java","type":"file","name":"MaskBridge.java","base_name":"MaskBridge","extension":".java","size":1707,"date":"2019-10-25","sha1":"576a1252fca0997a24896a9ff313c191247a7a57","md5":"2fbd2358066aa8a9a584c6ca5d4b6622","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2453,"date":"2019-10-25","sha1":"72098cd7eb900b833217cb811b6a9939014388b6","md5":"b1f1ea3b0612e4d5f768d3d6d7a26a5c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/MultiResGraphicsNode.java","type":"file","name":"MultiResGraphicsNode.java","base_name":"MultiResGraphicsNode","extension":".java","size":8100,"date":"2019-10-25","sha1":"c629b9b4ba218cb8d0f9cca88a62e497ea396f08","md5":"76ec8e43ed6b10a8af754a012c7c1108","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/NoLoadExternalResourceSecurity.java","type":"file","name":"NoLoadExternalResourceSecurity.java","base_name":"NoLoadExternalResourceSecurity","extension":".java","size":2144,"date":"2019-10-25","sha1":"17247fbcfc2ab0e3447b9f0538bc4a3019c1308b","md5":"fb3431a3d211a4541cddab1c2832ed7a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/NoLoadScriptSecurity.java","type":"file","name":"NoLoadScriptSecurity.java","base_name":"NoLoadScriptSecurity","extension":".java","size":2188,"date":"2019-10-25","sha1":"020c8c16a63ea9a3ccff9eaa20dbd118930f288a","md5":"83b474ba949f574a629b7557e3345918","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/NoRepaintRunnable.java","type":"file","name":"NoRepaintRunnable.java","base_name":"NoRepaintRunnable","extension":".java","size":1142,"date":"2019-10-25","sha1":"3a93e96898883fb9a39912c2755d992969e84c47","md5":"d79a1d4163fdeacc0f7e2aec3bfcf311","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":302,"date":"2019-10-25","sha1":"a07e6c73406b6ae08f9fcd3bfba1d4873df47f65","md5":"8aed4917de801d2d32c9d9f880b1fc14","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/PaintBridge.java","type":"file","name":"PaintBridge.java","base_name":"PaintBridge","extension":".java","size":1804,"date":"2019-10-25","sha1":"cd827e2713ba191de45da9b19b1b1f52f99b520c","md5":"031bc526f642459d840b929bf74ab4c3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/PaintServer.java","type":"file","name":"PaintServer.java","base_name":"PaintServer","extension":".java","size":30360,"date":"2019-10-25","sha1":"7716e87e2166ce2ce75164f9cbdd873dd454a54a","md5":"0de7b860a32be3c8ba72dcd99fc24b54","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":65,"end_line":65}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/RelaxedExternalResourceSecurity.java","type":"file","name":"RelaxedExternalResourceSecurity.java","base_name":"RelaxedExternalResourceSecurity","extension":".java","size":1971,"date":"2019-10-25","sha1":"af306494cdb5a6a747f4456a38ee4e3d46bf8674","md5":"c26bb54aeed8a0c22fca625a10530b90","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/RelaxedScriptSecurity.java","type":"file","name":"RelaxedScriptSecurity.java","base_name":"RelaxedScriptSecurity","extension":".java","size":2209,"date":"2019-10-25","sha1":"ead93563961ae117f815fb8911658369959e9c27","md5":"71085bed81d37a33e3816d9885d7dfe1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/RepaintManager.java","type":"file","name":"RepaintManager.java","base_name":"RepaintManager","extension":".java","size":4272,"date":"2019-10-25","sha1":"c888c608e2360b43904557f64e66c530880a2c92","md5":"23d1587e69859bbf4f9c873b5d063ad0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36},{"email":"vincent.hardy@sun.com","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/RhinoInterpreter.java","type":"file","name":"RhinoInterpreter.java","base_name":"RhinoInterpreter","extension":".java","size":20796,"date":"2019-10-25","sha1":"43c1d18c85ba0ef4c500b1eb7d456d7f4451aec7","md5":"6d8fb9c34b1987efa6aa3026a7e7e14d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":60,"end_line":60}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/RhinoInterpreterFactory.java","type":"file","name":"RhinoInterpreterFactory.java","base_name":"RhinoInterpreterFactory","extension":".java","size":2907,"date":"2019-10-25","sha1":"57153d8df274f654f7df24d43caa9491a6fcbb16","md5":"deb45d77cb2c892c1d3e92d980733a82","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":30,"end_line":30},{"email":"vhardy@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/ScriptHandler.java","type":"file","name":"ScriptHandler.java","base_name":"ScriptHandler","extension":".java","size":1816,"date":"2019-10-25","sha1":"27215b2e4cde7f5b0ed38fd51346af5b8d0347b1","md5":"e593e2f4f3f5ac829ff032b5395234cf","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/ScriptingEnvironment.java","type":"file","name":"ScriptingEnvironment.java","base_name":"ScriptingEnvironment","extension":".java","size":51314,"date":"2019-10-25","sha1":"b0b718e8799359b7d405136d7369064182afd567","md5":"735a3ee2a2133aa8f007f95ef583da44","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":72,"end_line":72}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/ScriptSecurity.java","type":"file","name":"ScriptSecurity.java","base_name":"ScriptSecurity","extension":".java","size":1462,"date":"2019-10-25","sha1":"edd0796ff4c3646ff051871dd69a868f6d21cad1","md5":"87ece4581a447f10d9cdeea4fc610839","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/StrokingTextPainter.java","type":"file","name":"StrokingTextPainter.java","base_name":"StrokingTextPainter","extension":".java","size":65692,"date":"2019-10-25","sha1":"d9b19eeca8c4c6d1452aa5a06c5a0655e2f413c9","md5":"e735d53cba9a394ef8a9e97e1fe11077","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":61,"end_line":61}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/StyleReference.java","type":"file","name":"StyleReference.java","base_name":"StyleReference","extension":".java","size":1977,"date":"2019-10-25","sha1":"169bd18a08df78f2a319e0f9df507fba1b961ad7","md5":"80a4b0cf638488f4528694ff74483931","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"etissandier@ilog.fr","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVG12RhinoInterpreter.java","type":"file","name":"SVG12RhinoInterpreter.java","base_name":"SVG12RhinoInterpreter","extension":".java","size":2120,"date":"2019-10-25","sha1":"3fa9333b578f1b594632d5b7a3e795116e09bd4d","md5":"df2ec144d877b07f42197644fb9f4f42","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGAElementBridge.java","type":"file","name":"SVGAElementBridge.java","base_name":"SVGAElementBridge","extension":".java","size":12662,"date":"2019-10-25","sha1":"ae170df72e3e1b5de4791c9e935b11636094fcd9","md5":"3289d4adab68fc1e7ba2eb9e2a76d4b0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGAltGlyphElementBridge.java","type":"file","name":"SVGAltGlyphElementBridge.java","base_name":"SVGAltGlyphElementBridge","extension":".java","size":14920,"date":"2019-10-25","sha1":"e40a45773bfefe82306ae2e53e49d63c3ed47f9a","md5":"4b1ae57a8a77ee98a0a75936a04f9fbd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGAltGlyphHandler.java","type":"file","name":"SVGAltGlyphHandler.java","base_name":"SVGAltGlyphHandler","extension":".java","size":3441,"date":"2019-10-25","sha1":"1844d513a9050a288c8e521a7e5c6ba8e42eebc1","md5":"7e39a360874c32fd9d60c3aed84956d1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGAnimateColorElementBridge.java","type":"file","name":"SVGAnimateColorElementBridge.java","base_name":"SVGAnimateColorElementBridge","extension":".java","size":3418,"date":"2019-10-25","sha1":"f9b83596fe159be3f76b53e534eff80a4c0d0bd9","md5":"e674def9f7a83b51ee6680ee14f2d4b2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGAnimateElementBridge.java","type":"file","name":"SVGAnimateElementBridge.java","base_name":"SVGAnimateElementBridge","extension":".java","size":12156,"date":"2019-10-25","sha1":"81f89c035e03d1c07adb21a1aad5f870758a6055","md5":"9e03609dcb4852d7c326701c03b8ec42","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGAnimateMotionElementBridge.java","type":"file","name":"SVGAnimateMotionElementBridge.java","base_name":"SVGAnimateMotionElementBridge","extension":".java","size":13222,"date":"2019-10-25","sha1":"03255509c561c5cbee909d765fe0c99e11233960","md5":"383f28aab95c909fafeee9d4583b379f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGAnimateTransformElementBridge.java","type":"file","name":"SVGAnimateTransformElementBridge.java","base_name":"SVGAnimateTransformElementBridge","extension":".java","size":9781,"date":"2019-10-25","sha1":"c37907ef8d6a4e3a2acfae970af2177396e75d9d","md5":"1abfdef86f2d6ab375ff9a1dcdb97e25","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGAnimationElementBridge.java","type":"file","name":"SVGAnimationElementBridge.java","base_name":"SVGAnimationElementBridge","extension":".java","size":21967,"date":"2019-10-25","sha1":"8ef3d0146568fdd72e425f346172bd7e99786aaf","md5":"bfd774e0d121ec8d6bbde412d9e416a1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGAnimationEngine.java","type":"file","name":"SVGAnimationEngine.java","base_name":"SVGAnimationEngine","extension":".java","size":68250,"date":"2019-10-25","sha1":"35da8fc72e77e9ff15512ea1a0b0e6b79b1d6532","md5":"1609fb1f03abc3b76b33f951852eb179","mime_type":"text/plain","file_type":"UTF-8 Unicode text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGBridgeExtension.java","type":"file","name":"SVGBridgeExtension.java","base_name":"SVGBridgeExtension","extension":".java","size":7678,"date":"2019-10-25","sha1":"0e56d112c1e1e6aaa1f23a59c6b71ee9f4fdb791","md5":"bbcb55c31922b0cb095850f4899e1ff9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":31,"end_line":31},{"email":"batik-dev@xmlgraphics.apache.org","start_line":66,"end_line":66}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/batik","start_line":74,"end_line":74}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGBrokenLinkProvider.java","type":"file","name":"SVGBrokenLinkProvider.java","base_name":"SVGBrokenLinkProvider","extension":".java","size":2704,"date":"2019-10-25","sha1":"e5277e3224be462c58cff5a63e74a574639da62f","md5":"a9dc49e960776ef3362cb48b5bbfe254","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGCircleElementBridge.java","type":"file","name":"SVGCircleElementBridge.java","base_name":"SVGCircleElementBridge","extension":".java","size":4313,"date":"2019-10-25","sha1":"43dc1883b90a458210808685f04e7b13a1e04357","md5":"31eb2badac9230dd70b17926b6df5e69","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGClipPathElementBridge.java","type":"file","name":"SVGClipPathElementBridge.java","base_name":"SVGClipPathElementBridge","extension":".java","size":7163,"date":"2019-10-25","sha1":"680e745d8362d22d2b821565698c93063a96f1d9","md5":"c8f0a947e519f73095b704d8ab328c3f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGColorProfileElementBridge.java","type":"file","name":"SVGColorProfileElementBridge.java","base_name":"SVGColorProfileElementBridge","extension":".java","size":6996,"date":"2019-10-25","sha1":"c5ffd42712b322994ae62bc52ed035bcddb09047","md5":"aad1691523fb86ccbffe79282f837ee0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGDecoratedShapeElementBridge.java","type":"file","name":"SVGDecoratedShapeElementBridge.java","base_name":"SVGDecoratedShapeElementBridge","extension":".java","size":4291,"date":"2019-10-25","sha1":"1d1292f90eab6114c82d69290d602b7b3a3291aa","md5":"3909c5937e3d0e44bc7799034cbd786c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGDescElementBridge.java","type":"file","name":"SVGDescElementBridge.java","base_name":"SVGDescElementBridge","extension":".java","size":1469,"date":"2019-10-25","sha1":"bbb336e51535de4dbcd04e16d9f2649de55b4460","md5":"333a2a11823dba2c50426b3d20da8664","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGDescriptiveElementBridge.java","type":"file","name":"SVGDescriptiveElementBridge.java","base_name":"SVGDescriptiveElementBridge","extension":".java","size":4532,"date":"2019-10-25","sha1":"168e1de87282d421485580eb3f1cdc0d27d1c163","md5":"6f2e99171edefecc7415130a3eb36cdb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGDocumentBridge.java","type":"file","name":"SVGDocumentBridge.java","base_name":"SVGDocumentBridge","extension":".java","size":7178,"date":"2019-10-25","sha1":"b10cb9f6d7d1f4a09c004902997453a349bdcdd7","md5":"c9b26eff4708d7b26ff326f72e6faf99","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGEllipseElementBridge.java","type":"file","name":"SVGEllipseElementBridge.java","base_name":"SVGEllipseElementBridge","extension":".java","size":4555,"date":"2019-10-25","sha1":"d1547c60a998c9de3b275daf776f924548897b28","md5":"25f4786315451616c25a1b41395fa386","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeBlendElementBridge.java","type":"file","name":"SVGFeBlendElementBridge.java","base_name":"SVGFeBlendElementBridge","extension":".java","size":6139,"date":"2019-10-25","sha1":"55fa8515ea7bbc66f781ae14f8011da02a25ff92","md5":"ff9141a8dc3e9669249e8492f87f9b3b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeColorMatrixElementBridge.java","type":"file","name":"SVGFeColorMatrixElementBridge.java","base_name":"SVGFeColorMatrixElementBridge","extension":".java","size":9878,"date":"2019-10-25","sha1":"b5ebac635a1977ce6a1548c6c41203e59d9d0982","md5":"ff11f69fe869d2966f4c8227f9a3ca0d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeComponentTransferElementBridge.java","type":"file","name":"SVGFeComponentTransferElementBridge.java","base_name":"SVGFeComponentTransferElementBridge","extension":".java","size":13454,"date":"2019-10-25","sha1":"8c5d9bf6338caa73d3837031d5fa4fc3ed0ec157","md5":"8b091d90a00a3b7b8b92527dac70885c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeCompositeElementBridge.java","type":"file","name":"SVGFeCompositeElementBridge.java","base_name":"SVGFeCompositeElementBridge","extension":".java","size":6651,"date":"2019-10-25","sha1":"869acda025e4ffe611a7e46396b300fb66785293","md5":"6674a533e3b699dd8d8ad94085b3d9f6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeConvolveMatrixElementBridge.java","type":"file","name":"SVGFeConvolveMatrixElementBridge.java","base_name":"SVGFeConvolveMatrixElementBridge","extension":".java","size":16306,"date":"2019-10-25","sha1":"bcfc097e5dbdf5e52629e5514d6b818a42b786cb","md5":"9ce88dbdfcae0c036ff39d8a22bf5c7a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeDiffuseLightingElementBridge.java","type":"file","name":"SVGFeDiffuseLightingElementBridge.java","base_name":"SVGFeDiffuseLightingElementBridge","extension":".java","size":5339,"date":"2019-10-25","sha1":"cafd6389213e52360cec20620940bbb411f824f9","md5":"96d26bae36c45792bc41a096dec103cc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeDisplacementMapElementBridge.java","type":"file","name":"SVGFeDisplacementMapElementBridge.java","base_name":"SVGFeDisplacementMapElementBridge","extension":".java","size":7083,"date":"2019-10-25","sha1":"e5e442e711ae211ae1d107da8cca84839e5d86d0","md5":"01ad81dfa893d4bb6875e50d98fd7a25","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeFloodElementBridge.java","type":"file","name":"SVGFeFloodElementBridge.java","base_name":"SVGFeFloodElementBridge","extension":".java","size":3718,"date":"2019-10-25","sha1":"5ff72d66a49b19bdbadc5487241357d657e58854","md5":"3b7d46bb246a047530a913afbae854c4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeGaussianBlurElementBridge.java","type":"file","name":"SVGFeGaussianBlurElementBridge.java","base_name":"SVGFeGaussianBlurElementBridge","extension":".java","size":6843,"date":"2019-10-25","sha1":"5898f8c9d86faf8c1047301b45600dc9aade8541","md5":"42126865da730be5b3acaf0ecde4293d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeImageElementBridge.java","type":"file","name":"SVGFeImageElementBridge.java","base_name":"SVGFeImageElementBridge","extension":".java","size":11736,"date":"2019-10-25","sha1":"805acd5754b9c0eac7d721da4a28a9834591c995","md5":"c4c318241b4b0b16ebe06255a9c2a3e0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeMergeElementBridge.java","type":"file","name":"SVGFeMergeElementBridge.java","base_name":"SVGFeMergeElementBridge","extension":".java","size":8588,"date":"2019-10-25","sha1":"2ff6ed0b5e4abec0f6a908d6eb694af7443f0177","md5":"2c486e7751dff07db900c0097cc39491","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeMorphologyElementBridge.java","type":"file","name":"SVGFeMorphologyElementBridge.java","base_name":"SVGFeMorphologyElementBridge","extension":".java","size":7374,"date":"2019-10-25","sha1":"27a2848e39f0cf4e065ba1c0d62398ed736bbd9d","md5":"8e00557dd7b0c8d7d278695dd8070969","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeOffsetElementBridge.java","type":"file","name":"SVGFeOffsetElementBridge.java","base_name":"SVGFeOffsetElementBridge","extension":".java","size":4950,"date":"2019-10-25","sha1":"2f8d0f23f04d7b19b234a63325832c65bafff7ea","md5":"4723bfdf974fa07c913ee303ff6fa3e8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeSpecularLightingElementBridge.java","type":"file","name":"SVGFeSpecularLightingElementBridge.java","base_name":"SVGFeSpecularLightingElementBridge","extension":".java","size":6738,"date":"2019-10-25","sha1":"081d7bcfab22791a68e07edd79efaab3a98866df","md5":"71e486378eda7acb5785e2ee46038045","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeTileElementBridge.java","type":"file","name":"SVGFeTileElementBridge.java","base_name":"SVGFeTileElementBridge","extension":".java","size":4172,"date":"2019-10-25","sha1":"336c12db93b4786e23bf09f0f52c3f62410852f6","md5":"6b5d3a0f3f85c5c64dbc274b5c2c1319","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFeTurbulenceElementBridge.java","type":"file","name":"SVGFeTurbulenceElementBridge.java","base_name":"SVGFeTurbulenceElementBridge","extension":".java","size":8534,"date":"2019-10-25","sha1":"84a8039d50a6e529d13e0baa02eeb0b3a55bbb97","md5":"9f871473a435ed1aef4c3c7b7a1b4d69","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFilterElementBridge.java","type":"file","name":"SVGFilterElementBridge.java","base_name":"SVGFilterElementBridge","extension":".java","size":10858,"date":"2019-10-25","sha1":"71bc7c78c6903c68e61748d582707088b44aee9e","md5":"d6b2c23ce8854eded744e4188bf2768e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":44,"end_line":44}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFontElementBridge.java","type":"file","name":"SVGFontElementBridge.java","base_name":"SVGFontElementBridge","extension":".java","size":5331,"date":"2019-10-25","sha1":"6de3689bb7b1044c3f9a94c8c1028f38325f49fb","md5":"b6445ebd4e89858f597829955f4697fc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFontFace.java","type":"file","name":"SVGFontFace.java","base_name":"SVGFontFace","extension":".java","size":3184,"date":"2019-10-25","sha1":"601adbe1c3fe7a5a2c65ded36807aca015e45aed","md5":"36a6fe0c05205276880e3c237034d70f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFontFaceElementBridge.java","type":"file","name":"SVGFontFaceElementBridge.java","base_name":"SVGFontFaceElementBridge","extension":".java","size":12848,"date":"2019-10-25","sha1":"1024da2eecd4b05b38a2d588a81e0de77d721d1a","md5":"292b79b90bd42bbb8824a57ccb0c3d7b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFontFamily.java","type":"file","name":"SVGFontFamily.java","base_name":"SVGFontFamily","extension":".java","size":5191,"date":"2019-10-25","sha1":"4f24bcf1d6316b9e836a4af1f1c28dfc26e15275","md5":"60b35e590c142b9c30a9f4c656e03600","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGFontUtilities.java","type":"file","name":"SVGFontUtilities.java","base_name":"SVGFontUtilities","extension":".java","size":9788,"date":"2019-10-25","sha1":"82a02bb52e19b58349099307dd12432c0dab5c0e","md5":"8caa3083d3772d08ce8fd6d60d630242","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":44,"end_line":44}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGGElementBridge.java","type":"file","name":"SVGGElementBridge.java","base_name":"SVGGElementBridge","extension":".java","size":4940,"date":"2019-10-25","sha1":"a31b09c81adcfc3d3c594ac4787b2cfc24e87285","md5":"f03316f33d3f269e22cbfbb96e84ee83","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGGlyphElementBridge.java","type":"file","name":"SVGGlyphElementBridge.java","base_name":"SVGGlyphElementBridge","extension":".java","size":12863,"date":"2019-10-25","sha1":"443bd222cd82d136c8e84733ff1fd250c2b3630d","md5":"d95ea63d89af75e97af5325832818bfa","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":46,"end_line":46}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGGVTFont.java","type":"file","name":"SVGGVTFont.java","base_name":"SVGGVTFont","extension":".java","size":32317,"date":"2019-10-25","sha1":"3efc946fa6e0f03587a67ef03cf8c9e7863391dd","md5":"20712bf0fbd3712f6f84635276f045f2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":50,"end_line":50}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGHKernElementBridge.java","type":"file","name":"SVGHKernElementBridge.java","base_name":"SVGHKernElementBridge","extension":".java","size":1346,"date":"2019-10-25","sha1":"ef83e454fb8bdcf9a2e6fb0b04055b150bc76626","md5":"f486b6ae51f16a424de0d8c7de189cb8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"dean.jackson@cmis.csiro.au","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGImageElementBridge.java","type":"file","name":"SVGImageElementBridge.java","base_name":"SVGImageElementBridge","extension":".java","size":39658,"date":"2019-10-25","sha1":"d5ece40753f2f61f453a324b9d1375b758749d5f","md5":"0c3a9d995eacd7c1050d6eca37b6b781","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":76,"end_line":76}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGKernElementBridge.java","type":"file","name":"SVGKernElementBridge.java","base_name":"SVGKernElementBridge","extension":".java","size":8228,"date":"2019-10-25","sha1":"2482e913e272c18b03bd098ddc593c583d2f8def","md5":"296ec793ce50e5e89f3e8eb51da21f33","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"dean.jackson@cmis.csiro.au","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGLinearGradientElementBridge.java","type":"file","name":"SVGLinearGradientElementBridge.java","base_name":"SVGLinearGradientElementBridge","extension":".java","size":6873,"date":"2019-10-25","sha1":"ab4d27e20432c5d3644ddccc5d311ccabcd2e5d2","md5":"86a1060045d4b3ff5974e618e444515b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGLineElementBridge.java","type":"file","name":"SVGLineElementBridge.java","base_name":"SVGLineElementBridge","extension":".java","size":4996,"date":"2019-10-25","sha1":"6014f83946fe7bae3a928b5287ff14b99856b9a7","md5":"b18edefb5957447f7254d9d2f794e2cd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGMarkerElementBridge.java","type":"file","name":"SVGMarkerElementBridge.java","base_name":"SVGMarkerElementBridge","extension":".java","size":9461,"date":"2019-10-25","sha1":"d476d3db44251f243f1e94191c4605b50a943c7e","md5":"b6684679acfb22be9cbcf35fa7690a20","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGMaskElementBridge.java","type":"file","name":"SVGMaskElementBridge.java","base_name":"SVGMaskElementBridge","extension":".java","size":4749,"date":"2019-10-25","sha1":"094525c8a6e17a7d65ba8007dd2054122a824c91","md5":"d8a34d2592b8d622bdb5894e1018e61f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGMissingGlyphElementBridge.java","type":"file","name":"SVGMissingGlyphElementBridge.java","base_name":"SVGMissingGlyphElementBridge","extension":".java","size":1275,"date":"2019-10-25","sha1":"c30fdf225e5d9b773d141fdaec7b03cb945812fb","md5":"a98d82efb01809366657f92b465dee1e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGPathElementBridge.java","type":"file","name":"SVGPathElementBridge.java","base_name":"SVGPathElementBridge","extension":".java","size":5574,"date":"2019-10-25","sha1":"ed5d985da61228d970c299549d76781e365d642c","md5":"988d24434851828a0c1dc2043d971843","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGPatternElementBridge.java","type":"file","name":"SVGPatternElementBridge.java","base_name":"SVGPatternElementBridge","extension":".java","size":13679,"date":"2019-10-25","sha1":"5eca03b36c9873bd4ae1c021a03bfc22da1c1729","md5":"fcb8af15170daf4892c61e180e31c849","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGPolygonElementBridge.java","type":"file","name":"SVGPolygonElementBridge.java","base_name":"SVGPolygonElementBridge","extension":".java","size":4461,"date":"2019-10-25","sha1":"bb8f4f6a5a5322764261a0c89d7791de0a7de803","md5":"f296fd9d73e32fc044ffbf410cbbcea8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGPolylineElementBridge.java","type":"file","name":"SVGPolylineElementBridge.java","base_name":"SVGPolylineElementBridge","extension":".java","size":4476,"date":"2019-10-25","sha1":"1158d8e963662e37709f842e7204e512fdffe5d2","md5":"cc68e17494fcb0879362e420d33c0ef3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGRadialGradientElementBridge.java","type":"file","name":"SVGRadialGradientElementBridge.java","base_name":"SVGRadialGradientElementBridge","extension":".java","size":7464,"date":"2019-10-25","sha1":"87d3f74390532a4bb0d9ccecc3677782b8c60e57","md5":"c9d7d082f5dcfaf01861b360fdff0be0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGRectElementBridge.java","type":"file","name":"SVGRectElementBridge.java","base_name":"SVGRectElementBridge","extension":".java","size":5373,"date":"2019-10-25","sha1":"add02c75e1a9633542b1d47467f51646c0e9ceeb","md5":"557ddeb9a2f01e53514c9ca6a41525c9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGSetElementBridge.java","type":"file","name":"SVGSetElementBridge.java","base_name":"SVGSetElementBridge","extension":".java","size":2337,"date":"2019-10-25","sha1":"7ec83000885223bcbd8d0be514dcf43b399eef2c","md5":"a619043f7912239d94029b537f2ee767","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGShapeElementBridge.java","type":"file","name":"SVGShapeElementBridge.java","base_name":"SVGShapeElementBridge","extension":".java","size":7368,"date":"2019-10-25","sha1":"f52a0f575ce27b944a9c4418879a8704cbfffd66","md5":"c8ae77925850df2b99ef8bd605984f84","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGSVGElementBridge.java","type":"file","name":"SVGSVGElementBridge.java","base_name":"SVGSVGElementBridge","extension":".java","size":34663,"date":"2019-10-25","sha1":"3761dde3e8d477f2874e289da3660ce32043f130","md5":"0ae244cfb679f2430836148e6d7f8b5e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":56,"end_line":56}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGSwitchElementBridge.java","type":"file","name":"SVGSwitchElementBridge.java","base_name":"SVGSwitchElementBridge","extension":".java","size":5621,"date":"2019-10-25","sha1":"30978ae05c85f701f6629871e2e6b36f503a0de7","md5":"2c5f60812a94166b81f44c3ae0a02ec2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGTextElementBridge.java","type":"file","name":"SVGTextElementBridge.java","base_name":"SVGTextElementBridge","extension":".java","size":113843,"date":"2019-10-25","sha1":"20d6b6662e60ce9e741b6ec83b57f9adbf161995","md5":"873313fac5935e66eb62eea3e3002032","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":88,"end_line":88},{"email":"bill.haneman@ireland.sun.com","start_line":89,"end_line":89}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGTextPathElementBridge.java","type":"file","name":"SVGTextPathElementBridge.java","base_name":"SVGTextPathElementBridge","extension":".java","size":5783,"date":"2019-10-25","sha1":"862dd04a92c612462faddce710dcd878afa2e890","md5":"a3a78d0e6e09dda9190d9f6a613a0910","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGTitleElementBridge.java","type":"file","name":"SVGTitleElementBridge.java","base_name":"SVGTitleElementBridge","extension":".java","size":1545,"date":"2019-10-25","sha1":"c3e4e20969825047e2f91b741870fea99fabdd94","md5":"8c95a3434438d4b387bf2ffb70fe0dd1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":24,"end_line":24},{"email":"tkormann@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGUseElementBridge.java","type":"file","name":"SVGUseElementBridge.java","base_name":"SVGUseElementBridge","extension":".java","size":17626,"date":"2019-10-25","sha1":"0d853a6a91ea66b49e78cf4e21726a525b8adfb1","md5":"437006017e8c8b942edea25b65131a7c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":50,"end_line":50}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGUtilities.java","type":"file","name":"SVGUtilities.java","base_name":"SVGUtilities","extension":".java","size":50186,"date":"2019-10-25","sha1":"8e6696815d899b6118e17547277d69423e0b4662","md5":"6ea259d969b7336ba650e28f9c07a821","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":50,"end_line":50},{"email":"stephane@hillion.org","start_line":51,"end_line":51}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/SVGVKernElementBridge.java","type":"file","name":"SVGVKernElementBridge.java","base_name":"SVGVKernElementBridge","extension":".java","size":1346,"date":"2019-10-25","sha1":"e1838adfde9d3d01da46f3e41c82c6464fce3fc4","md5":"851b3089ded2b6b7a4a0d54ed72376c1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"dean.jackson@cmis.csiro.au","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/TextHit.java","type":"file","name":"TextHit.java","base_name":"TextHit","extension":".java","size":2225,"date":"2019-10-25","sha1":"63e351d39b206ac9d92ec52fc310aa2e434bbf1c","md5":"153dc398e2295cb7623ca1b4d5538c11","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/TextLayoutFactory.java","type":"file","name":"TextLayoutFactory.java","base_name":"TextLayoutFactory","extension":".java","size":1980,"date":"2019-10-25","sha1":"8ad16699d212876d445c783c845f5c72f47a1f0b","md5":"d5f35541510e7bc5de6d8b25f1098dc2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/TextNode.java","type":"file","name":"TextNode.java","base_name":"TextNode","extension":".java","size":15796,"date":"2019-10-25","sha1":"2e1940fc91e28e4df1b530c71d9b0aa4e72eb4c5","md5":"e665f942789c2ecc3ca27fdc8d69d8ac","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/TextPainter.java","type":"file","name":"TextPainter.java","base_name":"TextPainter","extension":".java","size":4032,"date":"2019-10-25","sha1":"e879e6a68ab443c38b17474200670a655aec6ab0","md5":"8a76904a334f8d444312e28a343a15b4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/TextSpanLayout.java","type":"file","name":"TextSpanLayout.java","base_name":"TextSpanLayout","extension":".java","size":7711,"date":"2019-10-25","sha1":"cdcbb48c90015ecc607eca5ffa6122355224ab54","md5":"2c771a4de2ed819286b7a566ee91c949","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/TextUtilities.java","type":"file","name":"TextUtilities.java","base_name":"TextUtilities","extension":".java","size":11601,"date":"2019-10-25","sha1":"a07a1dde8f0b8ca621be456431d9fbab630d619d","md5":"30fe70e2b6762cb8632a163913309112","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":35,"end_line":35},{"email":"bill.haneman@ireland.sun.com","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/UnitProcessor.java","type":"file","name":"UnitProcessor.java","base_name":"UnitProcessor","extension":".java","size":15021,"date":"2019-10-25","sha1":"c22e517776a929e59746183cb29ad826b6b7333c","md5":"329f45509b19ad79edbaf1e6e4f107a5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29},{"email":"tkormann@apache.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/UpdateManager.java","type":"file","name":"UpdateManager.java","base_name":"UpdateManager","extension":".java","size":29874,"date":"2019-10-25","sha1":"3cab6c8cf8484047e4797a91a71d8f449106f1a6","md5":"7424a1e572952b92eb7b09025a64c24d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":52,"end_line":52}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/UpdateManagerAdapter.java","type":"file","name":"UpdateManagerAdapter.java","base_name":"UpdateManagerAdapter","extension":".java","size":1978,"date":"2019-10-25","sha1":"6548bc0fe713bf828e6cd3cdbe6982d21041f241","md5":"c983718efed21fffa0fed4d5eea67daa","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/UpdateManagerEvent.java","type":"file","name":"UpdateManagerEvent.java","base_name":"UpdateManagerEvent","extension":".java","size":3191,"date":"2019-10-25","sha1":"104b1e209afa3c32e8cbce978309f46957383da4","md5":"c205aee5d5d80138810c8235ecd3b3e8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/UpdateManagerListener.java","type":"file","name":"UpdateManagerListener.java","base_name":"UpdateManagerListener","extension":".java","size":1860,"date":"2019-10-25","sha1":"cf3258b737c86b0b6b91d85cce84c138076db7db","md5":"099566ac92d1a47ececc6e2b93b297f0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/URIResolver.java","type":"file","name":"URIResolver.java","base_name":"URIResolver","extension":".java","size":5263,"date":"2019-10-25","sha1":"e6e4b9014892d2d991ff86481046248c94c8f4fc","md5":"3f01a958b7b98b676e31c7665c63d177","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/UserAgent.java","type":"file","name":"UserAgent.java","base_name":"UserAgent","extension":".java","size":9261,"date":"2019-10-25","sha1":"86fff3fc4da17d02035bcf09e7460d7311360789","md5":"209c6e9171071d853a862e1fdcd9809b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":37,"end_line":37},{"email":"stephane@hillion.org","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/UserAgentAdapter.java","type":"file","name":"UserAgentAdapter.java","base_name":"UserAgentAdapter","extension":".java","size":13253,"date":"2019-10-25","sha1":"69953615d5e765c1f803f18aae9f3dbd20a70557","md5":"92eafe138386cfd6ea22fcfbff43c1a6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/UserAgentViewport.java","type":"file","name":"UserAgentViewport.java","base_name":"UserAgentViewport","extension":".java","size":1704,"date":"2019-10-25","sha1":"4c95519ddb2db480892137bb1154b5a8659ea5d9","md5":"31df22c681cbcb78d4ae13013de933f4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/ViewBox.java","type":"file","name":"ViewBox.java","base_name":"ViewBox","extension":".java","size":27278,"date":"2019-10-25","sha1":"64882cc6122b9ff6052313beb9a95a272e901461","md5":"b751ab48b652939ba7f9394888c83d90","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/Viewport.java","type":"file","name":"Viewport.java","base_name":"Viewport","extension":".java","size":1217,"date":"2019-10-25","sha1":"85ca20ff09255c930a7587263049163d2fe06e5b","md5":"132ffeb5cdd3d3b2561c66c75c51ccc6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/Window.java","type":"file","name":"Window.java","base_name":"Window","extension":".java","size":6227,"date":"2019-10-25","sha1":"2727cd27a98691ea637222d95fb878f18aa3126c","md5":"f8884942253b7531d4dbd8ab8c51a9e6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/WindowWrapper.java","type":"file","name":"WindowWrapper.java","base_name":"WindowWrapper","extension":".java","size":19955,"date":"2019-10-25","sha1":"720e2bcbccce218075f6c574ce32389c227d6352","md5":"b8c52345bc6c6e58549355cf42a7074d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":42,"end_line":42},{"email":"stephane@hillion.org","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12","type":"directory","name":"svg12","base_name":"svg12","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":23,"dirs_count":0,"size_count":307931,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/AbstractContentSelector.java","type":"file","name":"AbstractContentSelector.java","base_name":"AbstractContentSelector","extension":".java","size":5702,"date":"2019-10-25","sha1":"290d9913ce1af6e90366fcb7247dbfc78cc08480","md5":"6e6037e98bc2ccdf73352fb798b72b32","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/BindableElementBridge.java","type":"file","name":"BindableElementBridge.java","base_name":"BindableElementBridge","extension":".java","size":8679,"date":"2019-10-25","sha1":"8db8ef632e7bad84139cb7e7fec40326291b5fb7","md5":"f120477f76474cce595f6f959fb6b464","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/BindingListener.java","type":"file","name":"BindingListener.java","base_name":"BindingListener","extension":".java","size":1351,"date":"2019-10-25","sha1":"bd46f2a6fa6c8223b1d5aceb94d36cf44cf33bd0","md5":"96956eaa9c9473566a961560bd06d418","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/ContentManager.java","type":"file","name":"ContentManager.java","base_name":"ContentManager","extension":".java","size":19147,"date":"2019-10-25","sha1":"5050cdf1e9c005e6030e9bc9e66bf816e9260258","md5":"68168d0cb4b7d23ecb4ad4fd824357e1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/batik/ext","start_line":434,"end_line":434}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/ContentSelectionChangedEvent.java","type":"file","name":"ContentSelectionChangedEvent.java","base_name":"ContentSelectionChangedEvent","extension":".java","size":1675,"date":"2019-10-25","sha1":"99ef8d31b84aa6f6266f703de7f5d613a98ff168","md5":"5798d2e0e0c3ad7acd3c1ba66764f544","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/ContentSelectionChangedListener.java","type":"file","name":"ContentSelectionChangedListener.java","base_name":"ContentSelectionChangedListener","extension":".java","size":1444,"date":"2019-10-25","sha1":"67ae9f8f7ee3780dd6c14a08cd4b77f04f8af1d0","md5":"2e2907dad1a84ed43ae9cadc99dca540","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/DefaultContentSelector.java","type":"file","name":"DefaultContentSelector.java","base_name":"DefaultContentSelector","extension":".java","size":4040,"date":"2019-10-25","sha1":"959dd96a9964245f19e3fe9cf7143c6cc05ece31","md5":"8a31e6dcef5f34d95ce0f5ff41d40fb4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/DefaultXBLManager.java","type":"file","name":"DefaultXBLManager.java","base_name":"DefaultXBLManager","extension":".java","size":70297,"date":"2019-10-25","sha1":"94a95712b05ef093849f084dc461aa71988def00","md5":"49438932c72288d38618382600bff57b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/SVG12BridgeContext.java","type":"file","name":"SVG12BridgeContext.java","base_name":"SVG12BridgeContext","extension":".java","size":20220,"date":"2019-10-25","sha1":"249ec747d0b562f398eb1d7348967384fa5a448e","md5":"c71d6de750fc46c8296b4bd8d491a3b5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/SVG12BridgeEventSupport.java","type":"file","name":"SVG12BridgeEventSupport.java","base_name":"SVG12BridgeEventSupport","extension":".java","size":40734,"date":"2019-10-25","sha1":"ca7c1f1678723a414e62ba7bc366e7940335a66f","md5":"20e11dcb7813d70a161b0156583f04af","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/SVG12BridgeExtension.java","type":"file","name":"SVG12BridgeExtension.java","base_name":"SVG12BridgeExtension","extension":".java","size":5089,"date":"2019-10-25","sha1":"2d035ff61474e61c96302839ddc0bc1379a06fea","md5":"6cff192cbf18c52683d970491004147c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":35,"end_line":35},{"email":"batik-dev@xmlgraphics.apache.org","start_line":70,"end_line":70}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/batik","start_line":78,"end_line":78}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/SVG12BridgeUpdateHandler.java","type":"file","name":"SVG12BridgeUpdateHandler.java","base_name":"SVG12BridgeUpdateHandler","extension":".java","size":1655,"date":"2019-10-25","sha1":"c182973a38db092f4e00725da2243f40dc998cbd","md5":"27f3c3b062770bcbbf7c5bb0988f732c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/SVG12FocusManager.java","type":"file","name":"SVG12FocusManager.java","base_name":"SVG12FocusManager","extension":".java","size":7522,"date":"2019-10-25","sha1":"9a59f0072dba51df6b9aedd3e159e13b050b1a20","md5":"7fa731881b37139e04b627b8182a1937","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/SVG12ScriptingEnvironment.java","type":"file","name":"SVG12ScriptingEnvironment.java","base_name":"SVG12ScriptingEnvironment","extension":".java","size":12402,"date":"2019-10-25","sha1":"db0cd0c445fbae18b52790b47cc5b2ad139b98f9","md5":"45b9b09f624bc1fb92004a43c04a3f78","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/SVG12TextElementBridge.java","type":"file","name":"SVG12TextElementBridge.java","base_name":"SVG12TextElementBridge","extension":".java","size":6976,"date":"2019-10-25","sha1":"abf99aeda9721fe404073be5d7dd9ca1713b7ee8","md5":"9be21b846a09cce7042cd29e05c523ac","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/SVG12URIResolver.java","type":"file","name":"SVG12URIResolver.java","base_name":"SVG12URIResolver","extension":".java","size":3073,"date":"2019-10-25","sha1":"f8e169c1dde60d1ec893d9e5df266d88992ceb3a","md5":"57c0ffcf6cb444a82e81af0ca29bf3a9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/SVGFlowRootElementBridge.java","type":"file","name":"SVGFlowRootElementBridge.java","base_name":"SVGFlowRootElementBridge","extension":".java","size":36701,"date":"2019-10-25","sha1":"016f555616499d31c97978195f76dd8dbd5e20e0","md5":"2a84a346e6d40e1aa9ce5faf2987af66","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":83,"end_line":83}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/SVGMultiImageElementBridge.java","type":"file","name":"SVGMultiImageElementBridge.java","base_name":"SVGMultiImageElementBridge","extension":".java","size":15508,"date":"2019-10-25","sha1":"0fa557056a76555225a13144931d5e9203c13364","md5":"b70b1dbaca67f95e90959b25f9620922","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":73,"end_line":73}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/SVGSolidColorElementBridge.java","type":"file","name":"SVGSolidColorElementBridge.java","base_name":"SVGSolidColorElementBridge","extension":".java","size":6915,"date":"2019-10-25","sha1":"a78853864d293d4745e1cffab7c663dd987747b6","md5":"257c97490edf0007740308bbe64ad402","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":49,"end_line":49}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/XBLContentElementBridge.java","type":"file","name":"XBLContentElementBridge.java","base_name":"XBLContentElementBridge","extension":".java","size":6932,"date":"2019-10-25","sha1":"e10f82bfde35b7e396263ac8737f823d9bc8d40d","md5":"c2a90c00acdb929c8b5d0fd0d6d74ce5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/XBLShadowTreeElementBridge.java","type":"file","name":"XBLShadowTreeElementBridge.java","base_name":"XBLShadowTreeElementBridge","extension":".java","size":5763,"date":"2019-10-25","sha1":"44402ee41a3e66e48c5ce850a65e931f8d5b2cdf","md5":"930fcfae406fc25b37e7b4f4debcb651","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/XPathPatternContentSelector.java","type":"file","name":"XPathPatternContentSelector.java","base_name":"XPathPatternContentSelector","extension":".java","size":7718,"date":"2019-10-25","sha1":"553a3a433cccef3d917524bfbac9a620f16b2f36","md5":"c6df36a458cbfb73ac0cb2b8b8d0c1b0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/java/org/apache/batik/bridge/svg12/XPathSubsetContentSelector.java","type":"file","name":"XPathSubsetContentSelector.java","base_name":"XPathSubsetContentSelector","extension":".java","size":18388,"date":"2019-10-25","sha1":"ec5d1acaf007fd2a37e30948ce4173d7b6150118","md5":"fd4fd183fdffec65f90984fc3acaccc9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":5,"size_count":7138,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":4,"size_count":7138,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":3,"size_count":7138,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":2,"size_count":7138,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/resources/org/apache/batik/bridge","type":"directory","name":"bridge","base_name":"bridge","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":1,"size_count":7138,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/resources/org/apache/batik/bridge/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":7138,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/resources/org/apache/batik/bridge/resources/help.gif","type":"file","name":"help.gif","base_name":"help","extension":".gif","size":947,"date":"2019-10-25","sha1":"466c33358c88984b4878ae5c3d54a52744be2bc5","md5":"1adef49ffd3be6613f0fc85b6b4cbcfd","mime_type":"image/gif","file_type":"GIF image data, version 89a, 22 x 22","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/resources/org/apache/batik/bridge/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":5261,"date":"2019-10-25","sha1":"862e90cf23bc2e98aa3506b1c1a64ab7bf8e4cfa","md5":"68392e0fb13d999a7d9715ca403ff3a0","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/main/resources/org/apache/batik/bridge/resources/move.gif","type":"file","name":"move.gif","base_name":"move","extension":".gif","size":930,"date":"2019-10-25","sha1":"5a2b47da3ab84fe1f17777408718a9de99dc49dd","md5":"9f9c278dad5be8315cc3440311e2f9c8","mime_type":"image/gif","file_type":"GIF image data, version 89a, 24 x 24","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-bridge/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec","type":"directory","name":"batik-codec","base_name":"batik-codec","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":39,"dirs_count":26,"size_count":383014,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2454,"date":"2019-10-25","sha1":"d8bca9ab3963db9334f859afacf5f7d2767107ae","md5":"f283394036eb7418c5061890043e2858","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-codec","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-codec\nBatik image codecs","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-awt-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-bridge","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-transcoder","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-codec@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-codec@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-codec/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-codec/1.12/batik-codec-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-codec/1.12/batik-codec-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":25,"size_count":380560,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":21,"size_count":380560,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":10,"size_count":377593,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":9,"size_count":377593,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":8,"size_count":377593,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":7,"size_count":377593,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext","type":"directory","name":"ext","base_name":"ext","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":6,"size_count":377593,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt","type":"directory","name":"awt","base_name":"awt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":5,"size_count":377593,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image","type":"directory","name":"image","base_name":"image","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":4,"size_count":377593,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec","type":"directory","name":"codec","base_name":"codec","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":3,"size_count":377593,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":245,"date":"2019-10-25","sha1":"b414b0418b9758f4c37b3fc1ef1b1d9f3bcf0024","md5":"e3ba4f22efb95867fe66efff22bf6b9c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/imageio","type":"directory","name":"imageio","base_name":"imageio","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":11,"dirs_count":0,"size_count":38254,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/imageio/AbstractImageIORegistryEntry.java","type":"file","name":"AbstractImageIORegistryEntry.java","base_name":"AbstractImageIORegistryEntry","extension":".java","size":7278,"date":"2019-10-25","sha1":"b0e08df7827c19fcb6b8b4d8aed67b074f5e7c1d","md5":"549e4a6a00c399ec6458158d3aeab104","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/imageio/ImageIODebugUtil.java","type":"file","name":"ImageIODebugUtil.java","base_name":"ImageIODebugUtil","extension":".java","size":1970,"date":"2019-10-25","sha1":"923c293777b4e3b7b53a60b3b28e36a7c2fc541f","md5":"64a2906aafe20f0ed349d01ee32e3516","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/imageio/ImageIOImageWriter.java","type":"file","name":"ImageIOImageWriter.java","base_name":"ImageIOImageWriter","extension":".java","size":7890,"date":"2019-10-25","sha1":"657d6ac398cc9b1991e7711e779ce09caa175488","md5":"38e0c662462943f005619f0888d83ce1","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/imageio/ImageIOJPEGImageWriter.java","type":"file","name":"ImageIOJPEGImageWriter.java","base_name":"ImageIOJPEGImageWriter","extension":".java","size":5702,"date":"2019-10-25","sha1":"22ed2901cb0fea62db36998295938ddc1a01e31a","md5":"74123a653127dcc0e5a58c2099fe2570","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/imageio/ImageIOJPEGRegistryEntry.java","type":"file","name":"ImageIOJPEGRegistryEntry.java","base_name":"ImageIOJPEGRegistryEntry","extension":".java","size":1545,"date":"2019-10-25","sha1":"03d1f0a8fca55d95ce4b4b6b03e340bdb3005933","md5":"63eb32c1bda576449f6a3d8b1777a11a","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/imageio/ImageIOPNGImageWriter.java","type":"file","name":"ImageIOPNGImageWriter.java","base_name":"ImageIOPNGImageWriter","extension":".java","size":1188,"date":"2019-10-25","sha1":"158e6311d1609578a1bdb20efc245f81230df865","md5":"e4ac38788ca8a5149bc9825040dfb92b","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/imageio/ImageIOPNGRegistryEntry.java","type":"file","name":"ImageIOPNGRegistryEntry.java","base_name":"ImageIOPNGRegistryEntry","extension":".java","size":1291,"date":"2019-10-25","sha1":"9fd5d7c2bc7866fe008f5a45a4e313a328699680","md5":"b81c1e2acc85675dc7384fec38bf82a7","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/imageio/ImageIOTIFFImageWriter.java","type":"file","name":"ImageIOTIFFImageWriter.java","base_name":"ImageIOTIFFImageWriter","extension":".java","size":1189,"date":"2019-10-25","sha1":"6e6dcf1a550edeb5c0b832bab67b23fec4e4681a","md5":"6aa8d47ffd8b5c297d0f6a386a4fe44c","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/imageio/ImageIOTIFFRegistryEntry.java","type":"file","name":"ImageIOTIFFRegistryEntry.java","base_name":"ImageIOTIFFRegistryEntry","extension":".java","size":1730,"date":"2019-10-25","sha1":"eb1ea3080d95c35871659894131c4528719e6f28","md5":"1791478d2d81d81cf68facfdf954baac","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/imageio/PNGTranscoderImageIOWriteAdapter.java","type":"file","name":"PNGTranscoderImageIOWriteAdapter.java","base_name":"PNGTranscoderImageIOWriteAdapter","extension":".java","size":4157,"date":"2019-10-25","sha1":"2708e4874e7932a28ba8c2e1c4ebdada764b9042","md5":"8122dcab625525cef3aad84e40eb1d0a","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/imageio/TIFFTranscoderImageIOWriteAdapter.java","type":"file","name":"TIFFTranscoderImageIOWriteAdapter.java","base_name":"TIFFTranscoderImageIOWriteAdapter","extension":".java","size":4314,"date":"2019-10-25","sha1":"e93fb63fc5f279f7f5bed2f75b40c32bd7de73b5","md5":"cb7c9cad45b4b7a6ae92814a9fdd0d16","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/png","type":"directory","name":"png","base_name":"png","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":9,"dirs_count":0,"size_count":233847,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/png/PNGDecodeParam.java","type":"file","name":"PNGDecodeParam.java","base_name":"PNGDecodeParam","extension":".java","size":13034,"date":"2019-10-25","sha1":"4c9a5c349144116857116ec733d35e334b0b77c2","md5":"6935c2d31045e1ff14050cee421c0019","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/png/PNGEncodeParam.java","type":"file","name":"PNGEncodeParam.java","base_name":"PNGEncodeParam","extension":".java","size":48010,"date":"2019-10-25","sha1":"de91d500d877e3599684184d6179faa2bc77c059","md5":"334ea5ebda3d7a52e7c6b7fb6f74f58b","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/png/PNGImageDecoder.java","type":"file","name":"PNGImageDecoder.java","base_name":"PNGImageDecoder","extension":".java","size":63164,"date":"2019-10-25","sha1":"0427439bebafe24b6b27c4285d9d8cd7c6167f0d","md5":"f20e1c00e696afc1ed75328cc936fcee","mime_type":"text/x-c++","file_type":"C++ source, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/png/PNGImageEncoder.java","type":"file","name":"PNGImageEncoder.java","base_name":"PNGImageEncoder","extension":".java","size":32436,"date":"2019-10-25","sha1":"db0e0f7b682eebc7326930e019fdefacf4dac67a","md5":"493b47a5a9fdaa7207d14441552d6b2d","mime_type":"text/x-c++","file_type":"C++ source, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/png/PNGImageWriter.java","type":"file","name":"PNGImageWriter.java","base_name":"PNGImageWriter","extension":".java","size":2041,"date":"2019-10-25","sha1":"497f4473520f9ea5e4c6635a2ba49f2995165cd5","md5":"992fef16a8a3b34a132bd28a2c1c7001","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/png/PNGRed.java","type":"file","name":"PNGRed.java","base_name":"PNGRed","extension":".java","size":64466,"date":"2019-10-25","sha1":"cc5235009752cde74b4bf94c3a91d1a034cfdd12","md5":"0be073026716cd4c70289247e8e9edc3","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/png/PNGRegistryEntry.java","type":"file","name":"PNGRegistryEntry.java","base_name":"PNGRegistryEntry","extension":".java","size":5069,"date":"2019-10-25","sha1":"fe5a8fc2636c93e515c2fac3fe04a59a1c1b0e7a","md5":"8b6dc2dc9a3da789ff13d06949dce612","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/png/PNGSuggestedPaletteEntry.java","type":"file","name":"PNGSuggestedPaletteEntry.java","base_name":"PNGSuggestedPaletteEntry","extension":".java","size":1735,"date":"2019-10-25","sha1":"d5bf34adb42c1e4f3e2ed6ed1388b8ae1ff84f4d","md5":"dea161faa1853981737249301fc459f0","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/png/PNGTranscoderInternalCodecWriteAdapter.java","type":"file","name":"PNGTranscoderInternalCodecWriteAdapter.java","base_name":"PNGTranscoderInternalCodecWriteAdapter","extension":".java","size":3892,"date":"2019-10-25","sha1":"69ec6b0c7d11d394bab65c6a154f41349b93bbf6","md5":"59dd64cc8423dd18ef8298113f24ace5","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/util","type":"directory","name":"util","base_name":"util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":14,"dirs_count":0,"size_count":105247,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/util/FileCacheSeekableStream.java","type":"file","name":"FileCacheSeekableStream.java","base_name":"FileCacheSeekableStream","extension":".java","size":9678,"date":"2019-10-25","sha1":"7381c6e5055ba6b0d7d860b21a4ef2993a89d9da","md5":"daecef048ec96bff4d796b910c54e3c2","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/util/ForwardSeekableStream.java","type":"file","name":"ForwardSeekableStream.java","base_name":"ForwardSeekableStream","extension":".java","size":3990,"date":"2019-10-25","sha1":"258ba4c143032675453a6fec2038a1d2f55f6f96","md5":"36f11796f2357b7a3401c4b27f8490e1","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/util/ImageDecodeParam.java","type":"file","name":"ImageDecodeParam.java","base_name":"ImageDecodeParam","extension":".java","size":1264,"date":"2019-10-25","sha1":"7715e275a2cb7b82fe308fc76f1c0ace2c988ca8","md5":"982da146952da02d7c0d151553d0e64a","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/util/ImageDecoder.java","type":"file","name":"ImageDecoder.java","base_name":"ImageDecoder","extension":".java","size":3545,"date":"2019-10-25","sha1":"81ef8f63bccc81272a9d161d6d2a026d4642aa15","md5":"e0dd051fc7cbbc4a3a5de22b877c04cd","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/util/ImageDecoderImpl.java","type":"file","name":"ImageDecoderImpl.java","base_name":"ImageDecoderImpl","extension":".java","size":5782,"date":"2019-10-25","sha1":"a52cd9e871016443409eb1c71252dcbd689bb889","md5":"8195f18b538a213e9754675b7786b87e","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/util/ImageEncodeParam.java","type":"file","name":"ImageEncodeParam.java","base_name":"ImageEncodeParam","extension":".java","size":1286,"date":"2019-10-25","sha1":"3cbb60979f69498508e3c42eb722864b9245854d","md5":"4785dd28535ea9012271dd54defb3349","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/util/ImageEncoder.java","type":"file","name":"ImageEncoder.java","base_name":"ImageEncoder","extension":".java","size":2668,"date":"2019-10-25","sha1":"5e88bd07ffd1f4fd4aed7a16b7fe925c50b909d1","md5":"8977c6aa150abfab7a6fe7d2e25fbcd8","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/util/ImageEncoderImpl.java","type":"file","name":"ImageEncoderImpl.java","base_name":"ImageEncoderImpl","extension":".java","size":3415,"date":"2019-10-25","sha1":"3e7348d0063d01132129080b101fefdcc86b2c49","md5":"1af6bbba3ee43b3552ac61beb8b022fb","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/util/MemoryCacheSeekableStream.java","type":"file","name":"MemoryCacheSeekableStream.java","base_name":"MemoryCacheSeekableStream","extension":".java","size":9462,"date":"2019-10-25","sha1":"8b8b33b01afc9cd75ee82bcc7f3bcd64867711ae","md5":"6a414259522201c393583c85304c0679","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/util/PropertyUtil.java","type":"file","name":"PropertyUtil.java","base_name":"PropertyUtil","extension":".java","size":1524,"date":"2019-10-25","sha1":"18236c829c94868faf499a0a73690a03e26e28a1","md5":"9645053026cb219ebb4017636fc0bef7","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/util/SeekableOutputStream.java","type":"file","name":"SeekableOutputStream.java","base_name":"SeekableOutputStream","extension":".java","size":2588,"date":"2019-10-25","sha1":"e2586e92fbe172dce1150f620b36c9d0517f8cce","md5":"650a361b012868df94321958bab3dff9","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/util/SeekableStream.java","type":"file","name":"SeekableStream.java","base_name":"SeekableStream","extension":".java","size":38965,"date":"2019-10-25","sha1":"b47f27cd18b7b96c63f016ae597470979077a4d6","md5":"d1815a6bf33b91c4134113d27e9ba176","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/util/SimpleRenderedImage.java","type":"file","name":"SimpleRenderedImage.java","base_name":"SimpleRenderedImage","extension":".java","size":18886,"date":"2019-10-25","sha1":"2a2a0c9402777da46a74edce83cb49b103eeebe7","md5":"81e301d4c02b5c30f29298804b441695","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/java/org/apache/batik/ext/awt/image/codec/util/SingleTileRenderedImage.java","type":"file","name":"SingleTileRenderedImage.java","base_name":"SingleTileRenderedImage","extension":".java","size":2194,"date":"2019-10-25","sha1":"284179645c5b48574b1e32de5ffc12940191954b","md5":"d40673b1313f9e8c4ad36f6d1620c41b","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":9,"size_count":2967,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/resources/META-INF","type":"directory","name":"META-INF","base_name":"META-INF","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":1,"size_count":2967,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/resources/META-INF/services","type":"directory","name":"services","base_name":"services","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2967,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/resources/META-INF/services/org.apache.batik.ext.awt.image.spi.ImageWriter","type":"file","name":"org.apache.batik.ext.awt.image.spi.ImageWriter","base_name":"org.apache.batik.ext.awt.image.spi","extension":".ImageWriter","size":1588,"date":"2019-10-25","sha1":"4e81be11f4490f38d94ac8ca346e38775a887eeb","md5":"07203a7eb5a8d8d1d29149deb283637f","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/resources/META-INF/services/org.apache.batik.ext.awt.image.spi.RegistryEntry","type":"file","name":"org.apache.batik.ext.awt.image.spi.RegistryEntry","base_name":"org.apache.batik.ext.awt.image.spi","extension":".RegistryEntry","size":1379,"date":"2019-10-25","sha1":"276fa5539facf9d36c5b250fa6ff1fc656492f37","md5":"b89476520543c527bd6dc7f814d8b040","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":6,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":5,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":4,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/resources/org/apache/batik/ext","type":"directory","name":"ext","base_name":"ext","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":3,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/resources/org/apache/batik/ext/awt","type":"directory","name":"awt","base_name":"awt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/resources/org/apache/batik/ext/awt/image","type":"directory","name":"image","base_name":"image","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/resources/org/apache/batik/ext/awt/image/codec","type":"directory","name":"codec","base_name":"codec","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/main/resources/org/apache/batik/ext/awt/image/codec/properties","type":"file","name":"properties","base_name":"properties","extension":"","size":0,"date":"2019-10-25","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-codec/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-constants","type":"directory","name":"batik-constants","base_name":"batik-constants","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":8,"size_count":5017,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-constants/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":1755,"date":"2019-10-25","sha1":"a8b9adebec7f09f7f81f7d3ee11add37aa68e57c","md5":"d2d1ee524315140e6fdd264cc2578e5f","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-constants","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-constants\nBatik constants library","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-constants","dependencies":[],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-constants@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-constants@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-constants/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-constants/1.12/batik-constants-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-constants/1.12/batik-constants-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-constants/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":7,"size_count":3262,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-constants/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":6,"size_count":3262,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-constants/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":5,"size_count":3262,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-constants/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":4,"size_count":3262,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-constants/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":3,"size_count":3262,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-constants/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":2,"size_count":3262,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-constants/src/main/java/org/apache/batik/util","type":"directory","name":"util","base_name":"util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-constants/src/main/java/org/apache/batik/constants","type":"directory","name":"constants","base_name":"constants","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":3262,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-constants/src/main/java/org/apache/batik/constants/XMLConstants.java","type":"file","name":"XMLConstants.java","base_name":"XMLConstants","extension":".java","size":3262,"date":"2019-10-25","sha1":"ff13ad687f23e8aa839b2604dea550472e405ff2","md5":"21c74258cb2609c94ee4b834958c0f4c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@eng.sun.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://www.w3.org/2001/xml-events","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css","type":"directory","name":"batik-css","base_name":"batik-css","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":184,"dirs_count":29,"size_count":1094603,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2289,"date":"2019-10-25","sha1":"629afc0aab22e69f7ce28848ff6ed79f39f0078a","md5":"4ca384c71314017d3ffca683265a524f","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-css","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-css\nBatik CSS engine","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/xmlgraphics-commons","requirement":"${xmlgraphics.commons.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/xml-apis/xml-apis-ext","requirement":"${xmlapisext.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-css@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-css@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-css/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-css/1.12/batik-css-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-css/1.12/batik-css-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":183,"dirs_count":28,"size_count":1092314,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":183,"dirs_count":24,"size_count":1092314,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":180,"dirs_count":12,"size_count":1086021,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":180,"dirs_count":11,"size_count":1086021,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":180,"dirs_count":10,"size_count":1086021,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":180,"dirs_count":9,"size_count":1086021,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css","type":"directory","name":"css","base_name":"css","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":180,"dirs_count":8,"size_count":1086021,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":243,"date":"2019-10-25","sha1":"b1dd2d6b33d376ab5fca52db557dd84f2947bc9c","md5":"34a843f2cd96ffb3a96c572c99c62f0c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/dom","type":"directory","name":"dom","base_name":"dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":10,"dirs_count":0,"size_count":154332,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/dom/CSSOMComputedStyle.java","type":"file","name":"CSSOMComputedStyle.java","base_name":"CSSOMComputedStyle","extension":".java","size":6337,"date":"2019-10-25","sha1":"077b995008d66487687f703c6bc685929798480f","md5":"ca47232646c99bbb38583648d842d83e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/dom/CSSOMStoredStyleDeclaration.java","type":"file","name":"CSSOMStoredStyleDeclaration.java","base_name":"CSSOMStoredStyleDeclaration","extension":".java","size":3550,"date":"2019-10-25","sha1":"94e7f1fbe5184ea550487f2369e655de9cb7d484","md5":"182e5f66aaeee7844e1ebad924358e2b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/dom/CSSOMStyleDeclaration.java","type":"file","name":"CSSOMStyleDeclaration.java","base_name":"CSSOMStyleDeclaration","extension":".java","size":8858,"date":"2019-10-25","sha1":"970f6795e85864c4789d87e455d4e03998b83528","md5":"ced2826c4caa59264ba72e8408af890a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/dom/CSSOMSVGColor.java","type":"file","name":"CSSOMSVGColor.java","base_name":"CSSOMSVGColor","extension":".java","size":42300,"date":"2019-10-25","sha1":"e02d1f2c79a8c7e626fa6da488f268def1d0e2d2","md5":"e0a033b638db946a4585539aa0dcf208","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/dom/CSSOMSVGComputedStyle.java","type":"file","name":"CSSOMSVGComputedStyle.java","base_name":"CSSOMSVGComputedStyle","extension":".java","size":4104,"date":"2019-10-25","sha1":"aa40d1a16f12e6b0db390b0c2d3c792782629934","md5":"d3d4f78dfaa793c5e0d49dc782781f2c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/dom/CSSOMSVGPaint.java","type":"file","name":"CSSOMSVGPaint.java","base_name":"CSSOMSVGPaint","extension":".java","size":32480,"date":"2019-10-25","sha1":"1664ea67cece53846cd08a0fc9c1f0bf973354d4","md5":"61216af30993f986020850260c6c3728","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/dom/CSSOMSVGStyleDeclaration.java","type":"file","name":"CSSOMSVGStyleDeclaration.java","base_name":"CSSOMSVGStyleDeclaration","extension":".java","size":6035,"date":"2019-10-25","sha1":"94dcc5415e8665bde6adc87fa9c55c9564c06335","md5":"fcda0b39e1f51622e6542eb4e93a58f6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/dom/CSSOMSVGViewCSS.java","type":"file","name":"CSSOMSVGViewCSS.java","base_name":"CSSOMSVGViewCSS","extension":".java","size":1973,"date":"2019-10-25","sha1":"81f596f911cba4b6122162c81e0a526d13b05e16","md5":"daa78e80bd04b7acb3adc1ee682745dc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/dom/CSSOMValue.java","type":"file","name":"CSSOMValue.java","base_name":"CSSOMValue","extension":".java","size":46371,"date":"2019-10-25","sha1":"e8776ec07df192b23d2fae801833bbbb54cec6ee","md5":"c34febf3f5d2d478ba88fed586096f7f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/dom/CSSOMViewCSS.java","type":"file","name":"CSSOMViewCSS.java","base_name":"CSSOMViewCSS","extension":".java","size":2324,"date":"2019-10-25","sha1":"55e6a8756f832eeea1526294f36cfd985f0ef617","md5":"660f99a883e093ae1abb20886888fe32","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine","type":"directory","name":"engine","base_name":"engine","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":135,"dirs_count":5,"size_count":724521,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/CSSContext.java","type":"file","name":"CSSContext.java","base_name":"CSSContext","extension":".java","size":3289,"date":"2019-10-25","sha1":"c21e8bdbe2287f6112a2c489df4e5dd573f1b5b3","md5":"b28d50430a6676ad7e5075fecdd25035","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/CSSEngine.java","type":"file","name":"CSSEngine.java","base_name":"CSSEngine","extension":".java","size":90790,"date":"2019-10-25","sha1":"ac2d129236c5143801e595d7bb6cbaf138254c6c","md5":"af090c897e5aaa2b4edaad0aedce7992","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":62,"end_line":62}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/CSSEngineEvent.java","type":"file","name":"CSSEngineEvent.java","base_name":"CSSEngineEvent","extension":".java","size":1772,"date":"2019-10-25","sha1":"3842c235ec910da49a64ba34b7fd876142805791","md5":"5065b6135e570b1f0ab01088873bbfde","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/CSSEngineListener.java","type":"file","name":"CSSEngineListener.java","base_name":"CSSEngineListener","extension":".java","size":1236,"date":"2019-10-25","sha1":"d8c27411bcb69ddd4347150f883c67958acfe703","md5":"7fca1b431d948ec0fb7a7c135766beb7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/CSSEngineUserAgent.java","type":"file","name":"CSSEngineUserAgent.java","base_name":"CSSEngineUserAgent","extension":".java","size":1309,"date":"2019-10-25","sha1":"52543db7e2bc99462ccd13249791e353885c55c1","md5":"213cf21d3ed65d9caef5b4493baf0a11","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/CSSNavigableDocument.java","type":"file","name":"CSSNavigableDocument.java","base_name":"CSSNavigableDocument","extension":".java","size":1459,"date":"2019-10-25","sha1":"f0c22784daab497168d1b3eea579e70ee1eb6c3d","md5":"e3a47e3db9d56483c1fcefe1ddf0bfe1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/CSSNavigableDocumentListener.java","type":"file","name":"CSSNavigableDocumentListener.java","base_name":"CSSNavigableDocumentListener","extension":".java","size":2619,"date":"2019-10-25","sha1":"209c7e2a8312dc7b27edf9f7d3de6f7ea3adf75e","md5":"71e412a0f48560a3426f71130682fda2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/CSSNavigableNode.java","type":"file","name":"CSSNavigableNode.java","base_name":"CSSNavigableNode","extension":".java","size":1841,"date":"2019-10-25","sha1":"fe8d070cee985ff11b0a9d0eef19a4a7cda942e8","md5":"19cd94fd8bbb36b8a91d26d218c29382","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/CSSStylableElement.java","type":"file","name":"CSSStylableElement.java","base_name":"CSSStylableElement","extension":".java","size":2127,"date":"2019-10-25","sha1":"1adf879b15248006ecdc3ced94daf2a48da1c4e2","md5":"65e45d80914c7b7386083099bf310f36","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/CSSStyleSheetNode.java","type":"file","name":"CSSStyleSheetNode.java","base_name":"CSSStyleSheetNode","extension":".java","size":1297,"date":"2019-10-25","sha1":"2255e4ba0b17fadf975ec7b1fec15cf9dbd2c761","md5":"8cb906182515b1fb78552c2a4a056f27","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/FontFaceRule.java","type":"file","name":"FontFaceRule.java","base_name":"FontFaceRule","extension":".java","size":2116,"date":"2019-10-25","sha1":"3c2c868c478b9e010d441f3c24701eb1c7dc2f95","md5":"d39659a8e6f03dd91695454b206d1d9a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/ImportRule.java","type":"file","name":"ImportRule.java","base_name":"ImportRule","extension":".java","size":2185,"date":"2019-10-25","sha1":"c54b2a99606e967e3cafdd1cb7ef76da978d911b","md5":"db5bed12c723ed9150948414a809004e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/MediaRule.java","type":"file","name":"MediaRule.java","base_name":"MediaRule","extension":".java","size":2248,"date":"2019-10-25","sha1":"58511946ec03250819e28995db79916ee1c2f7b6","md5":"a16ab2671c15bfc6a601d70e03331a55","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2331,"date":"2019-10-25","sha1":"e7f9c844f6f4f7cee69be53bb562c0a8552a6709","md5":"4d7c595263f120cbc3c85775c672dcaa","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/Rule.java","type":"file","name":"Rule.java","base_name":"Rule","extension":".java","size":1252,"date":"2019-10-25","sha1":"6c785898cba1bea0f94d22049ce0bd8ae05b7698","md5":"0024966ddb6265bef9817c42bd20567e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/StringIntMap.java","type":"file","name":"StringIntMap.java","base_name":"StringIntMap","extension":".java","size":3947,"date":"2019-10-25","sha1":"719c46f74356fcf37fe47078fa752df9693237ef","md5":"8c96eb1bbd4f2ab69f798d07b4e8b888","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/StyleDeclaration.java","type":"file","name":"StyleDeclaration.java","base_name":"StyleDeclaration","extension":".java","size":4576,"date":"2019-10-25","sha1":"f173b12c8ae8d5c32d922667fc0d30f4d2b2e5c2","md5":"d46cee330989cd09e7695535238d3072","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/StyleDeclarationProvider.java","type":"file","name":"StyleDeclarationProvider.java","base_name":"StyleDeclarationProvider","extension":".java","size":1490,"date":"2019-10-25","sha1":"ef4ec8404a05f92f3b9342c1525a100e281803f7","md5":"0a73883e8585d7c83bbdcf84be61a36a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/StyleMap.java","type":"file","name":"StyleMap.java","base_name":"StyleMap","extension":".java","size":9458,"date":"2019-10-25","sha1":"c59e0dc5bb235a41272af51c047cd85cd97005ac","md5":"1ab3050a7b8fb3fddc2e1e06a5bd1ca0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/StyleRule.java","type":"file","name":"StyleRule.java","base_name":"StyleRule","extension":".java","size":2663,"date":"2019-10-25","sha1":"91b5818bf2ed6fabded2f76786433cbdae845aef","md5":"9ce85350d3659696aa63bbd4ccf0949a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/StyleSheet.java","type":"file","name":"StyleSheet.java","base_name":"StyleSheet","extension":".java","size":3614,"date":"2019-10-25","sha1":"2aaad78d1e730d6f3b0c87a27b8a5812cde508dd","md5":"d7c2b9e4077c2ecec3fa387159d4e99c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/SVG12CSSEngine.java","type":"file","name":"SVG12CSSEngine.java","base_name":"SVG12CSSEngine","extension":".java","size":4792,"date":"2019-10-25","sha1":"d77d2f67df4a4e7f3e1162a6d9c6d08ed399e6bd","md5":"acb5c3eea45311d3bd94a9371b37a529","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/SVGCSSEngine.java","type":"file","name":"SVGCSSEngine.java","base_name":"SVGCSSEngine","extension":".java","size":15864,"date":"2019-10-25","sha1":"1df447e0ad9222d169bcedfa9a96e225ed559a8e","md5":"098e8df80a195f591e84cd62143ed251","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":85,"end_line":85}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/SystemColorSupport.java","type":"file","name":"SystemColorSupport.java","base_name":"SystemColorSupport","extension":".java","size":4854,"date":"2019-10-25","sha1":"6a25cdd62f3ba4834cc656d954a113c93bcf9098","md5":"bd5954250e087e551abd2cfc3d63f1b9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac","type":"directory","name":"sac","base_name":"sac","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":23,"dirs_count":0,"size_count":71008,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/AbstractAttributeCondition.java","type":"file","name":"AbstractAttributeCondition.java","base_name":"AbstractAttributeCondition","extension":".java","size":2437,"date":"2019-10-25","sha1":"7fa7737e6c2f3ce31027185bc4b7118494373767","md5":"080e448c90ea3b518632d8eaaee5bf96","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/AbstractCombinatorCondition.java","type":"file","name":"AbstractCombinatorCondition.java","base_name":"AbstractCombinatorCondition","extension":".java","size":2851,"date":"2019-10-25","sha1":"bf176bb2b242f8528909b53232ca197655ae0053","md5":"70729005889106a8dd5f24b359650325","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/AbstractDescendantSelector.java","type":"file","name":"AbstractDescendantSelector.java","base_name":"AbstractDescendantSelector","extension":".java","size":2873,"date":"2019-10-25","sha1":"10a358d12a1e46c3c962add3e557ac2119e2901b","md5":"fa308f407b2e80264fee6f3a7c3a1c5e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/AbstractElementSelector.java","type":"file","name":"AbstractElementSelector.java","base_name":"AbstractElementSelector","extension":".java","size":2580,"date":"2019-10-25","sha1":"d2542ec73019081a968e94cce0cebf18b97cd49d","md5":"2562a4475abac7c07961a61e6c2e51de","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/AbstractSiblingSelector.java","type":"file","name":"AbstractSiblingSelector.java","base_name":"AbstractSiblingSelector","extension":".java","size":3027,"date":"2019-10-25","sha1":"b982ec974380fb537794430943cca49aaa1c8a0e","md5":"de58af5faafde550bde091229ab71ca8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSAndCondition.java","type":"file","name":"CSSAndCondition.java","base_name":"CSSAndCondition","extension":".java","size":2374,"date":"2019-10-25","sha1":"d278b11d2fc93755ae4fcd46c6190c4374d5df36","md5":"e0d108fe2f681c6b3779e02e3c3d1287","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSAttributeCondition.java","type":"file","name":"CSSAttributeCondition.java","base_name":"CSSAttributeCondition","extension":".java","size":4185,"date":"2019-10-25","sha1":"0222e059f0e40cab56ff52c1c082b118a3fe7fe7","md5":"9a75b82898ebeaf50360a93a48aac69a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSBeginHyphenAttributeCondition.java","type":"file","name":"CSSBeginHyphenAttributeCondition.java","base_name":"CSSBeginHyphenAttributeCondition","extension":".java","size":2211,"date":"2019-10-25","sha1":"2edd517e85de7566b35f7a2f0a18b1bcf94a18e4","md5":"7876c382cb4a11822211322209d00ab8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSChildSelector.java","type":"file","name":"CSSChildSelector.java","base_name":"CSSChildSelector","extension":".java","size":2826,"date":"2019-10-25","sha1":"6db730624784fd5d723bbb91a7e184fa6ef7bcd8","md5":"8cd1507872eddabacfc7a8294dcf3c28","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSClassCondition.java","type":"file","name":"CSSClassCondition.java","base_name":"CSSClassCondition","extension":".java","size":2667,"date":"2019-10-25","sha1":"79eda5ecd5b6d83010bf976e945484f50f2f23c7","md5":"d263d72dca89213834f81f7084eea7d2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSConditionalSelector.java","type":"file","name":"CSSConditionalSelector.java","base_name":"CSSConditionalSelector","extension":".java","size":3777,"date":"2019-10-25","sha1":"3d5165081a53ef2d8448636bcd0dacc012633f77","md5":"add5956ca440a731e551a7e757cffa45","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSConditionFactory.java","type":"file","name":"CSSConditionFactory.java","base_name":"CSSConditionFactory","extension":".java","size":7469,"date":"2019-10-25","sha1":"7e6ebb97f6060d18fbd44967ec62a41a63d7d74f","md5":"929b50b81c322dad0bced13d7d5492e7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSDescendantSelector.java","type":"file","name":"CSSDescendantSelector.java","base_name":"CSSDescendantSelector","extension":".java","size":2657,"date":"2019-10-25","sha1":"aaa2d57fc53555c0ecd5e64b0d5d6d8d7eec5f96","md5":"9a6b619c626b33cf79dd0c85cb721227","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSDirectAdjacentSelector.java","type":"file","name":"CSSDirectAdjacentSelector.java","base_name":"CSSDirectAdjacentSelector","extension":".java","size":2795,"date":"2019-10-25","sha1":"10171b1d8da4223fab82f7be3257792daf0be760","md5":"9bc74fd8d089f3cc9c6f432d3dc5ba15","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSElementSelector.java","type":"file","name":"CSSElementSelector.java","base_name":"CSSElementSelector","extension":".java","size":2494,"date":"2019-10-25","sha1":"d433e01f00664ecda8708511d86a266fb65d2f67","md5":"704e1ac5b6896ed9f09bdc4ca644b972","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSIdCondition.java","type":"file","name":"CSSIdCondition.java","base_name":"CSSIdCondition","extension":".java","size":3123,"date":"2019-10-25","sha1":"6b94397844f8c2b256e7ddc0804dec6ad1c07488","md5":"78cb5e759fd53890bb78e1af235a9b23","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSLangCondition.java","type":"file","name":"CSSLangCondition.java","base_name":"CSSLangCondition","extension":".java","size":3339,"date":"2019-10-25","sha1":"5ddcd72d5b6909b512f2916fdc18f17f19b8fafd","md5":"25b2caed91b16efba763207ed3f03d54","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSOneOfAttributeCondition.java","type":"file","name":"CSSOneOfAttributeCondition.java","base_name":"CSSOneOfAttributeCondition","extension":".java","size":2532,"date":"2019-10-25","sha1":"217805c64fba1acb18b42cea5f40f9c4b7267ab1","md5":"205ba5dca0defbe95dd8d9b7a41cf38a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSPseudoClassCondition.java","type":"file","name":"CSSPseudoClassCondition.java","base_name":"CSSPseudoClassCondition","extension":".java","size":3460,"date":"2019-10-25","sha1":"05baa9d8110d43bc89657c00162b90815ee59d3c","md5":"30f98bb2f3d15fe0b758c191534c1f7f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSPseudoElementSelector.java","type":"file","name":"CSSPseudoElementSelector.java","base_name":"CSSPseudoElementSelector","extension":".java","size":2010,"date":"2019-10-25","sha1":"43f32458d73b95c31a781af4b84c6f81425a8009","md5":"20f0e71529a35d5ac530d5642d6d185b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/CSSSelectorFactory.java","type":"file","name":"CSSSelectorFactory.java","base_name":"CSSSelectorFactory","extension":".java","size":6166,"date":"2019-10-25","sha1":"3d0d4acbf9016e18575534a91cd4e28469a4c136","md5":"c4812da377e0299f54f9331cf2232813","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/ExtendedCondition.java","type":"file","name":"ExtendedCondition.java","base_name":"ExtendedCondition","extension":".java","size":1598,"date":"2019-10-25","sha1":"47d39376364cb9dbbf749092cc925f0a7a3b407e","md5":"716776a86cef9470dc72ffeec8b6407f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/sac/ExtendedSelector.java","type":"file","name":"ExtendedSelector.java","base_name":"ExtendedSelector","extension":".java","size":1557,"date":"2019-10-25","sha1":"08f3fae0553e206a1cf6aeebd8cefd4e07a8c351","md5":"a909faaa513ae775267daac1a602b7eb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value","type":"directory","name":"value","base_name":"value","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":88,"dirs_count":3,"size_count":484384,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/AbstractColorManager.java","type":"file","name":"AbstractColorManager.java","base_name":"AbstractColorManager","extension":".java","size":11382,"date":"2019-10-25","sha1":"76a413efe0b3fc7a7908496e66090525a5e813cd","md5":"a3009104f08b412eb32577e3dc4ebb2a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/AbstractValue.java","type":"file","name":"AbstractValue.java","base_name":"AbstractValue","extension":".java","size":4017,"date":"2019-10-25","sha1":"71230f03a9c203da08448afaec3fec894a96cee5","md5":"7a356f1a142f12bfa256d7b10a9a6ea3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/AbstractValueFactory.java","type":"file","name":"AbstractValueFactory.java","base_name":"AbstractValueFactory","extension":".java","size":3836,"date":"2019-10-25","sha1":"24e2b26c7bdd5503231d40df38a2437b37dc79c8","md5":"1106f84ce07bed45e80e17cdd9f981bb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/AbstractValueManager.java","type":"file","name":"AbstractValueManager.java","base_name":"AbstractValueManager","extension":".java","size":2713,"date":"2019-10-25","sha1":"fb29590937a2487bb8e727b0cd7304411c366290","md5":"751b87cf08f019171ea926d0276a607a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/ComputedValue.java","type":"file","name":"ComputedValue.java","base_name":"ComputedValue","extension":".java","size":4586,"date":"2019-10-25","sha1":"5e5525de107ddc95f9ab6c1ba0a48a4c083e7368","md5":"3ee6706833c5481c74eb6d7d54458bbb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/FloatValue.java","type":"file","name":"FloatValue.java","base_name":"FloatValue","extension":".java","size":2721,"date":"2019-10-25","sha1":"0683a499f05d2e03067aa760e29fa21cc957d07d","md5":"993795adb20a8497495cafa98b05a11d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/IdentifierManager.java","type":"file","name":"IdentifierManager.java","base_name":"IdentifierManager","extension":".java","size":2774,"date":"2019-10-25","sha1":"a73daa3784274a7a83b5f1f907d732d0dd9e4b45","md5":"745844ebe9ee170323df1fb655270613","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/InheritValue.java","type":"file","name":"InheritValue.java","base_name":"InheritValue","extension":".java","size":1780,"date":"2019-10-25","sha1":"3b78d039c3824c18ab151c864628ce0b109d0de2","md5":"94f2e49f5f706d64a4da5038f47cae90","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/LengthManager.java","type":"file","name":"LengthManager.java","base_name":"LengthManager","extension":".java","size":8478,"date":"2019-10-25","sha1":"1f45253e4330a284ca8966860ffff937a02e3e49","md5":"ba7d30a0c5b72846bb773fdb8c7c66ab","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/ListValue.java","type":"file","name":"ListValue.java","base_name":"ListValue","extension":".java","size":3018,"date":"2019-10-25","sha1":"6f7c7c06f1474704076b26a0d49dd5e2bb3f8b1c","md5":"6fd52f1575aafdf8545150d264b1d47d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2349,"date":"2019-10-25","sha1":"45b77562f96f7b92cfb236eef0dbe49df05b05bf","md5":"f7157bf2762d809da06e4e7566fde14d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/RectManager.java","type":"file","name":"RectManager.java","base_name":"RectManager","extension":".java","size":7184,"date":"2019-10-25","sha1":"33cf9ec83c6c697d976aca8bdc5828c093c9e3b5","md5":"46dfbc1666d4b36f287851a4cd5230e4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/RectValue.java","type":"file","name":"RectValue.java","base_name":"RectValue","extension":".java","size":2725,"date":"2019-10-25","sha1":"79d015f43b955c00bdf7759ca44cd95944e5602c","md5":"15e2357f475bbe262f01ca9fa407b48c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/RGBColorValue.java","type":"file","name":"RGBColorValue.java","base_name":"RGBColorValue","extension":".java","size":2475,"date":"2019-10-25","sha1":"ecbd1c3080e9641a4504bc906f2882edd4cc6030","md5":"636508dd2a7f2135cbac2a6a3373ddec","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/ShorthandManager.java","type":"file","name":"ShorthandManager.java","base_name":"ShorthandManager","extension":".java","size":2253,"date":"2019-10-25","sha1":"fbfcf0f3a0a4ec43e6b58f5add0832a968e6b625","md5":"fe331e72e4500362cf82153f45603bd3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/StringMap.java","type":"file","name":"StringMap.java","base_name":"StringMap","extension":".java","size":4634,"date":"2019-10-25","sha1":"8a6bee506b148a9e90cf98c601c155b51e0a9197","md5":"896afb653e4890e24282b96b6d98425e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/StringValue.java","type":"file","name":"StringValue.java","base_name":"StringValue","extension":".java","size":3020,"date":"2019-10-25","sha1":"c57213a7524cb2a457bbed71e66e66ac0f75c13e","md5":"2a95e7b274a9f634cbdee0f23c53427c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/URIValue.java","type":"file","name":"URIValue.java","base_name":"URIValue","extension":".java","size":1475,"date":"2019-10-25","sha1":"1ac29438e4aa2d4272d4c629fbc553978f3e03bb","md5":"ca26218f81de66feb58b8c683d3dfc26","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/Value.java","type":"file","name":"Value.java","base_name":"Value","extension":".java","size":4818,"date":"2019-10-25","sha1":"4397c37b3b8addb22adae79403a59ea9d660fc50","md5":"e264fd12712a80f0c201fecb42e302c4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/ValueConstants.java","type":"file","name":"ValueConstants.java","base_name":"ValueConstants","extension":".java","size":28740,"date":"2019-10-25","sha1":"b8aecf8a3bee254f7100aa25dd27bfc49c1b4734","md5":"b3eb13bf63bab0b849b259dacf8ad05c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/ValueManager.java","type":"file","name":"ValueManager.java","base_name":"ValueManager","extension":".java","size":3608,"date":"2019-10-25","sha1":"488b232e1d014100696c703f0438a1ec80cfc169","md5":"2e1120f0a8b6194753ca0d0fbacc242d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2","type":"directory","name":"css2","base_name":"css2","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":17,"dirs_count":0,"size_count":97000,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/ClipManager.java","type":"file","name":"ClipManager.java","base_name":"ClipManager","extension":".java","size":3664,"date":"2019-10-25","sha1":"197ae8bb40384684ea47cf75857ded2f5acf1819","md5":"54c0bc868d546f175dece5499aaec986","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/CursorManager.java","type":"file","name":"CursorManager.java","base_name":"CursorManager","extension":".java","size":7737,"date":"2019-10-25","sha1":"1c145576bbb2ee1f5be9384811e5b318621f6b8b","md5":"a1ae98767c9c080b301d4a01acff7dbc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/DirectionManager.java","type":"file","name":"DirectionManager.java","base_name":"DirectionManager","extension":".java","size":2971,"date":"2019-10-25","sha1":"d010dd0fb81588db5f8fbe3f7304b5df4bd2e013","md5":"9f21f7388cff4d2127e59db31f4978d2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/DisplayManager.java","type":"file","name":"DisplayManager.java","base_name":"DisplayManager","extension":".java","size":4643,"date":"2019-10-25","sha1":"147cba03ac84decc82490d29ac3fff1c2ccaf60d","md5":"17c736e13aef85e9b198b76b6a579a2c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/FontFamilyManager.java","type":"file","name":"FontFamilyManager.java","base_name":"FontFamilyManager","extension":".java","size":7667,"date":"2019-10-25","sha1":"d5f38f83d35c8b233084578f52e642e2622626bd","md5":"dc4246363a325ac73432abd1bdd1dd17","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/FontShorthandManager.java","type":"file","name":"FontShorthandManager.java","base_name":"FontShorthandManager","extension":".java","size":12580,"date":"2019-10-25","sha1":"f7310ad4bd06f0595fac110519f2832d5b9cce99","md5":"49af0428e716389ac85b1c90ae6a2d10","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":50,"end_line":50}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/FontSizeAdjustManager.java","type":"file","name":"FontSizeAdjustManager.java","base_name":"FontSizeAdjustManager","extension":".java","size":4517,"date":"2019-10-25","sha1":"21d97d2ee97bbcd46296b6e3cbbf0166d0155895","md5":"b64e597d2362b4e4f21039e4b7c842f1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/FontSizeManager.java","type":"file","name":"FontSizeManager.java","base_name":"FontSizeManager","extension":".java","size":9942,"date":"2019-10-25","sha1":"cef010b9480ba5338d81a179bed9393027cc4b89","md5":"02e8c6475ed57e16b53773de861a98e2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/FontStretchManager.java","type":"file","name":"FontStretchManager.java","base_name":"FontStretchManager","extension":".java","size":7596,"date":"2019-10-25","sha1":"f48077aa3af010b09f6fc67be616bfd455eaad03","md5":"309a159ceb946c6ef5cc3091524f3af0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/FontStyleManager.java","type":"file","name":"FontStyleManager.java","base_name":"FontStyleManager","extension":".java","size":3219,"date":"2019-10-25","sha1":"ac5fe20487f3ded40f30f72082a09a5a14148fd9","md5":"fdc0d010077e647079b49f76eda23f75","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/FontVariantManager.java","type":"file","name":"FontVariantManager.java","base_name":"FontVariantManager","extension":".java","size":3041,"date":"2019-10-25","sha1":"187e9299308d89a92c1c4bc9572a389ad216dfda","md5":"12eb0f036dce9c4cf9972a4ae292062e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/FontWeightManager.java","type":"file","name":"FontWeightManager.java","base_name":"FontWeightManager","extension":".java","size":8226,"date":"2019-10-25","sha1":"c7b00fc2f69fb79805bab737754788acd26eedb0","md5":"f556c01376ffd248dcd99a845c65ecae","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/OverflowManager.java","type":"file","name":"OverflowManager.java","base_name":"OverflowManager","extension":".java","size":3217,"date":"2019-10-25","sha1":"f6388db4f2b7c489fbb8f8eb9263b628ccdfa9d8","md5":"113c16d219dc7cd5ff75c9b0f3e7a425","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/SrcManager.java","type":"file","name":"SrcManager.java","base_name":"SrcManager","extension":".java","size":6592,"date":"2019-10-25","sha1":"d5c3dedc927d147fa1ddddf8f25b7dbd9d28d37e","md5":"be76441cf77df470f81d7cd10a2b701e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/TextDecorationManager.java","type":"file","name":"TextDecorationManager.java","base_name":"TextDecorationManager","extension":".java","size":5106,"date":"2019-10-25","sha1":"59e9d34a14e2a59e84c93f723f91b43cbdfa5176","md5":"e2ce858c8bfd5b4b1ae8f6a0d49214bc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/UnicodeBidiManager.java","type":"file","name":"UnicodeBidiManager.java","base_name":"UnicodeBidiManager","extension":".java","size":3146,"date":"2019-10-25","sha1":"cb876a0f18082f448d70719688a268302afa6f89","md5":"6f8e0f687587b3f56416812b5c35ade6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/css2/VisibilityManager.java","type":"file","name":"VisibilityManager.java","base_name":"VisibilityManager","extension":".java","size":3136,"date":"2019-10-25","sha1":"2106d3a2601050cff7bff1dd678ea473bea5102e","md5":"63657059e78305edbef268f28a3c1acc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg","type":"directory","name":"svg","base_name":"svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":39,"dirs_count":0,"size_count":247012,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/AlignmentBaselineManager.java","type":"file","name":"AlignmentBaselineManager.java","base_name":"AlignmentBaselineManager","extension":".java","size":4013,"date":"2019-10-25","sha1":"560e3d96006354a372f62a3f2621f146d7aba238","md5":"71d64a1f6eaecb7a65450cc5f728829b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/BaselineShiftManager.java","type":"file","name":"BaselineShiftManager.java","base_name":"BaselineShiftManager","extension":".java","size":5834,"date":"2019-10-25","sha1":"c80b7df791b433ff43118207ed7e7f4a091f2d58","md5":"dec219f30a013a2389d5b1c2d75575ca","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/ClipPathManager.java","type":"file","name":"ClipPathManager.java","base_name":"ClipPathManager","extension":".java","size":4096,"date":"2019-10-25","sha1":"948d1d196f24fa3612343024a213c0859b80c694","md5":"9647383c737fcee13a8253aca86f8964","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/ClipRuleManager.java","type":"file","name":"ClipRuleManager.java","base_name":"ClipRuleManager","extension":".java","size":2977,"date":"2019-10-25","sha1":"5c368c0c4b8bf2a6261d1a5d6e11ff037bd41f24","md5":"0a8cfdf6ff00d275c990c3663d2e576c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/ColorInterpolationFiltersManager.java","type":"file","name":"ColorInterpolationFiltersManager.java","base_name":"ColorInterpolationFiltersManager","extension":".java","size":1725,"date":"2019-10-25","sha1":"cc320c9506294b264731c7106197ed777c8bac42","md5":"1c8e5a00de624a9afd9af5207814687a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/ColorInterpolationManager.java","type":"file","name":"ColorInterpolationManager.java","base_name":"ColorInterpolationManager","extension":".java","size":3110,"date":"2019-10-25","sha1":"e6d9569980dd8cdc9d7575037035e23f273ebd8b","md5":"4448c9e5407979ee612749fedf1de9e9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/ColorManager.java","type":"file","name":"ColorManager.java","base_name":"ColorManager","extension":".java","size":35970,"date":"2019-10-25","sha1":"3a749a537b43a5aff248c392a634b65e6aa75509","md5":"a5c6da5650e370d1af85c60a583e1194","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/ColorProfileManager.java","type":"file","name":"ColorProfileManager.java","base_name":"ColorProfileManager","extension":".java","size":4544,"date":"2019-10-25","sha1":"e91b6dd4b655d76affa95a7b2815c5e6f0864d36","md5":"0e4f7852311cbfc1f41c93819b2dd234","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/ColorRenderingManager.java","type":"file","name":"ColorRenderingManager.java","base_name":"ColorRenderingManager","extension":".java","size":3124,"date":"2019-10-25","sha1":"44543a33a7159c877078bedecd6ba36c400c03fe","md5":"f4e3148d05b4a63a454f40526e082f1c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/DominantBaselineManager.java","type":"file","name":"DominantBaselineManager.java","base_name":"DominantBaselineManager","extension":".java","size":4332,"date":"2019-10-25","sha1":"8abf28ea644cd9d8a2e40483a80d5e199562a5a7","md5":"7f5ab99d0ced43b5fb047919b20b73a8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/EnableBackgroundManager.java","type":"file","name":"EnableBackgroundManager.java","base_name":"EnableBackgroundManager","extension":".java","size":7052,"date":"2019-10-25","sha1":"6c454959b917b34321ee96278c24121375125344","md5":"acf2c20e6bd06d470b51f80f54fd15ee","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/FillRuleManager.java","type":"file","name":"FillRuleManager.java","base_name":"FillRuleManager","extension":".java","size":2977,"date":"2019-10-25","sha1":"b3dd0cf18ba934105501097244f8a875f193ecf3","md5":"001b34eeea3af99230f65c34205ea4fd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/FilterManager.java","type":"file","name":"FilterManager.java","base_name":"FilterManager","extension":".java","size":4163,"date":"2019-10-25","sha1":"0760e3d47379e4f04c4baddafc5e779d2eda2f18","md5":"c12069c29c6ba168d256a3378a789dba","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/GlyphOrientationHorizontalManager.java","type":"file","name":"GlyphOrientationHorizontalManager.java","base_name":"GlyphOrientationHorizontalManager","extension":".java","size":1738,"date":"2019-10-25","sha1":"7cf25f60d3c940f5f11ed9fa8074ebdcfb910dab","md5":"1499b4846287cae76613acf7f0b9bde2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/GlyphOrientationManager.java","type":"file","name":"GlyphOrientationManager.java","base_name":"GlyphOrientationManager","extension":".java","size":3997,"date":"2019-10-25","sha1":"e58ebe14b6a9ca32551b054bb5c06e1f15cdd03b","md5":"f8c2b5d2ca606efcc331e465e17a57be","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/GlyphOrientationVerticalManager.java","type":"file","name":"GlyphOrientationVerticalManager.java","base_name":"GlyphOrientationVerticalManager","extension":".java","size":2942,"date":"2019-10-25","sha1":"4bc1c08eabe2d30a0c74d3a1950e0b0ec732c830","md5":"f143e823e30ca8b2302f691184eaa836","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/ICCColor.java","type":"file","name":"ICCColor.java","base_name":"ICCColor","extension":".java","size":3050,"date":"2019-10-25","sha1":"0be2d921565676bf0e19d23f7cf33910c3cc4208","md5":"c7d100c73647ceed3c7f63c9b230b2a0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/ImageRenderingManager.java","type":"file","name":"ImageRenderingManager.java","base_name":"ImageRenderingManager","extension":".java","size":3124,"date":"2019-10-25","sha1":"1425cdc34add6c96bb6da4f1fac9975ae5bfa718","md5":"0941f16f5e250eb37219f426b121319d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/KerningManager.java","type":"file","name":"KerningManager.java","base_name":"KerningManager","extension":".java","size":3848,"date":"2019-10-25","sha1":"dfca2e37abb7c94f87c1e26f6a5c5ca7f6f5e72f","md5":"4370a5d93a3ebf485bde455e06e420eb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/MarkerManager.java","type":"file","name":"MarkerManager.java","base_name":"MarkerManager","extension":".java","size":4263,"date":"2019-10-25","sha1":"6c646c988141e367a457d6ec6c3d75fc4e77faa0","md5":"9ed9ad1ccf80ec078fe0a20e76aec2ba","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/MarkerShorthandManager.java","type":"file","name":"MarkerShorthandManager.java","base_name":"MarkerShorthandManager","extension":".java","size":2597,"date":"2019-10-25","sha1":"641af0843581b2556e6c5f903d591f98b207d118","md5":"d1e3871af276987a6739c71d1804883b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/MaskManager.java","type":"file","name":"MaskManager.java","base_name":"MaskManager","extension":".java","size":4077,"date":"2019-10-25","sha1":"5d44f5b8d3aaf8a565a7fa5675e91bdac16da811","md5":"d67d619f1f1854d62482d28a43f3b0e2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/OpacityManager.java","type":"file","name":"OpacityManager.java","base_name":"OpacityManager","extension":".java","size":3919,"date":"2019-10-25","sha1":"bf4d03e79ad7e3bf36a2d1c03b343b3a641547ca","md5":"7fb66db84b32a355d46c588462b4ab8b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/PointerEventsManager.java","type":"file","name":"PointerEventsManager.java","base_name":"PointerEventsManager","extension":".java","size":3978,"date":"2019-10-25","sha1":"b77054b37023e6e2b4158c8a7143a29d5ec59836","md5":"6c3f793a1f786a578a58fd7a453a8be3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/ShapeRenderingManager.java","type":"file","name":"ShapeRenderingManager.java","base_name":"ShapeRenderingManager","extension":".java","size":3240,"date":"2019-10-25","sha1":"ebee5364ebbb23313e698000e6667e93c129c798","md5":"0c0967a308a0825ccd86a4b29a7f65b3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/SpacingManager.java","type":"file","name":"SpacingManager.java","base_name":"SpacingManager","extension":".java","size":4032,"date":"2019-10-25","sha1":"e61525881e1b6996b15f58327a309aca568e516d","md5":"f1a80fcbabaca8e965e7b09064ca65bd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/StrokeDasharrayManager.java","type":"file","name":"StrokeDasharrayManager.java","base_name":"StrokeDasharrayManager","extension":".java","size":5347,"date":"2019-10-25","sha1":"6a8595babd9d682f91bd8fa7f71f0f00526ff50f","md5":"db0d6e1c1a550d6b268fe14627ae0e1b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/StrokeDashoffsetManager.java","type":"file","name":"StrokeDashoffsetManager.java","base_name":"StrokeDashoffsetManager","extension":".java","size":3016,"date":"2019-10-25","sha1":"0959f4fbb634a36b2dc8cd66421facde3cc48bf9","md5":"79da4135bb5fa71c34fb5655924d20ec","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/StrokeLinecapManager.java","type":"file","name":"StrokeLinecapManager.java","base_name":"StrokeLinecapManager","extension":".java","size":3086,"date":"2019-10-25","sha1":"794368ce58e29fc76268136c3b71d1f30d4847a4","md5":"134634d69319cf37bc7fb75e1804a775","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/StrokeLinejoinManager.java","type":"file","name":"StrokeLinejoinManager.java","base_name":"StrokeLinejoinManager","extension":".java","size":3091,"date":"2019-10-25","sha1":"ec7861ff3bd4834d65e181616923fd5a0b607975","md5":"933dc21ac7b04e9548ba8e8397418000","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/StrokeMiterlimitManager.java","type":"file","name":"StrokeMiterlimitManager.java","base_name":"StrokeMiterlimitManager","extension":".java","size":3721,"date":"2019-10-25","sha1":"89abc3fe635cd044fdbed26fc838c79138ff459c","md5":"05b0e7ada775cf1a2f56422fc1b10092","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/StrokeWidthManager.java","type":"file","name":"StrokeWidthManager.java","base_name":"StrokeWidthManager","extension":".java","size":2991,"date":"2019-10-25","sha1":"f222d1c1b6d77d4255b3f38778f2e7825ac6faa0","md5":"45147ed858a6e0d705194422f9d19d47","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/SVGColorManager.java","type":"file","name":"SVGColorManager.java","base_name":"SVGColorManager","extension":".java","size":10965,"date":"2019-10-25","sha1":"1afd0699bd8c3978cdee247d67625e795a0d16b3","md5":"c43ba6a55fff82ef94235756a2f553df","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/SVGPaintManager.java","type":"file","name":"SVGPaintManager.java","base_name":"SVGPaintManager","extension":".java","size":5579,"date":"2019-10-25","sha1":"0d787283f91eced2dda5913b9a6b8e3f1410b4d8","md5":"818bb46bc6396fab5a088366b4bf7576","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/SVGValue.java","type":"file","name":"SVGValue.java","base_name":"SVGValue","extension":".java","size":2047,"date":"2019-10-25","sha1":"2d0ebf7296727bc32213fb1de19cb11cb213f76c","md5":"fd8cccba8b68940d280ecd67c91e91a7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/SVGValueConstants.java","type":"file","name":"SVGValueConstants.java","base_name":"SVGValueConstants","extension":".java","size":68757,"date":"2019-10-25","sha1":"703db77ff48f5696c1a2bc3d8c8e00cd78f08637","md5":"6832b2a3bb79ca37e12f5ecb45baa245","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/TextAnchorManager.java","type":"file","name":"TextAnchorManager.java","base_name":"TextAnchorManager","extension":".java","size":3073,"date":"2019-10-25","sha1":"0c22601da2497c0e40385f75602b2096704b39b7","md5":"f63b411a50dac62c42418bafa98c68f7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/TextRenderingManager.java","type":"file","name":"TextRenderingManager.java","base_name":"TextRenderingManager","extension":".java","size":3252,"date":"2019-10-25","sha1":"af8a722ce1f97fafb3182e58f275521b1a10f2a1","md5":"882842917e5a6c9a0935ca8466681252","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg/WritingModeManager.java","type":"file","name":"WritingModeManager.java","base_name":"WritingModeManager","extension":".java","size":3365,"date":"2019-10-25","sha1":"23fce6faef9ea219371af5fd26b5e983a53154d5","md5":"578e3a823fe25cd1738df9e01af135f7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg12","type":"directory","name":"svg12","base_name":"svg12","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":11,"dirs_count":0,"size_count":31786,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg12/AbstractCIEColor.java","type":"file","name":"AbstractCIEColor.java","base_name":"AbstractCIEColor","extension":".java","size":3144,"date":"2019-10-25","sha1":"3149fd9a3923106ad7b974141f53f338c881f839","md5":"ad0d1c3ea8c1d7e43d70a7070da3517b","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg12/CIELabColor.java","type":"file","name":"CIELabColor.java","base_name":"CIELabColor","extension":".java","size":1710,"date":"2019-10-25","sha1":"ec7d7cc51558f58648d52e55afa9d8c3f603a89e","md5":"82554069a717289b6453460f6488945a","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg12/CIELCHColor.java","type":"file","name":"CIELCHColor.java","base_name":"CIELCHColor","extension":".java","size":1842,"date":"2019-10-25","sha1":"1724397a14ded705c35c0d28dfc2f6eb42cebd92","md5":"d07de54ed98b130f7f526cd3c4ba291e","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg12/DeviceColor.java","type":"file","name":"DeviceColor.java","base_name":"DeviceColor","extension":".java","size":3897,"date":"2019-10-25","sha1":"bff5c76b176dea233e2dd88ccf41c89ae4599e10","md5":"ea2e46dbf911f5fff35499caf6c6e626","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg12/ICCNamedColor.java","type":"file","name":"ICCNamedColor.java","base_name":"ICCNamedColor","extension":".java","size":2497,"date":"2019-10-25","sha1":"85678fa487c254a9af6405a8c4fe617ca5db5471","md5":"748fe75c5680ec6219036eabe042a5d4","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg12/LineHeightManager.java","type":"file","name":"LineHeightManager.java","base_name":"LineHeightManager","extension":".java","size":4851,"date":"2019-10-25","sha1":"f98fef50089392cd17d83f6e280c8ff23dfb0ca7","md5":"bfff2a0084cc536ffb814f0bd9e318a9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg12/LineHeightValue.java","type":"file","name":"LineHeightValue.java","base_name":"LineHeightValue","extension":".java","size":1745,"date":"2019-10-25","sha1":"ef33c28faa5a4667167855eb63f8feb3be7fb839","md5":"442011bcfd4d7c8a891ec94376bde6da","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg12/MarginLengthManager.java","type":"file","name":"MarginLengthManager.java","base_name":"MarginLengthManager","extension":".java","size":3174,"date":"2019-10-25","sha1":"ded3d8bf6b9da5dabb456a4febaf3dec270b49a8","md5":"5f12cd167bf991160ed04f77b5a4e48b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg12/MarginShorthandManager.java","type":"file","name":"MarginShorthandManager.java","base_name":"MarginShorthandManager","extension":".java","size":3364,"date":"2019-10-25","sha1":"9a4e8ec4e9da34de27941f23d3ea0a024fc48935","md5":"32e9df0381f23af7f5a8a4861a3086d7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg12/SVG12ValueConstants.java","type":"file","name":"SVG12ValueConstants.java","base_name":"SVG12ValueConstants","extension":".java","size":2299,"date":"2019-10-25","sha1":"85b9899626230260408378229a654f6ad533866d","md5":"1994ee2ba2c23a8b3b5db3225aaba3ff","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/engine/value/svg12/TextAlignManager.java","type":"file","name":"TextAlignManager.java","base_name":"TextAlignManager","extension":".java","size":3263,"date":"2019-10-25","sha1":"49b1121d889abdb4519ad2cdac8aa03f207eb4fe","md5":"a3a70e7967ec917e02ce11446c1e1a8e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser","type":"directory","name":"parser","base_name":"parser","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":34,"dirs_count":0,"size_count":206925,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/AbstractAttributeCondition.java","type":"file","name":"AbstractAttributeCondition.java","base_name":"AbstractAttributeCondition","extension":".java","size":1633,"date":"2019-10-25","sha1":"a93646f5cc89c39cde53e9c022f98644c3711a2a","md5":"00515d4a43a61b3e75243c6ed2238619","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/AbstractCombinatorCondition.java","type":"file","name":"AbstractCombinatorCondition.java","base_name":"AbstractCombinatorCondition","extension":".java","size":2025,"date":"2019-10-25","sha1":"d3e9e9bebf2cc2579edd8d75561f20d01016fe5a","md5":"a229e7484fc0d6e1831ebad5f8166de7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/AbstractDescendantSelector.java","type":"file","name":"AbstractDescendantSelector.java","base_name":"AbstractDescendantSelector","extension":".java","size":2120,"date":"2019-10-25","sha1":"695846c8f081562e5fde2579065214b8cce4250f","md5":"c899994bca83f08a0a7d1b275a7f0c42","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/AbstractElementSelector.java","type":"file","name":"AbstractElementSelector.java","base_name":"AbstractElementSelector","extension":".java","size":1877,"date":"2019-10-25","sha1":"9a6ebab0aa4098a0a1f3d3d6635e399db93f38c8","md5":"495a633c307aa6c97e1fb5986d99adbd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/AbstractSiblingSelector.java","type":"file","name":"AbstractSiblingSelector.java","base_name":"AbstractSiblingSelector","extension":".java","size":2350,"date":"2019-10-25","sha1":"a97127f17e1eb9027a69ec7d7fb5e31bbfbc24e9","md5":"c9454aa0f0622da813e90fe4ec2e098a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/CSSLexicalUnit.java","type":"file","name":"CSSLexicalUnit.java","base_name":"CSSLexicalUnit","extension":".java","size":13200,"date":"2019-10-25","sha1":"d246be71c076aa923a7ea5261cd7c6a9ea2d6333","md5":"cd63994ef1bafdc9b5e845db7b03fce5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/CSSSACMediaList.java","type":"file","name":"CSSSACMediaList.java","base_name":"CSSSACMediaList","extension":".java","size":2104,"date":"2019-10-25","sha1":"e13dc4ba8532dcdd26cf25ad3116ba8ae1bb3a4f","md5":"4e92ad6da2126b2aabd9e540fb85dca2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/CSSSelectorList.java","type":"file","name":"CSSSelectorList.java","base_name":"CSSSelectorList","extension":".java","size":2148,"date":"2019-10-25","sha1":"ea029322982f10989266460284afe424174db50b","md5":"e1f7661f47520babde9bf1159bcce3d0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultAndCondition.java","type":"file","name":"DefaultAndCondition.java","base_name":"DefaultAndCondition","extension":".java","size":1739,"date":"2019-10-25","sha1":"0ccfeffcf5d722de9dbc490f69f98fd922e97596","md5":"fa282a2bb6100d7c306b000bb329a563","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultAttributeCondition.java","type":"file","name":"DefaultAttributeCondition.java","base_name":"DefaultAttributeCondition","extension":".java","size":2910,"date":"2019-10-25","sha1":"99fdeec91cef586232155d814f99b3ae59a4529a","md5":"02c4e194ee70a8419cc801af1e44e748","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultBeginHyphenAttributeCondition.java","type":"file","name":"DefaultBeginHyphenAttributeCondition.java","base_name":"DefaultBeginHyphenAttributeCondition","extension":".java","size":2002,"date":"2019-10-25","sha1":"33ec002d2db272c9a2b61eee4ed89e49308c45b9","md5":"6f8609271cec67ea7620c6a563cc1369","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultChildSelector.java","type":"file","name":"DefaultChildSelector.java","base_name":"DefaultChildSelector","extension":".java","size":1958,"date":"2019-10-25","sha1":"407dc0476bfd5ecec4b8274aa6565c752434372f","md5":"6f304e81f2ae0f76cf283ffa8c78d4a8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultClassCondition.java","type":"file","name":"DefaultClassCondition.java","base_name":"DefaultClassCondition","extension":".java","size":1751,"date":"2019-10-25","sha1":"8f57590c0ead10426187020410ae563f86010e93","md5":"84e57dcd5170abad386fa3d3a413ed98","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultConditionalSelector.java","type":"file","name":"DefaultConditionalSelector.java","base_name":"DefaultConditionalSelector","extension":".java","size":2410,"date":"2019-10-25","sha1":"b6c7f76bae7306bf28f2067f55b4db6592a9e965","md5":"65b796e966a2d47ab97df43b70ff373f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultConditionFactory.java","type":"file","name":"DefaultConditionFactory.java","base_name":"DefaultConditionFactory","extension":".java","size":6976,"date":"2019-10-25","sha1":"bdfcf7a363aa578382e570ff1fd254cdc3058e55","md5":"5e248d89b8546362f2d327236ca74793","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultDescendantSelector.java","type":"file","name":"DefaultDescendantSelector.java","base_name":"DefaultDescendantSelector","extension":".java","size":1849,"date":"2019-10-25","sha1":"5ec8d20fcdd99b5fd01e4a151689a9315c122314","md5":"43289b9b93fd27c9f1e05fba517c8601","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultDirectAdjacentSelector.java","type":"file","name":"DefaultDirectAdjacentSelector.java","base_name":"DefaultDirectAdjacentSelector","extension":".java","size":1922,"date":"2019-10-25","sha1":"7da9cc61cc6672987eb394a4c2e577a3bfa30ff5","md5":"1b5ddd697c1d3b169f091f98bf375ae6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultDocumentHandler.java","type":"file","name":"DefaultDocumentHandler.java","base_name":"DefaultDocumentHandler","extension":".java","size":4718,"date":"2019-10-25","sha1":"d331cc398abaabb30408b71f2d483013f24128d0","md5":"37aabe51254743f198455b3d899fe2ed","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultElementSelector.java","type":"file","name":"DefaultElementSelector.java","base_name":"DefaultElementSelector","extension":".java","size":1723,"date":"2019-10-25","sha1":"241a56d18d4fcf73129b6bb4effd073d92c6530c","md5":"08fec8363e5bbe35311e62acb0ecb099","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultErrorHandler.java","type":"file","name":"DefaultErrorHandler.java","base_name":"DefaultErrorHandler","extension":".java","size":1962,"date":"2019-10-25","sha1":"eb0d2afde3ad2d4abeecc42444cdda0d1364e895","md5":"ea53f032ceb0ff41635d7a287db2672d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultIdCondition.java","type":"file","name":"DefaultIdCondition.java","base_name":"DefaultIdCondition","extension":".java","size":2189,"date":"2019-10-25","sha1":"b0fd5886524f26bc78c746fc1160dbd248417195","md5":"b441671fea6de05dc514f63dcb07d85e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultLangCondition.java","type":"file","name":"DefaultLangCondition.java","base_name":"DefaultLangCondition","extension":".java","size":1895,"date":"2019-10-25","sha1":"c3b407aee53abcd569ae28d84eb06e0ad34cbce7","md5":"5ab8dfb122994a380cf175c5e6d31aa6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultOneOfAttributeCondition.java","type":"file","name":"DefaultOneOfAttributeCondition.java","base_name":"DefaultOneOfAttributeCondition","extension":".java","size":1956,"date":"2019-10-25","sha1":"d4c4af4c4e1d594b69c5051b80f78ffe7a8804d2","md5":"26f98f78dca192860c154263e541fdb0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultPseudoClassCondition.java","type":"file","name":"DefaultPseudoClassCondition.java","base_name":"DefaultPseudoClassCondition","extension":".java","size":2374,"date":"2019-10-25","sha1":"ae3434aa3872df10e17f466799a4e8ab4fac2c9f","md5":"33f188957c25d08725e06e041573f424","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultPseudoElementSelector.java","type":"file","name":"DefaultPseudoElementSelector.java","base_name":"DefaultPseudoElementSelector","extension":".java","size":1659,"date":"2019-10-25","sha1":"bf26d97716e55e335e0e85e033d938ef4be65c37","md5":"48ff61a8052d2a9aa8cf722fc34f22d7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/DefaultSelectorFactory.java","type":"file","name":"DefaultSelectorFactory.java","base_name":"DefaultSelectorFactory","extension":".java","size":6213,"date":"2019-10-25","sha1":"2ce29fe30f1c257fe313cb808412a82b25576a62","md5":"0c1614163ffaad35ed513b34c7c807f6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/ExtendedParser.java","type":"file","name":"ExtendedParser.java","base_name":"ExtendedParser","extension":".java","size":4106,"date":"2019-10-25","sha1":"73ada5ff1b8fdea42af891706d2d03b6217ecbfc","md5":"8de82f7fbee6c38e8d4007377c230e17","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/ExtendedParserWrapper.java","type":"file","name":"ExtendedParserWrapper.java","base_name":"ExtendedParserWrapper","extension":".java","size":9438,"date":"2019-10-25","sha1":"5889c8d85b4848b34ae95e930ec3d7c0e2f6c2e4","md5":"bf1a73ce5a6d61f6a92d53576a3e5144","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/LexicalUnits.java","type":"file","name":"LexicalUnits.java","base_name":"LexicalUnits","extension":".java","size":5475,"date":"2019-10-25","sha1":"3ff7a388f64d7e6f98aa1dbfa648ce2c2f00a494","md5":"b2d1d835437e23f85025eaa8e7d1dbda","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":248,"date":"2019-10-25","sha1":"003ee708270a35c1db5d4be3921f334a6ff4bbdb","md5":"8b02f36f8ac1a22b65ec1c1f0bcacc93","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Style/CSS/SAC/","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/ParseException.java","type":"file","name":"ParseException.java","base_name":"ParseException","extension":".java","size":3959,"date":"2019-10-25","sha1":"a6e59d37de8faad576a7c449f42c225453fb12f4","md5":"39635365ec8d30bca429d9c2af0559e9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/Parser.java","type":"file","name":"Parser.java","base_name":"Parser","extension":".java","size":57821,"date":"2019-10-25","sha1":"66b1f7783fa358892644667d9368d0accbbb660d","md5":"db74090b5fa600b7425e8afa751bbb82","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":49,"end_line":49}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/Scanner.java","type":"file","name":"Scanner.java","base_name":"Scanner","extension":".java","size":46786,"date":"2019-10-25","sha1":"e110393160da3f5da6eab15f234f2a0587093944","md5":"a94d4ecd8b9fbe48aa76f0c6dd96521a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/java/org/apache/batik/css/parser/ScannerUtilities.java","type":"file","name":"ScannerUtilities.java","base_name":"ScannerUtilities","extension":".java","size":3429,"date":"2019-10-25","sha1":"db3515204b9223e6c2d3a3f32c876129747b1f8b","md5":"f0200cbdcb301c649c970bf8f11646bb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":10,"size_count":6293,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":9,"size_count":6293,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":8,"size_count":6293,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":7,"size_count":6293,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/resources/org/apache/batik/css","type":"directory","name":"css","base_name":"css","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":6,"size_count":6293,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/resources/org/apache/batik/css/engine","type":"directory","name":"engine","base_name":"engine","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":3,"size_count":4213,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/resources/org/apache/batik/css/engine/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1582,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/resources/org/apache/batik/css/engine/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":1582,"date":"2019-10-25","sha1":"2f32bce2f8ba6487bc535b9f5e5fc08fcbae13cf","md5":"7195cd1e41d12de966f0924f318ec2a0","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/resources/org/apache/batik/css/engine/value","type":"directory","name":"value","base_name":"value","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":2631,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/resources/org/apache/batik/css/engine/value/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":2631,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/resources/org/apache/batik/css/engine/value/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":2631,"date":"2019-10-25","sha1":"02f33228c328ac45d8da7abda545b2e62e15009c","md5":"778dcbcb02180227a17b47798d3a84be","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/resources/org/apache/batik/css/parser","type":"directory","name":"parser","base_name":"parser","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":2080,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/resources/org/apache/batik/css/parser/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":2080,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/main/resources/org/apache/batik/css/parser/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":2080,"date":"2019-10-25","sha1":"4cde50a11691583659b57aa46cf7f5cd18b7886c","md5":"f8189f7a51d70b90daf38837e6e94b10","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"stephane@hillion.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-css/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom","type":"directory","name":"batik-dom","base_name":"batik-dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":82,"dirs_count":20,"size_count":615318,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2901,"date":"2019-10-25","sha1":"ace7f147ac957cd32867013891c3fe207cd07af1","md5":"54989c13ca95bb869aeb61ebe6a00c61","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-dom","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-dom\nBatik DOM implementation","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-css","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-ext","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-xml","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/xalan/xalan","requirement":"${xalan.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/xml-apis/xml-apis","requirement":"${xmlapis.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/xml-apis/xml-apis-ext","requirement":"${xmlapisext.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-dom@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-dom@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-dom/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-dom/1.12/batik-dom-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-dom/1.12/batik-dom-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":81,"dirs_count":19,"size_count":612417,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":81,"dirs_count":15,"size_count":612417,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":80,"dirs_count":8,"size_count":606920,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":80,"dirs_count":7,"size_count":606920,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":80,"dirs_count":6,"size_count":606920,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":80,"dirs_count":5,"size_count":606920,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom","type":"directory","name":"dom","base_name":"dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":80,"dirs_count":4,"size_count":606920,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractAttr.java","type":"file","name":"AbstractAttr.java","base_name":"AbstractAttr","extension":".java","size":10083,"date":"2019-10-25","sha1":"4c9085c680eacc58c8757456685cf368032746fb","md5":"d167dd8aa07deacd83b1103057d435f5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractAttrNS.java","type":"file","name":"AbstractAttrNS.java","base_name":"AbstractAttrNS","extension":".java","size":5385,"date":"2019-10-25","sha1":"09bad7b9fc55d8d60324d015dda6067969c3a4b2","md5":"8f8c1213df08c4187a02d778ecd334d4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractCharacterData.java","type":"file","name":"AbstractCharacterData.java","base_name":"AbstractCharacterData","extension":".java","size":8160,"date":"2019-10-25","sha1":"6695b85d54b85203f5ee4d04edd7409ece5ca91f","md5":"81338697fe5b5feddf9c00f95b5e6596","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractChildNode.java","type":"file","name":"AbstractChildNode.java","base_name":"AbstractChildNode","extension":".java","size":2443,"date":"2019-10-25","sha1":"e0f39c71876fd5eaec2e0bdb472f332edc6d07b3","md5":"b1eb3459b80acbaefbd2c7a2554a2d6c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractComment.java","type":"file","name":"AbstractComment.java","base_name":"AbstractComment","extension":".java","size":1741,"date":"2019-10-25","sha1":"6f093522c9ff48439fd84ae8ebb6e00fff20061d","md5":"8340a97b44cd969ebd7a6f74559a393f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractDocument.java","type":"file","name":"AbstractDocument.java","base_name":"AbstractDocument","extension":".java","size":95706,"date":"2019-10-25","sha1":"ed58e1694edd46586203cd1b4b431ea9ded78a25","md5":"358ceb90fc58d054d975f34f3f7ee1f6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":85,"end_line":85}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractDocumentFragment.java","type":"file","name":"AbstractDocumentFragment.java","base_name":"AbstractDocumentFragment","extension":".java","size":2476,"date":"2019-10-25","sha1":"687da02f46786fbe779acd3b74d55c5427ea7844","md5":"fb30e2766bd0dc2b104be163767cb575","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractDOMImplementation.java","type":"file","name":"AbstractDOMImplementation.java","base_name":"AbstractDOMImplementation","extension":".java","size":5717,"date":"2019-10-25","sha1":"fa652fa005e586e55d384f001d94b52d2d723e54","md5":"77e00e27929b1f971698ecac589d8e76","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractElement.java","type":"file","name":"AbstractElement.java","base_name":"AbstractElement","extension":".java","size":35668,"date":"2019-10-25","sha1":"229ff7a5582408915abdbc089246669652fcf13e","md5":"8e49e75b3774c5e0eb1801e9669872f0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractElementNS.java","type":"file","name":"AbstractElementNS.java","base_name":"AbstractElementNS","extension":".java","size":4449,"date":"2019-10-25","sha1":"ac0fb912558e5022b82d5adae6d1be3fe50e565b","md5":"ce4de793403facdc0fa038561c8749d1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractEntity.java","type":"file","name":"AbstractEntity.java","base_name":"AbstractEntity","extension":".java","size":5509,"date":"2019-10-25","sha1":"651c84847528809bc881533088b98752bcdc49a9","md5":"89fb47608c7fa024ef19d04d1e08462a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractEntityReference.java","type":"file","name":"AbstractEntityReference.java","base_name":"AbstractEntityReference","extension":".java","size":4717,"date":"2019-10-25","sha1":"785515cff8b2fc10f381e0065e2ea63909e903ff","md5":"ce9fb4ebbbfeca314275ffcf3bfd077d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractNode.java","type":"file","name":"AbstractNode.java","base_name":"AbstractNode","extension":".java","size":44635,"date":"2019-10-25","sha1":"c49e05458bc3f23c9f2f7eaf5a2482aa1fd2c04a","md5":"f6415140239aa03939a660128a600a9b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":53,"end_line":53}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractNotation.java","type":"file","name":"AbstractNotation.java","base_name":"AbstractNotation","extension":".java","size":4098,"date":"2019-10-25","sha1":"eca37a0d72ef148a09a1ba6a6bfb2a7631040eb9","md5":"0c97f23747765ea47b6a1f04b3336f74","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractParentChildNode.java","type":"file","name":"AbstractParentChildNode.java","base_name":"AbstractParentChildNode","extension":".java","size":2471,"date":"2019-10-25","sha1":"ba723db53e331e0ea1c748d07686ee1530159d72","md5":"62b28537eb269a1974896b86dc43821e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractParentNode.java","type":"file","name":"AbstractParentNode.java","base_name":"AbstractParentNode","extension":".java","size":30859,"date":"2019-10-25","sha1":"9d379880fa98e1afd8cf7b11c05d02ff139b77b0","md5":"9bb53b6c12599687d2240a39ebfc4a51","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractProcessingInstruction.java","type":"file","name":"AbstractProcessingInstruction.java","base_name":"AbstractProcessingInstruction","extension":".java","size":4554,"date":"2019-10-25","sha1":"93366c91beda91c93093a20dd813060e580e22d6","md5":"5caec3d89fd0d0d1705eda51fff03ab0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractStylableDocument.java","type":"file","name":"AbstractStylableDocument.java","base_name":"AbstractStylableDocument","extension":".java","size":3573,"date":"2019-10-25","sha1":"af6308318effc221540b99f619b4816aa5b3ec66","md5":"4ba466d44d8b4b7a9ddf57fbe0b5eb8c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/AbstractText.java","type":"file","name":"AbstractText.java","base_name":"AbstractText","extension":".java","size":7883,"date":"2019-10-25","sha1":"dc6cbf6ad30f9f575667cc09ff80236c0c72231f","md5":"c3ed01e5e3f414690030268ddfa3ddcb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/DomExtension.java","type":"file","name":"DomExtension.java","base_name":"DomExtension","extension":".java","size":2540,"date":"2019-10-25","sha1":"3fb82f876b336279ec1f4ba94b909d509a81e418","md5":"fb53caa63fab9e7a88b051fe38f3f227","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/ExtendedNode.java","type":"file","name":"ExtendedNode.java","base_name":"ExtendedNode","extension":".java","size":2078,"date":"2019-10-25","sha1":"793c4b10de0441e60473e718bb3e7b8ca1fff3e3","md5":"8e79686841bd5e33bc94e9f842d6ae10","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/ExtensibleDOMImplementation.java","type":"file","name":"ExtensibleDOMImplementation.java","base_name":"ExtensibleDOMImplementation","extension":".java","size":10468,"date":"2019-10-25","sha1":"c9a44a187c6dcdc15214dc020c2f5809938b8187","md5":"c8b3e73201ce1932a9db4256db00ed90","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":53,"end_line":53}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/GenericAttr.java","type":"file","name":"GenericAttr.java","base_name":"GenericAttr","extension":".java","size":2146,"date":"2019-10-25","sha1":"a2407175b0162b093156b53fa6bb67441a6a1919","md5":"3cad7e150e56589af436f033de449f99","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/GenericAttrNS.java","type":"file","name":"GenericAttrNS.java","base_name":"GenericAttrNS","extension":".java","size":3054,"date":"2019-10-25","sha1":"f64d6bd765307fba15ab6cacbf77aa6816e171bd","md5":"0be5ba6d2e1e9c6c92699e6eb4a813cc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/GenericCDATASection.java","type":"file","name":"GenericCDATASection.java","base_name":"GenericCDATASection","extension":".java","size":2640,"date":"2019-10-25","sha1":"22a56a086540ef6f84074dd4e89c51ba2a19f381","md5":"fca8051cbb7864356552faa73bc6b75f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/GenericComment.java","type":"file","name":"GenericComment.java","base_name":"GenericComment","extension":".java","size":1908,"date":"2019-10-25","sha1":"81f0aeab22cd42fb4aeb6a9f40942c40c9d7dd02","md5":"1db7337af1aa9b6a42047e1a8e5a6be4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/GenericDocument.java","type":"file","name":"GenericDocument.java","base_name":"GenericDocument","extension":".java","size":6166,"date":"2019-10-25","sha1":"edd8feb8b2e7d997da86ee4148376ee910837397","md5":"f9b50af1af391a3d47b9f846af266039","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/GenericDocumentFragment.java","type":"file","name":"GenericDocumentFragment.java","base_name":"GenericDocumentFragment","extension":".java","size":1945,"date":"2019-10-25","sha1":"0b1b436b7793a107af411ee2d63f2409310e976d","md5":"22a32a93a8609d8fe87633e0d8e94989","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/GenericDocumentType.java","type":"file","name":"GenericDocumentType.java","base_name":"GenericDocumentType","extension":".java","size":3549,"date":"2019-10-25","sha1":"772bab3d0e2d4807ff2edbe27ecfaa118c681dad","md5":"76d381e9568362b2d1a7a4f8d1f49b9e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/GenericDOMImplementation.java","type":"file","name":"GenericDOMImplementation.java","base_name":"GenericDOMImplementation","extension":".java","size":3452,"date":"2019-10-25","sha1":"a45ff3adfedfe16f8c876bc4a0862ebc9ab738ee","md5":"618c2bd0cedf6a534950826d75ca4dbe","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/GenericElement.java","type":"file","name":"GenericElement.java","base_name":"GenericElement","extension":".java","size":3715,"date":"2019-10-25","sha1":"03bf1e1d39fed79bbf763ee373883d059d38e3bc","md5":"c3c72555a2cf1f572bceadd353ab94b1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/GenericElementNS.java","type":"file","name":"GenericElementNS.java","base_name":"GenericElementNS","extension":".java","size":4230,"date":"2019-10-25","sha1":"b2055fcf905412718e0febf2d85df0c9975d39ce","md5":"d12a4412d2bc8090ea8a858795425a38","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/GenericEntity.java","type":"file","name":"GenericEntity.java","base_name":"GenericEntity","extension":".java","size":2085,"date":"2019-10-25","sha1":"7c3099961f026e46fdb50a29499cd5845c83741e","md5":"b7b92b0238be6659f7cf6a602c94e131","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/GenericEntityReference.java","type":"file","name":"GenericEntityReference.java","base_name":"GenericEntityReference","extension":".java","size":1947,"date":"2019-10-25","sha1":"e7e3c39c02237577362b94613d822503021579c5","md5":"d3659312e225a88b49d80a0b9ef826a8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/GenericNotation.java","type":"file","name":"GenericNotation.java","base_name":"GenericNotation","extension":".java","size":2109,"date":"2019-10-25","sha1":"7ec312dd3c290df1e88b127cb0a3a81a3b63e008","md5":"4ad65d547a2ec6e06193c4a61e65b6cc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/GenericProcessingInstruction.java","type":"file","name":"GenericProcessingInstruction.java","base_name":"GenericProcessingInstruction","extension":".java","size":3903,"date":"2019-10-25","sha1":"1f6f9474fe7190cca722a43f5a2ac3cbf0ace433","md5":"fcb982ed45d2673f2800b8199d581a3a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/GenericText.java","type":"file","name":"GenericText.java","base_name":"GenericText","extension":".java","size":2521,"date":"2019-10-25","sha1":"912439dd00fe79d8ea28968dde61fa03905b6bc5","md5":"ec552e31a2576f0487d7db84e8214e07","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":230,"date":"2019-10-25","sha1":"1d5457dc05151cd7da6b219a6468c3cda26607ec","md5":"0bace637faca44fd32029f4d6936b011","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/StyleSheetFactory.java","type":"file","name":"StyleSheetFactory.java","base_name":"StyleSheetFactory","extension":".java","size":1448,"date":"2019-10-25","sha1":"50ffcb7decd1c5b5ffd50d3d26585b770066b3fa","md5":"7c661ab63784b24b6bf5f861434d4660","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/StyleSheetProcessingInstruction.java","type":"file","name":"StyleSheetProcessingInstruction.java","base_name":"StyleSheetProcessingInstruction","extension":".java","size":3944,"date":"2019-10-25","sha1":"100b091dea0ae2df29509d342f124ebd1b433fcc","md5":"d709ddfd69a7364b3432f8f8f48b3f3f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events","type":"directory","name":"events","base_name":"events","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":16,"dirs_count":0,"size_count":118147,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/AbstractEvent.java","type":"file","name":"AbstractEvent.java","base_name":"AbstractEvent","extension":".java","size":11328,"date":"2019-10-25","sha1":"e5a6a5ff2479cac2e0bb06fc54b4a621f3fa9270","md5":"4bba13ee26e3ff90c191c4772208f900","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":32,"end_line":32},{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/DocumentEventSupport.java","type":"file","name":"DocumentEventSupport.java","base_name":"DocumentEventSupport","extension":".java","size":9400,"date":"2019-10-25","sha1":"d4575c4993d48813ec7f587da1ea904d15afe8f3","md5":"7867625349e20ef959157c6384aa2155","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/DOMCustomEvent.java","type":"file","name":"DOMCustomEvent.java","base_name":"DOMCustomEvent","extension":".java","size":1812,"date":"2019-10-25","sha1":"ce4b05a363b417dce611e6f4efd5d4a2e9cda0c9","md5":"e2ee8d71c4460bf7592c5b48d4117b86","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/DOMEvent.java","type":"file","name":"DOMEvent.java","base_name":"DOMEvent","extension":".java","size":1060,"date":"2019-10-25","sha1":"d6d844a3b6f359bb1b68a6189efb55932cf4423f","md5":"2df5110d52477f0c31b4ca5d51e0b12c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/DOMKeyboardEvent.java","type":"file","name":"DOMKeyboardEvent.java","base_name":"DOMKeyboardEvent","extension":".java","size":17004,"date":"2019-10-25","sha1":"054e58266c8fbd56d0f10bae38ebab7b904c7a68","md5":"c06555baf3256e5638e6948fd1bf7238","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/DOMKeyEvent.java","type":"file","name":"DOMKeyEvent.java","base_name":"DOMKeyEvent","extension":".java","size":17340,"date":"2019-10-25","sha1":"ec241fe5f4b54e38d9f12d4741aaa83d449dd7a2","md5":"a02dc10f721aae95991c852ef5bec837","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/DOMMouseEvent.java","type":"file","name":"DOMMouseEvent.java","base_name":"DOMMouseEvent","extension":".java","size":10138,"date":"2019-10-25","sha1":"017976113c6eef1e4d3402fb3bc8527469a0527e","md5":"d4a1d8e2d7e865d21bd42a2b892151fc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/DOMMutationEvent.java","type":"file","name":"DOMMutationEvent.java","base_name":"DOMMutationEvent","extension":".java","size":5628,"date":"2019-10-25","sha1":"4e24b806f130f1d8f1a76490b131872ae3f5283d","md5":"43f6f9df8895b66b60b61965b4141660","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28},{"email":"Thierry.Kormann@sophia.inria.fr","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/DOMMutationNameEvent.java","type":"file","name":"DOMMutationNameEvent.java","base_name":"DOMMutationNameEvent","extension":".java","size":3483,"date":"2019-10-25","sha1":"b8f161c25ca7f9ec1fe996b896ccca12e993e159","md5":"c1be54addf86a348b9d6224460755083","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/DOMTextEvent.java","type":"file","name":"DOMTextEvent.java","base_name":"DOMTextEvent","extension":".java","size":2400,"date":"2019-10-25","sha1":"58debf70646988967918b2e01bb1ea5c950d1842","md5":"08b78ab44da6645bd059294693cee8f3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/DOMTimeEvent.java","type":"file","name":"DOMTimeEvent.java","base_name":"DOMTimeEvent","extension":".java","size":2675,"date":"2019-10-25","sha1":"bc6b8df3d7dc41549f5c5def4a0f3f214772310c","md5":"d19561398778b9e54e9c601dcd1d07dc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/DOMUIEvent.java","type":"file","name":"DOMUIEvent.java","base_name":"DOMUIEvent","extension":".java","size":4386,"date":"2019-10-25","sha1":"eeb272c03511f515f5207be6b7d34061a45cb18c","md5":"7445e1c1c8a13a5d552217bd583cbe29","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/EventListenerList.java","type":"file","name":"EventListenerList.java","base_name":"EventListenerList","extension":".java","size":6643,"date":"2019-10-25","sha1":"2ce95a8c72edb6e4d88b43089f063104f02ff0ba","md5":"fed844cdf0e3a3bfb0503d0121843c1f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/EventSupport.java","type":"file","name":"EventSupport.java","base_name":"EventSupport","extension":".java","size":18682,"date":"2019-10-25","sha1":"5ec6e16a683cd93ea7e58148238449ea9a779d27","md5":"7c44199587126e497fe3145fb5edaabb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":38,"end_line":38},{"email":"stephane@hillion.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/NodeEventTarget.java","type":"file","name":"NodeEventTarget.java","base_name":"NodeEventTarget","extension":".java","size":5836,"date":"2019-10-25","sha1":"790e43350bb903d6e879a7e9ce5c9ed025edfc71","md5":"306a28332959b851a1e54319a9b5b5a1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":31,"end_line":31},{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/events/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":332,"date":"2019-10-25","sha1":"063f6cc0a53e65972f7bd3620ebb01716c79ac2b","md5":"9ed7e17f1bd3e4871d5799c5339e37ad","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/traversal","type":"directory","name":"traversal","base_name":"traversal","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":24087,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/traversal/DOMNodeIterator.java","type":"file","name":"DOMNodeIterator.java","base_name":"DOMNodeIterator","extension":".java","size":9442,"date":"2019-10-25","sha1":"e2dd23f479c39190e9d8e97d484a8b5ce8049c56","md5":"7a357172085545e5c7de9f5ec0efb40d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/traversal/DOMTreeWalker.java","type":"file","name":"DOMTreeWalker.java","base_name":"DOMTreeWalker","extension":".java","size":10724,"date":"2019-10-25","sha1":"7305ee403c87159e508dbcfa7f554dd830d524b8","md5":"586ac4a670b85b85606f5e6c1e6fd456","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/traversal/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":335,"date":"2019-10-25","sha1":"a8266e48e9e60239da0ceeb7597be277072d1219","md5":"0fec123eee34c1a4dd903eef51566191","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/traversal/TraversalSupport.java","type":"file","name":"TraversalSupport.java","base_name":"TraversalSupport","extension":".java","size":3586,"date":"2019-10-25","sha1":"864f85430cce42f162b5f318559ff19b57a2b089","md5":"ec6fc6d1c08c7723ba42ca2e4bd48a28","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/util","type":"directory","name":"util","base_name":"util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":13,"dirs_count":0,"size_count":102264,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/util/CSSStyleDeclarationFactory.java","type":"file","name":"CSSStyleDeclarationFactory.java","base_name":"CSSStyleDeclarationFactory","extension":".java","size":1267,"date":"2019-10-25","sha1":"42a334d5dbba7de91c313cfd3a321fb17bd48bb3","md5":"3306920bd20a93344b1e89b6c64df653","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/util/DocumentDescriptor.java","type":"file","name":"DocumentDescriptor.java","base_name":"DocumentDescriptor","extension":".java","size":5876,"date":"2019-10-25","sha1":"b6a9dce40b131f863f07992029ed629903362d1e","md5":"370feb21ca257675881925d0a76fec9b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/util/DocumentFactory.java","type":"file","name":"DocumentFactory.java","base_name":"DocumentFactory","extension":".java","size":3574,"date":"2019-10-25","sha1":"53bedcd3cdd53cdf5f1ed7ba8f49621ef9f1bf66","md5":"3efdf48b8e0f091c07e8d07a75517e0c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/util/DOMUtilities.java","type":"file","name":"DOMUtilities.java","base_name":"DOMUtilities","extension":".java","size":35836,"date":"2019-10-25","sha1":"77bda2697d55df9d16a79adfe75833fda87e76bb","md5":"283ee9b4e18a64a2d61e0f026a16d1d4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":46,"end_line":46}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/util/HashTableStack.java","type":"file","name":"HashTableStack.java","base_name":"HashTableStack","extension":".java","size":3074,"date":"2019-10-25","sha1":"169850a8ba53a5d38fe8f8acd568d84c5595cd47","md5":"793d2fa29a403310e92537a350d80feb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/util/IntTable.java","type":"file","name":"IntTable.java","base_name":"IntTable","extension":".java","size":7756,"date":"2019-10-25","sha1":"ec9b487251914d264fcfd5093bcc0b9a7038da23","md5":"13e2327ec866875e30607189432ec2ed","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/util/ListNodeList.java","type":"file","name":"ListNodeList.java","base_name":"ListNodeList","extension":".java","size":1672,"date":"2019-10-25","sha1":"87df6588bedfa43e199664e8170e8058bbd0ae97","md5":"77a17f77c69aca866bf60ce07fd976ca","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/util/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":236,"date":"2019-10-25","sha1":"1ede10851a0af9816a086e4f91c24182b238fc7f","md5":"a1bd17479e71675d69a1939cc72af527","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/util/SAXDocumentFactory.java","type":"file","name":"SAXDocumentFactory.java","base_name":"SAXDocumentFactory","extension":".java","size":26465,"date":"2019-10-25","sha1":"ba7c80178670b8568fbc8a814c29f24f905284b1","md5":"492ecb11f40accf5153f629ac2edd7f1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":58,"end_line":58}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.org/sax/features/external-general-entities","start_line":403,"end_line":403},{"url":"http://xml.org/sax/features/external-parameter-entities","start_line":404,"end_line":404},{"url":"http://xml.org/sax/features/namespaces","start_line":442,"end_line":442},{"url":"http://xml.org/sax/features/namespace-prefixes","start_line":444,"end_line":444},{"url":"http://xml.org/sax/features/validation","start_line":446,"end_line":446},{"url":"http://xml.org/sax/properties/lexical-handler","start_line":451,"end_line":451},{"url":"http://xml.org/sax/features/is-standalone","start_line":589,"end_line":589},{"url":"http://xml.org/sax/properties/document-xml-version","start_line":594,"end_line":594}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/util/SAXIOException.java","type":"file","name":"SAXIOException.java","base_name":"SAXIOException","extension":".java","size":1490,"date":"2019-10-25","sha1":"1f92809aa00ab636b136b97901b31e918749fb95","md5":"b00a5c7ef7eb298b2b872e0d64cef2bc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/util/TriplyIndexedTable.java","type":"file","name":"TriplyIndexedTable.java","base_name":"TriplyIndexedTable","extension":".java","size":5489,"date":"2019-10-25","sha1":"7aba4a040a190006962915ac418f0c6c428fbcf5","md5":"edd0090eac68bef521bf8b44c9de6bfd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/util/XLinkSupport.java","type":"file","name":"XLinkSupport.java","base_name":"XLinkSupport","extension":".java","size":5083,"date":"2019-10-25","sha1":"121afb72b21f840987f04853dfb293ab53049e32","md5":"2be6fa8b1962af0705fb2ee18b9c2e07","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/util/XMLSupport.java","type":"file","name":"XMLSupport.java","base_name":"XMLSupport","extension":".java","size":4446,"date":"2019-10-25","sha1":"7dcae49c6aeb91d7904c2c00cec540ada7ea39c5","md5":"bb4329b5e3fa5661fcf2818ff2b46b18","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/xbl","type":"directory","name":"xbl","base_name":"xbl","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":0,"size_count":16217,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/xbl/GenericXBLManager.java","type":"file","name":"GenericXBLManager.java","base_name":"GenericXBLManager","extension":".java","size":4897,"date":"2019-10-25","sha1":"553c94f0f4a9c4a5db342ea32022d125014e9f3c","md5":"e9826ee67dd66ec18a59ae1a02d8b51a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/xbl/NodeXBL.java","type":"file","name":"NodeXBL.java","base_name":"NodeXBL","extension":".java","size":2907,"date":"2019-10-25","sha1":"b06ed3ea6ed2efb9b4baaf4c6cc07e6a44bb2330","md5":"f07f9a3d070ec17482a93b0b9e826804","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,"licenses":[{"key":"w3c","score":85.48,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":2,"end_line":8,"matched_rule":{"identifier":"w3c_3.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":62,"matched_length":53,"match_coverage":85.48,"rule_relevance":100}},{"key":"w3c","score":55.0,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":10,"end_line":10,"matched_rule":{"identifier":"w3c-software-20021231_5.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"3-seq","rule_length":10,"matched_length":10,"match_coverage":100.0,"rule_relevance":55}}],"license_expressions":["w3c","w3c"],"copyrights":[{"value":"Copyright (c) 2005 World Wide Web Consortium","start_line":2,"end_line":2}],"holders":[{"value":"World Wide Web Consortium","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/xbl/OriginalEvent.java","type":"file","name":"OriginalEvent.java","base_name":"OriginalEvent","extension":".java","size":1087,"date":"2019-10-25","sha1":"23d4242884ce49e33e7f7b6884ccd8578082de82","md5":"75a48c74b15e00d3e55bf8c7bb3f85b6","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,"licenses":[{"key":"w3c","score":85.48,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":2,"end_line":8,"matched_rule":{"identifier":"w3c_3.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":62,"matched_length":53,"match_coverage":85.48,"rule_relevance":100}},{"key":"w3c","score":55.0,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":10,"end_line":10,"matched_rule":{"identifier":"w3c-software-20021231_5.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"3-seq","rule_length":10,"matched_length":10,"match_coverage":100.0,"rule_relevance":55}}],"license_expressions":["w3c","w3c"],"copyrights":[{"value":"Copyright (c) 2005 World Wide Web Consortium","start_line":2,"end_line":2}],"holders":[{"value":"World Wide Web Consortium","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/xbl/ShadowTreeEvent.java","type":"file","name":"ShadowTreeEvent.java","base_name":"ShadowTreeEvent","extension":".java","size":1506,"date":"2019-10-25","sha1":"9b60dea1c2f22ee0ab3f0663a43ea7cddc25afa9","md5":"662d678abb52412b0fa9965685b7ef8d","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,"licenses":[{"key":"w3c","score":85.48,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":2,"end_line":8,"matched_rule":{"identifier":"w3c_3.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":62,"matched_length":53,"match_coverage":85.48,"rule_relevance":100}},{"key":"w3c","score":55.0,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":10,"end_line":10,"matched_rule":{"identifier":"w3c-software-20021231_5.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"3-seq","rule_length":10,"matched_length":10,"match_coverage":100.0,"rule_relevance":55}}],"license_expressions":["w3c","w3c"],"copyrights":[{"value":"Copyright (c) 2005 World Wide Web Consortium","start_line":2,"end_line":2}],"holders":[{"value":"World Wide Web Consortium","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/xbl/XBLManager.java","type":"file","name":"XBLManager.java","base_name":"XBLManager","extension":".java","size":3399,"date":"2019-10-25","sha1":"fa9ddc3ba64772b79885707541fc64ba5eaa7aca","md5":"9985353d4c17f135dbffb411abca80d0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/xbl/XBLManagerData.java","type":"file","name":"XBLManagerData.java","base_name":"XBLManagerData","extension":".java","size":1312,"date":"2019-10-25","sha1":"e72c28e51225137f95887a9405d91247a0f011e0","md5":"84422c47673444952b505f730fea341b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/java/org/apache/batik/dom/xbl/XBLShadowTreeElement.java","type":"file","name":"XBLShadowTreeElement.java","base_name":"XBLShadowTreeElement","extension":".java","size":1109,"date":"2019-10-25","sha1":"bba09f7e4c95ab58d1291827e0feeb7f641af266","md5":"38b92604deed46fba1aa3a65949f1593","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,"licenses":[{"key":"w3c","score":85.48,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":2,"end_line":8,"matched_rule":{"identifier":"w3c_3.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":62,"matched_length":53,"match_coverage":85.48,"rule_relevance":100}},{"key":"w3c","score":55.0,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":10,"end_line":10,"matched_rule":{"identifier":"w3c-software-20021231_5.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"3-seq","rule_length":10,"matched_length":10,"match_coverage":100.0,"rule_relevance":55}}],"license_expressions":["w3c","w3c"],"copyrights":[{"value":"Copyright (c) 2005 World Wide Web Consortium","start_line":2,"end_line":2}],"holders":[{"value":"World Wide Web Consortium","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":5,"size_count":5497,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":4,"size_count":5497,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":3,"size_count":5497,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":2,"size_count":5497,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/resources/org/apache/batik/dom","type":"directory","name":"dom","base_name":"dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":5497,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/resources/org/apache/batik/dom/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":5497,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/main/resources/org/apache/batik/dom/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":5497,"date":"2019-10-25","sha1":"ce67f3748a87619d60597d2661a4538d0cb66f0a","md5":"2d1f0ccbb3349ce2c165daac586a5704","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Stephane Hillion","start_line":20,"end_line":21}],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-dom/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext","type":"directory","name":"batik-ext","base_name":"batik-ext","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":8,"dirs_count":16,"size_count":24562,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":1745,"date":"2019-10-25","sha1":"cbaf13e2e29e2b53bacab7eb202f8048eba00c32","md5":"0bf625e12e2f8f1e6ea566823ba8efee","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-ext","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-ext\nBatik external code","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext","dependencies":[],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-ext@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-ext@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-ext/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-ext/1.12/batik-ext-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-ext/1.12/batik-ext-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":15,"size_count":22817,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":11,"size_count":22817,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":9,"size_count":22817,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":8,"size_count":22817,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":4,"size_count":22817,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":3,"size_count":22817,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org/apache/batik/w3c","type":"directory","name":"w3c","base_name":"w3c","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":2,"size_count":22817,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org/apache/batik/w3c/dom","type":"directory","name":"dom","base_name":"dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":1,"size_count":22817,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org/apache/batik/w3c/dom/ElementTraversal.java","type":"file","name":"ElementTraversal.java","base_name":"ElementTraversal","extension":".java","size":1084,"date":"2019-10-25","sha1":"003a3373cf2406824e7833706fcc907791d0b4ff","md5":"d8e2756685dedc92025ed21b034763a3","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org/apache/batik/w3c/dom/Location.java","type":"file","name":"Location.java","base_name":"Location","extension":".java","size":1202,"date":"2019-10-25","sha1":"8d2b2e59c5a594b05ee1c0a1fcdd2cf855c058f4","md5":"58ef851f239e5d1da4949391428adc64","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org/apache/batik/w3c/dom/Window.java","type":"file","name":"Window.java","base_name":"Window","extension":".java","size":915,"date":"2019-10-25","sha1":"f695c4afb2af1ab7e0f00ac7868bbc3adf57232d","md5":"78da2b6a223dc2e404290be92d6021b3","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org/apache/batik/w3c/dom/events","type":"directory","name":"events","base_name":"events","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":19616,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org/apache/batik/w3c/dom/events/CustomEvent.java","type":"file","name":"CustomEvent.java","base_name":"CustomEvent","extension":".java","size":2530,"date":"2019-10-25","sha1":"78902da486fc9228277d0125eb5a7cb147458d0b","md5":"4efe47ae4e689c5050c806497fc9afc9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"w3c","score":85.48,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":2,"end_line":8,"matched_rule":{"identifier":"w3c_3.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":62,"matched_length":53,"match_coverage":85.48,"rule_relevance":100}},{"key":"w3c","score":55.0,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":10,"end_line":10,"matched_rule":{"identifier":"w3c-software-20021231_5.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"3-seq","rule_length":10,"matched_length":10,"match_coverage":100.0,"rule_relevance":55}}],"license_expressions":["w3c","w3c"],"copyrights":[{"value":"Copyright (c) 2006 World Wide Web Consortium","start_line":2,"end_line":2}],"holders":[{"value":"World Wide Web Consortium","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org/apache/batik/w3c/dom/events/KeyboardEvent.java","type":"file","name":"KeyboardEvent.java","base_name":"KeyboardEvent","extension":".java","size":8430,"date":"2019-10-25","sha1":"e0933b6b80fca0ec44e1dad85e0e3319bc742973","md5":"15b195b073b50b20ac210c0ba0623558","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"w3c","score":85.48,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":2,"end_line":8,"matched_rule":{"identifier":"w3c_3.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":62,"matched_length":53,"match_coverage":85.48,"rule_relevance":100}},{"key":"w3c","score":55.0,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":10,"end_line":10,"matched_rule":{"identifier":"w3c-software-20021231_5.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"3-seq","rule_length":10,"matched_length":10,"match_coverage":100.0,"rule_relevance":55}}],"license_expressions":["w3c","w3c"],"copyrights":[{"value":"Copyright (c) 2006 World Wide Web Consortium","start_line":2,"end_line":2}],"holders":[{"value":"World Wide Web Consortium","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org/apache/batik/w3c/dom/events/MutationNameEvent.java","type":"file","name":"MutationNameEvent.java","base_name":"MutationNameEvent","extension":".java","size":4649,"date":"2019-10-25","sha1":"70f5b39cae00c56562483ea78839c4242248a8de","md5":"3dc4cf36fbc762de72daed2379d21acb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"w3c","score":85.48,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":2,"end_line":8,"matched_rule":{"identifier":"w3c_3.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":62,"matched_length":53,"match_coverage":85.48,"rule_relevance":100}},{"key":"w3c","score":55.0,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":10,"end_line":10,"matched_rule":{"identifier":"w3c-software-20021231_5.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"3-seq","rule_length":10,"matched_length":10,"match_coverage":100.0,"rule_relevance":55}}],"license_expressions":["w3c","w3c"],"copyrights":[{"value":"Copyright (c) 2006 World Wide Web Consortium","start_line":2,"end_line":2}],"holders":[{"value":"World Wide Web Consortium","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org/apache/batik/w3c/dom/events/TextEvent.java","type":"file","name":"TextEvent.java","base_name":"TextEvent","extension":".java","size":4007,"date":"2019-10-25","sha1":"7e76758210a911e12786cf589ec3b3836cca3059","md5":"12c7c2439347789516c696bbf3663ebb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"w3c","score":85.48,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":2,"end_line":8,"matched_rule":{"identifier":"w3c_3.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":62,"matched_length":53,"match_coverage":85.48,"rule_relevance":100}},{"key":"w3c","score":55.0,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":10,"end_line":10,"matched_rule":{"identifier":"w3c-software-20021231_5.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"3-seq","rule_length":10,"matched_length":10,"match_coverage":100.0,"rule_relevance":55}}],"license_expressions":["w3c","w3c"],"copyrights":[{"value":"Copyright (c) 2006 World Wide Web Consortium","start_line":2,"end_line":2}],"holders":[{"value":"World Wide Web Consortium","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","start_line":10,"end_line":10},{"url":"http://www.unicode.org/reports/tr15","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org/w3c","type":"directory","name":"w3c","base_name":"w3c","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org/w3c/dom","type":"directory","name":"dom","base_name":"dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":1,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/main/java/org/w3c/dom/events","type":"directory","name":"events","base_name":"events","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ext/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension","type":"directory","name":"batik-extension","base_name":"batik-extension","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":39,"dirs_count":18,"size_count":188562,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":3608,"date":"2019-10-25","sha1":"9b4530d6f66fa7c0267a3487446b0e2f77054714","md5":"f6d116a4fc3bb5a367360dbe13c2a7f4","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-extension","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-extension\nBatik Extension Support","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-anim","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-awt-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-bridge","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-css","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-dom","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-ext","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-gvt","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-parser","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-svg-dom","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/xml-apis/xml-apis-ext","requirement":"${xmlapisext.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-extension@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-extension@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-extension/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-extension/1.12/batik-extension-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-extension/1.12/batik-extension-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":17,"size_count":184954,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":13,"size_count":184954,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":5,"size_count":181846,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":4,"size_count":181846,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":3,"size_count":181846,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":2,"size_count":181846,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension","type":"directory","name":"extension","base_name":"extension","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":1,"size_count":181846,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/ExtensionElement.java","type":"file","name":"ExtensionElement.java","base_name":"ExtensionElement","extension":".java","size":1878,"date":"2019-10-25","sha1":"2035d5882df23ca1442308cebf3c7145847d2562","md5":"3309794b044d622769a3928bbd74fbed","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/GraphicsExtensionElement.java","type":"file","name":"GraphicsExtensionElement.java","base_name":"GraphicsExtensionElement","extension":".java","size":7943,"date":"2019-10-25","sha1":"d9a5ab8a947c7b4ffff213d684c7529cddf68d27","md5":"216c1b2f06ee955ef3168f7ab6aff4cd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":274,"date":"2019-10-25","sha1":"40ac5c20f66bedee74aa420d39b4d9ad11c8a443","md5":"96fbfe3663ff16ea9ede4417eecf38d8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/PrefixableStylableExtensionElement.java","type":"file","name":"PrefixableStylableExtensionElement.java","base_name":"PrefixableStylableExtensionElement","extension":".java","size":2879,"date":"2019-10-25","sha1":"9291c3797e9c77fd8a8380bc83478020d62e5fdf","md5":"f0673ec5b566ff8290b7143202282d5d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/StylableExtensionElement.java","type":"file","name":"StylableExtensionElement.java","base_name":"StylableExtensionElement","extension":".java","size":4898,"date":"2019-10-25","sha1":"b4cb33d3ce9beb2437f62e018bcbb1164f29d254","md5":"010cb16a19c7362c1310741900642be2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg","type":"directory","name":"svg","base_name":"svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":30,"dirs_count":0,"size_count":163974,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/BatikBridgeExtension.java","type":"file","name":"BatikBridgeExtension.java","base_name":"BatikBridgeExtension","extension":".java","size":4490,"date":"2019-10-25","sha1":"fffd03b6ea9c2d780cc6878c9e83f8e018db1caa","md5":"f161ce5c8bb25ea73336441554367031","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":34,"end_line":34},{"email":"deweese@apache.org","start_line":81,"end_line":81}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/batik/ext/poly/1.0","start_line":55,"end_line":55},{"url":"http://xml.apache.org/batik/ext/star/1.0","start_line":56,"end_line":56},{"url":"http://xml.apache.org/batik/ext/histogramNormalization/1.0","start_line":57,"end_line":57},{"url":"http://xml.apache.org/batik/ext/colorSwitch/1.0","start_line":58,"end_line":58},{"url":"http://xml.apache.org/batik/ext/flowText/1.0","start_line":59,"end_line":59},{"url":"http://xml.apache.org/batik","start_line":89,"end_line":89}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/BatikDomExtension.java","type":"file","name":"BatikDomExtension.java","base_name":"BatikDomExtension","extension":".java","size":10071,"date":"2019-10-25","sha1":"6bc23ddb2cf3da872c78f7ed9b57b60efea75225","md5":"ed8bfd938a915f03146cce83532efa32","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":33,"end_line":33},{"email":"deweese@apache.org","start_line":59,"end_line":59}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/batik","start_line":67,"end_line":67}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/BatikExtConstants.java","type":"file","name":"BatikExtConstants.java","base_name":"BatikExtConstants","extension":".java","size":5653,"date":"2019-10-25","sha1":"be0764ae18c9077d4fc59b549779e7a99443e675","md5":"9c5a42f5cc577a8534536077c4026602","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/batik/ext","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/BatikFlowTextElementBridge.java","type":"file","name":"BatikFlowTextElementBridge.java","base_name":"BatikFlowTextElementBridge","extension":".java","size":32449,"date":"2019-10-25","sha1":"340bb0dbfe07b3cc5e5a43223d97cbaea1e8eec6","md5":"fdb5090b71bb0121e5589e44626b184d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":62,"end_line":62}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/BatikHistogramNormalizationElement.java","type":"file","name":"BatikHistogramNormalizationElement.java","base_name":"BatikHistogramNormalizationElement","extension":".java","size":2331,"date":"2019-10-25","sha1":"5306bc065e6b0cc32a7d4fe8d106defb8ea5e219","md5":"4602b3c1e9930238b707db9124c80038","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/BatikHistogramNormalizationElementBridge.java","type":"file","name":"BatikHistogramNormalizationElementBridge.java","base_name":"BatikHistogramNormalizationElementBridge","extension":".java","size":7281,"date":"2019-10-25","sha1":"2c39c59da4b86a4bd010e88832b1016f21935edf","md5":"ff2eba78abcfc860b9b067a20c779743","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/BatikHistogramNormalizationFilter.java","type":"file","name":"BatikHistogramNormalizationFilter.java","base_name":"BatikHistogramNormalizationFilter","extension":".java","size":1568,"date":"2019-10-25","sha1":"416ae2d6c85c1ef3dac75a8d5a9b43d507308c82","md5":"23fd44b6c1b6e29f9c2a775735bbbcab","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/BatikHistogramNormalizationFilter8Bit.java","type":"file","name":"BatikHistogramNormalizationFilter8Bit.java","base_name":"BatikHistogramNormalizationFilter8Bit","extension":".java","size":4466,"date":"2019-10-25","sha1":"a44af51498cdf576b6160baf5341f06eb4052a3b","md5":"2623f8da9a43961860fd169e3cc76cc7","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/BatikRegularPolygonElement.java","type":"file","name":"BatikRegularPolygonElement.java","base_name":"BatikRegularPolygonElement","extension":".java","size":2237,"date":"2019-10-25","sha1":"44c2f63ea4251b01829ef3ed029f10f48233f14d","md5":"4c2a279f1b4705292f7fd7f1426e04c7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/BatikRegularPolygonElementBridge.java","type":"file","name":"BatikRegularPolygonElementBridge.java","base_name":"BatikRegularPolygonElementBridge","extension":".java","size":5577,"date":"2019-10-25","sha1":"9a756d8f09f7f18889c7097dc5634c554384b9f8","md5":"cdb3d4c0df1083e66d0b62cabeb1a463","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/BatikStarElement.java","type":"file","name":"BatikStarElement.java","base_name":"BatikStarElement","extension":".java","size":2151,"date":"2019-10-25","sha1":"82c7e23331fb36b0daba4a02e5a0145119f744c1","md5":"097fb648585ad2cb1065740713553abd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/BatikStarElementBridge.java","type":"file","name":"BatikStarElementBridge.java","base_name":"BatikStarElementBridge","extension":".java","size":6130,"date":"2019-10-25","sha1":"4ac3c15039c9a04166a7876f5911904f438689fe","md5":"06f3e0e9901940da3de7a537071bd544","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/ColorSwitchBridge.java","type":"file","name":"ColorSwitchBridge.java","base_name":"ColorSwitchBridge","extension":".java","size":3533,"date":"2019-10-25","sha1":"1d2351603e33e7ea29cf3e7926cc60690642f6c4","md5":"5b9bdf2f2ff3a3c204ec75e7b06141a3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/ColorSwitchElement.java","type":"file","name":"ColorSwitchElement.java","base_name":"ColorSwitchElement","extension":".java","size":2214,"date":"2019-10-25","sha1":"8b89ebbea5a60ce86d0b4225cf973cd690eff91b","md5":"fc45fb83f58468c01feb62a4fdeb15b6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/FlowDivElement.java","type":"file","name":"FlowDivElement.java","base_name":"FlowDivElement","extension":".java","size":2189,"date":"2019-10-25","sha1":"a31c0d851895ed3dea57009e9a6708d0b6061ba3","md5":"814024a15be8f858b13fce56c6df1c3a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/FlowExtGlyphLayout.java","type":"file","name":"FlowExtGlyphLayout.java","base_name":"FlowExtGlyphLayout","extension":".java","size":24913,"date":"2019-10-25","sha1":"3c62f5e9111388d12bf5c14bc1e30bda070c8b7f","md5":"63c1328c41383109667fb731d1f805f9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/FlowExtTextLayoutFactory.java","type":"file","name":"FlowExtTextLayoutFactory.java","base_name":"FlowExtTextLayoutFactory","extension":".java","size":2191,"date":"2019-10-25","sha1":"f24ea79b5c2199828eddd5ef420bf761cfb01bac","md5":"f8d1723ae6cdb5a79af09f257b3b361b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"dewese@apache.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/FlowExtTextNode.java","type":"file","name":"FlowExtTextNode.java","base_name":"FlowExtTextNode","extension":".java","size":1490,"date":"2019-10-25","sha1":"939cda13b59f91f5cf6c151d11299739ccc1e5b0","md5":"277b8e0150eb091158841777d0c3b45a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/FlowExtTextPainter.java","type":"file","name":"FlowExtTextPainter.java","base_name":"FlowExtTextPainter","extension":".java","size":2806,"date":"2019-10-25","sha1":"07c31297068331cea0c6902ddeff1481015ec18d","md5":"9fab91f3da5d43619bd509d32f42568e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/FlowLineElement.java","type":"file","name":"FlowLineElement.java","base_name":"FlowLineElement","extension":".java","size":2179,"date":"2019-10-25","sha1":"79cbead33901c183c40b6dfa6090a43e8bef218f","md5":"2a82d3795c77ecf6a83492fffee33c95","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/FlowParaElement.java","type":"file","name":"FlowParaElement.java","base_name":"FlowParaElement","extension":".java","size":2179,"date":"2019-10-25","sha1":"67430b73865114f0359f1ada9000f6d5bf7a4424","md5":"b7fb83fddaf9f70e27584c6e0906dc79","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/FlowRegionBreakElement.java","type":"file","name":"FlowRegionBreakElement.java","base_name":"FlowRegionBreakElement","extension":".java","size":2222,"date":"2019-10-25","sha1":"c311c4343c3d05f2d863b9ef0b6639282cebbf8b","md5":"2d9a9a1f4c7c7909f49d29c426ee9939","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/FlowRegionElement.java","type":"file","name":"FlowRegionElement.java","base_name":"FlowRegionElement","extension":".java","size":2207,"date":"2019-10-25","sha1":"eb63907b92985502cd69b3e8abeee8b173dfd358","md5":"293a505240cf7dc059d9a722735ec66b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/FlowSpanElement.java","type":"file","name":"FlowSpanElement.java","base_name":"FlowSpanElement","extension":".java","size":2160,"date":"2019-10-25","sha1":"e12d32198d60d28c297bb25a282c227ac4dbfbee","md5":"c8dac13abbe75a8c787d6a82694eacb1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/FlowTextElement.java","type":"file","name":"FlowTextElement.java","base_name":"FlowTextElement","extension":".java","size":2175,"date":"2019-10-25","sha1":"f24b0ea9fae9501f35e8237342dcbd1190ef3192","md5":"f9dc00da4f8e8c45840e01789722a4a7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/GlyphIterator.java","type":"file","name":"GlyphIterator.java","base_name":"GlyphIterator","extension":".java","size":15251,"date":"2019-10-25","sha1":"0829fd9f34d89f737ee8596d4c50d9faa3c99e60","md5":"e08b17d378f55a85d852d3a48fd3170f","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/HistogramRed.java","type":"file","name":"HistogramRed.java","base_name":"HistogramRed","extension":".java","size":3376,"date":"2019-10-25","sha1":"f3385c69cc81e98b91c97ea34b924ee8d2a06573","md5":"b468a2b2ec854dfeea83a33b956f9872","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/LineInfo.java","type":"file","name":"LineInfo.java","base_name":"LineInfo","extension":".java","size":3781,"date":"2019-10-25","sha1":"f4391cd3c691879822217d0320de3f713861351f","md5":"5b01c1a69a22cf4b68a1b2597657f500","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/MarginInfo.java","type":"file","name":"MarginInfo.java","base_name":"MarginInfo","extension":".java","size":2574,"date":"2019-10-25","sha1":"f181da3b4447491fdafb70f951cf5e37dacf22ff","md5":"6d8242e9735f13b8cd68ed7795c86772","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/java/org/apache/batik/extension/svg/RegionInfo.java","type":"file","name":"RegionInfo.java","base_name":"RegionInfo","extension":".java","size":2130,"date":"2019-10-25","sha1":"8208af40b81633f9b5553424d2c3249e0186a0fc","md5":"68adee8f68c1aef4fc5df5393fcde7bd","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":6,"size_count":3108,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/resources/META-INF","type":"directory","name":"META-INF","base_name":"META-INF","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":1,"size_count":2387,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/resources/META-INF/services","type":"directory","name":"services","base_name":"services","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2387,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/resources/META-INF/services/org.apache.batik.bridge.BridgeExtension","type":"file","name":"org.apache.batik.bridge.BridgeExtension","base_name":"org.apache.batik.bridge","extension":".BridgeExtension","size":1200,"date":"2019-10-25","sha1":"087a4f9969f81c5a21c4e3765cb03b34865b6eaa","md5":"2293b526da46b7cbed3cee70b196d809","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/resources/META-INF/services/org.apache.batik.dom.DomExtension","type":"file","name":"org.apache.batik.dom.DomExtension","base_name":"org.apache.batik.dom","extension":".DomExtension","size":1187,"date":"2019-10-25","sha1":"a3cc22e8a812ff82eb9db103931993f23103cf2e","md5":"59aa3cfc6df90d188b967b922c328b66","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":3,"size_count":721,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":2,"size_count":721,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":721,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/resources/org/apache/batik/extensions","type":"directory","name":"extensions","base_name":"extensions","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":721,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/main/resources/org/apache/batik/extensions/README.txt","type":"file","name":"README.txt","base_name":"README","extension":".txt","size":721,"date":"2019-10-25","sha1":"53e4cbed434a7ec41214af22f7fe9bfb115214fc","md5":"53097218a1bab96a001f13c6302e1902","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-extension/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util","type":"directory","name":"batik-gui-util","base_name":"batik-gui-util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":149,"dirs_count":21,"size_count":298642,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2124,"date":"2019-10-25","sha1":"94b267a3d9cd8f87770564b3b053b2b176dc45a6","md5":"5b5f0340362efce6f0dc36973afcede2","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-gui-util","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-gui-util\nBatik GUI utilities","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-xml","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-gui-util@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-gui-util@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-gui-util/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-gui-util/1.12/batik-gui-util-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-gui-util/1.12/batik-gui-util-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":148,"dirs_count":20,"size_count":296518,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":148,"dirs_count":16,"size_count":296518,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":25,"dirs_count":7,"size_count":204682,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":25,"dirs_count":6,"size_count":204682,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":25,"dirs_count":5,"size_count":204682,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":25,"dirs_count":4,"size_count":204682,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util","type":"directory","name":"util","base_name":"util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":25,"dirs_count":3,"size_count":204682,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui","type":"directory","name":"gui","base_name":"gui","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":25,"dirs_count":2,"size_count":204682,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/CSSMediaPanel.java","type":"file","name":"CSSMediaPanel.java","base_name":"CSSMediaPanel","extension":".java","size":19631,"date":"2019-10-25","sha1":"a4ab665a7fbd5d69e93e74d7a3ba4f65036721ec","md5":"69e8ff9969fd81f1e143ecdf48444af5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":63,"end_line":63}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/DropDownComponent.java","type":"file","name":"DropDownComponent.java","base_name":"DropDownComponent","extension":".java","size":26246,"date":"2019-10-25","sha1":"2786887ea743cc005693b467c3d97fb38ca39912","md5":"9163aefdb8a64f68aed14811518e8dcf","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/ExtendedGridBagConstraints.java","type":"file","name":"ExtendedGridBagConstraints.java","base_name":"ExtendedGridBagConstraints","extension":".java","size":1906,"date":"2019-10-25","sha1":"240f3fd02054b524f41957e1034ff7cd3e2bbe41","md5":"0137e4f685c48efa9b3f981dc58573f0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/JErrorPane.java","type":"file","name":"JErrorPane.java","base_name":"JErrorPane","extension":".java","size":7760,"date":"2019-10-25","sha1":"327938a19a3ddbdd4efaf11b25c333a613224493","md5":"ba5e7540a2f9b3accbd53229dba93135","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":56,"end_line":56}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/LanguageDialog.java","type":"file","name":"LanguageDialog.java","base_name":"LanguageDialog","extension":".java","size":22359,"date":"2019-10-25","sha1":"da55c517d1009da791e6af68884ec4499b5bb340","md5":"0c16fbf11693f9f3a70b1fb08c5db1b1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":57,"end_line":57},{"email":"cjolif@ilog.fr","start_line":58,"end_line":58}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/LocationBar.java","type":"file","name":"LocationBar.java","base_name":"LocationBar","extension":".java","size":3303,"date":"2019-10-25","sha1":"8f2bdb97d6af01382ef0d4c452cc3aa32389f106","md5":"041a09aa82b68b915af9e64c6bb244b0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/MemoryMonitor.java","type":"file","name":"MemoryMonitor.java","base_name":"MemoryMonitor","extension":".java","size":22359,"date":"2019-10-25","sha1":"4909b66d23f2e4f59d3f2b44c837cdf3bc790f4d","md5":"6f02ea997ea6bd770c6984cf0c08902d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":68,"end_line":68}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/URIChooser.java","type":"file","name":"URIChooser.java","base_name":"URIChooser","extension":".java","size":9623,"date":"2019-10-25","sha1":"16c8971ff2c536054009e1e616166382f422033a","md5":"83995058e0183502a2038635c8b24e2a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":52,"end_line":52}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/UserStyleDialog.java","type":"file","name":"UserStyleDialog.java","base_name":"UserStyleDialog","extension":".java","size":10693,"date":"2019-10-25","sha1":"0894dba98603cf2cdcbed78f0e6a6e7404467bd0","md5":"c0cc03ed6bbe0f566116984227d7c615","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":54,"end_line":54}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/resource","type":"directory","name":"resource","base_name":"resource","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":9,"dirs_count":0,"size_count":46281,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/resource/ActionMap.java","type":"file","name":"ActionMap.java","base_name":"ActionMap","extension":".java","size":1412,"date":"2019-10-25","sha1":"26c4622e2b0578fd342f74ae4df068dd6f0cba80","md5":"a28439549892d1e9647f136f243b2515","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/resource/ButtonFactory.java","type":"file","name":"ButtonFactory.java","base_name":"ButtonFactory","extension":".java","size":9923,"date":"2019-10-25","sha1":"e3136f7ae1fe9b3228119f1c02c79a47aecf9fb1","md5":"76f74f7f8722a95c5fe15eac3d64bb1b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":53,"end_line":53}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/resource/JComponentModifier.java","type":"file","name":"JComponentModifier.java","base_name":"JComponentModifier","extension":".java","size":1362,"date":"2019-10-25","sha1":"fc63d088361e265b0ae51a4cc08c8a9eb3fc2cb8","md5":"8fbd9168fee75281ea1e5fab7978fcbb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/resource/JToolbarButton.java","type":"file","name":"JToolbarButton.java","base_name":"JToolbarButton","extension":".java","size":2208,"date":"2019-10-25","sha1":"e4c117ab8d87db4c830f156c3b4541cebcaaec77","md5":"3f44e389413598410d75655cfbecf33d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/resource/JToolbarSeparator.java","type":"file","name":"JToolbarSeparator.java","base_name":"JToolbarSeparator","extension":".java","size":1833,"date":"2019-10-25","sha1":"5aae0fe26ec3a90533f389ffaa7ae2bac2f79111","md5":"0318548a01ace5e890d96ca7ef30fbd4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/resource/JToolbarToggleButton.java","type":"file","name":"JToolbarToggleButton.java","base_name":"JToolbarToggleButton","extension":".java","size":2548,"date":"2019-10-25","sha1":"1ca67dd3d4a507e9b6905886436ff37e1b6917e1","md5":"6a2d28504efc2b7f3fd6bc0296bf93bc","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/resource/MenuFactory.java","type":"file","name":"MenuFactory.java","base_name":"MenuFactory","extension":".java","size":20807,"date":"2019-10-25","sha1":"563236c5fb9553af410006c8b65a061e9dbd6835","md5":"efcf6435d06068f4643d9cf56ed9c8e0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":67,"end_line":67}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/resource/MissingListenerException.java","type":"file","name":"MissingListenerException.java","base_name":"MissingListenerException","extension":".java","size":2255,"date":"2019-10-25","sha1":"4a6b320e90ee9ecb7346c056aafb8d7449489726","md5":"1183df71dbb2710fbe3f9f227773651c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/resource/ToolBarFactory.java","type":"file","name":"ToolBarFactory.java","base_name":"ToolBarFactory","extension":".java","size":3933,"date":"2019-10-25","sha1":"664abcbab47f2bdf3c416f0592fad435ed5b05ad","md5":"a44cc631ef1881454c702c4a9bbdd8f1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/xmleditor","type":"directory","name":"xmleditor","base_name":"xmleditor","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":0,"size_count":34521,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/xmleditor/XMLContext.java","type":"file","name":"XMLContext.java","base_name":"XMLContext","extension":".java","size":6787,"date":"2019-10-25","sha1":"b2ed4bc256b02ff74ac032233f1e69e8e8b57ebc","md5":"4720cfab34bed3d4dd93170a26cc358c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tonny@kiyut.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/xmleditor/XMLDocument.java","type":"file","name":"XMLDocument.java","base_name":"XMLDocument","extension":".java","size":5609,"date":"2019-10-25","sha1":"616e0ccec02fa869071bc9b50f18459d3b24f4fe","md5":"ad66aa4cea5b72a5fdd670d20ec1d959","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tonny@kiyut.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/xmleditor/XMLEditorKit.java","type":"file","name":"XMLEditorKit.java","base_name":"XMLEditorKit","extension":".java","size":3365,"date":"2019-10-25","sha1":"dbedf944011c7ab4322d3876d85f1687f78b25e0","md5":"5d8d63c85ddbde8331a2048031ed7d57","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tonny@kiyut.com","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/xmleditor/XMLScanner.java","type":"file","name":"XMLScanner.java","base_name":"XMLScanner","extension":".java","size":9560,"date":"2019-10-25","sha1":"200fa6aea0fe454e8ebe7debc41267e78c2c146a","md5":"f9aeb5d724b1617d297f413026dd481a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tonny@kiyut.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/xmleditor/XMLTextEditor.java","type":"file","name":"XMLTextEditor.java","base_name":"XMLTextEditor","extension":".java","size":3412,"date":"2019-10-25","sha1":"9e855daaa195cd608f50f246eb7c07b51926dd98","md5":"42ae4ee500ff5fa88e1f511345d2c972","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tonny@kiyut.com","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/xmleditor/XMLToken.java","type":"file","name":"XMLToken.java","base_name":"XMLToken","extension":".java","size":1547,"date":"2019-10-25","sha1":"5917c5751334fc2679a15415d5d44a9f77b839a6","md5":"9b6d82800d5f9368690db5753a4a59a4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tonny@kiyut.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/java/org/apache/batik/util/gui/xmleditor/XMLView.java","type":"file","name":"XMLView.java","base_name":"XMLView","extension":".java","size":4241,"date":"2019-10-25","sha1":"3022606cca81afd5bc90f7ef3a8cc1635772b9ca","md5":"1f642c40536eb80163cafa3a4451c499","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tonny@kiyut.com","start_line":35,"end_line":35},{"email":"3cf75892d60711301037j5abc6760h37ee4491037f1b4a@mail.gmail.com","start_line":112,"end_line":112}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://mail-archives.apache.org/mod_mbox/xmlgraphics-batik-dev/200711.mbox/%3Cf75892d60711301037j5abc6760h37ee4491037f1b4a@mail.gmail.com%3E","start_line":112,"end_line":112}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":123,"dirs_count":7,"size_count":91836,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":123,"dirs_count":6,"size_count":91836,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":123,"dirs_count":5,"size_count":91836,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":123,"dirs_count":4,"size_count":91836,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util","type":"directory","name":"util","base_name":"util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":123,"dirs_count":3,"size_count":91836,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui","type":"directory","name":"gui","base_name":"gui","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":123,"dirs_count":2,"size_count":91836,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":123,"dirs_count":1,"size_count":91836,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/blank.gif","type":"file","name":"blank.gif","base_name":"blank","extension":".gif","size":61,"date":"2019-10-25","sha1":"0e1f1dd9f6fc37d073ef843b8973515104c7ac7a","md5":"4369f8bbf33ed5248870c7ccb000d77a","mime_type":"image/gif","file_type":"GIF image data, version 89a, 22 x 22","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/CSSMediaPanel.properties","type":"file","name":"CSSMediaPanel.properties","base_name":"CSSMediaPanel","extension":".properties","size":1757,"date":"2019-10-25","sha1":"d653f4b232f3275cbc3d017555a638aa412e160a","md5":"c16f81bd3cbe89cebbdf284b8c16b6a2","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/JErrorPane.properties","type":"file","name":"JErrorPane.properties","base_name":"JErrorPane","extension":".properties","size":1375,"date":"2019-10-25","sha1":"4115d670d572727a1dbd762e606eed18d4d0e865","md5":"c498e53c02acd41e1a28db0bd454e357","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/LanguageDialogMessages.properties","type":"file","name":"LanguageDialogMessages.properties","base_name":"LanguageDialogMessages","extension":".properties","size":11419,"date":"2019-10-25","sha1":"2585a472c68136ac69ab9a4268249f9974fbc3fb","md5":"512ca935a6d82d12920183b7ca8a7d21","mime_type":"text/plain","file_type":"ASCII text, with very long lines","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/LocationBar.properties","type":"file","name":"LocationBar.properties","base_name":"LocationBar","extension":".properties","size":1170,"date":"2019-10-25","sha1":"bde235ed48bbb80e6b5d7e5be07287894ceea4ca","md5":"569f600ef6cd599aee94ecd4f711d2bb","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"stephane@hillion.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/MemoryMonitorMessages.properties","type":"file","name":"MemoryMonitorMessages.properties","base_name":"MemoryMonitorMessages","extension":".properties","size":1582,"date":"2019-10-25","sha1":"90a7d8f48e69930851c84a6b2e3b295b8cc1ee4b","md5":"079751215dcb265bc73b1d21ab093548","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/ScrollablePopupMenuMessages.properties","type":"file","name":"ScrollablePopupMenuMessages.properties","base_name":"ScrollablePopupMenuMessages","extension":".properties","size":1184,"date":"2019-10-25","sha1":"e112a0a160306e4d5995634b7a23f0367f9c5cc8","md5":"a8c038102fe6bbc1c65e9c40d67b0bce","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/text-html.png","type":"file","name":"text-html.png","base_name":"text-html","extension":".png","size":1097,"date":"2019-10-25","sha1":"b75ed0f9611dc6e475adc6ebe51efaf75e7fe9db","md5":"6b7ddcbed42dcb8fac65e79aa4381cc3","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/URIChooserMessages.properties","type":"file","name":"URIChooserMessages.properties","base_name":"URIChooserMessages","extension":".properties","size":1567,"date":"2019-10-25","sha1":"8ea9b9ef2f77f4db347e3cfb2dac41a41e3e824e","md5":"48f458ef559d1ef82801aff6628e80f7","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"stephane@hillion.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/UserStyleDialog.properties","type":"file","name":"UserStyleDialog.properties","base_name":"UserStyleDialog","extension":".properties","size":1736,"date":"2019-10-25","sha1":"94c713e2f7489b12c617e8c37650fa7d6660bfd4","md5":"052e20a33d0700d959f3aceafa4cadab","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"stephane@hillion.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags","type":"directory","name":"flags","base_name":"flags","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":113,"dirs_count":0,"size_count":68888,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_aa.gif","type":"file","name":"flag_aa.gif","base_name":"flag_aa","extension":".gif","size":902,"date":"2019-10-25","sha1":"68085ea80ee244dfbea0103ebc9c17a09be6f892","md5":"f83ef3b095809c349c69e5a6219d3df1","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ab.gif","type":"file","name":"flag_ab.gif","base_name":"flag_ab","extension":".gif","size":916,"date":"2019-10-25","sha1":"a89fd530dad2b06508b4948236eb6a8ac076e59e","md5":"6c7d3af28de8826c73d5c6cc74c9aa40","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_af.gif","type":"file","name":"flag_af.gif","base_name":"flag_af","extension":".gif","size":960,"date":"2019-10-25","sha1":"4edbf13d2672944f00a59dfe1808e2a7dd13e01c","md5":"54dc0d6d764007a9d9cd10519d678bae","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ar.gif","type":"file","name":"flag_ar.gif","base_name":"flag_ar","extension":".gif","size":923,"date":"2019-10-25","sha1":"b0d9a1e5b919194fe4b3dedea8ab44445602ea2e","md5":"293caa3fe230bcd020eed1f7df2b4136","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_as.gif","type":"file","name":"flag_as.gif","base_name":"flag_as","extension":".gif","size":887,"date":"2019-10-25","sha1":"40fca5c2b7779008352caceedb62040862683c80","md5":"5f6de193cf8e5f6e653de53c61f56480","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ay.gif","type":"file","name":"flag_ay.gif","base_name":"flag_ay","extension":".gif","size":130,"date":"2019-10-25","sha1":"68d3c07d3ffa6a5129e71903d6044b65953ded98","md5":"79e8703c68c9839071143032f2a4f5ea","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_az.gif","type":"file","name":"flag_az.gif","base_name":"flag_az","extension":".gif","size":893,"date":"2019-10-25","sha1":"7025bb1425f97abbbb1983469b620e222e43ee0c","md5":"2fad260e09d95504177d360f5d797a9e","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_be.gif","type":"file","name":"flag_be.gif","base_name":"flag_be","extension":".gif","size":900,"date":"2019-10-25","sha1":"5f83ac67a760421be53536ec464e23f83a4ef983","md5":"a67ffbc655778397575e7db5aba614ed","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_bg.gif","type":"file","name":"flag_bg.gif","base_name":"flag_bg","extension":".gif","size":114,"date":"2019-10-25","sha1":"d8b70160e968d18bfe5980c2ad70d751df5a937f","md5":"f0349707e77dd3fe4dfb34e090876ff5","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_bi.gif","type":"file","name":"flag_bi.gif","base_name":"flag_bi","extension":".gif","size":953,"date":"2019-10-25","sha1":"9f16502efbc2a20231c1df2b8c4d55100c07195b","md5":"7b2bb1a2e89c9853a0edcab8bb01ee3d","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_blank.gif","type":"file","name":"flag_blank.gif","base_name":"flag_blank","extension":".gif","size":56,"date":"2019-10-25","sha1":"433f997129adec4485f6f95fa4588c43dca73aa4","md5":"10d8aa5d52cd588a4bbc419e6af3af1b","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_bn.gif","type":"file","name":"flag_bn.gif","base_name":"flag_bn","extension":".gif","size":892,"date":"2019-10-25","sha1":"653283c31a9825a4026f4d81f85a80c440decb98","md5":"90e4e1e6ecbe71c490443c7ffcef0ce0","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_bo.gif","type":"file","name":"flag_bo.gif","base_name":"flag_bo","extension":".gif","size":1070,"date":"2019-10-25","sha1":"8b7daeb937cfce44d7a0ca45aeba3247d2ede9af","md5":"7488bdfd216a3656ef62d7d37f9ab974","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_br.gif","type":"file","name":"flag_br.gif","base_name":"flag_br","extension":".gif","size":82,"date":"2019-10-25","sha1":"bd4cac735bffd06ede123f5a827296c6b03c669e","md5":"e8c11b152ea04e83afb63bc06ff90f43","mime_type":"image/gif","file_type":"GIF image data, version 87a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_C.gif","type":"file","name":"flag_C.gif","base_name":"flag_C","extension":".gif","size":68,"date":"2019-10-25","sha1":"fa55eb01aa9ff873441212c257618648d06c87f7","md5":"4cf4b73a19fcf0eec1231dcc07a6a14a","mime_type":"image/gif","file_type":"GIF image data, version 87a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ca.gif","type":"file","name":"flag_ca.gif","base_name":"flag_ca","extension":".gif","size":77,"date":"2019-10-25","sha1":"02812fd8bfe4d2c72b49c29994d63e87c57018fd","md5":"5bc36616b8d7c60b269a5af9f96ae9de","mime_type":"image/gif","file_type":"GIF image data, version 87a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ch.gif","type":"file","name":"flag_ch.gif","base_name":"flag_ch","extension":".gif","size":158,"date":"2019-10-25","sha1":"47b240f325670ff0e1f3a29a06f1b9b541c6b7ba","md5":"10f3c2da6004dbdf97c667f32ea4196d","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_co.gif","type":"file","name":"flag_co.gif","base_name":"flag_co","extension":".gif","size":950,"date":"2019-10-25","sha1":"a3108cd343fd94b222444dc774ab6e8c144b062c","md5":"31c6329a4a24d53cbe9746fc3fb5ee58","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_cs.gif","type":"file","name":"flag_cs.gif","base_name":"flag_cs","extension":".gif","size":892,"date":"2019-10-25","sha1":"c67735779b347a0e5cc403056079e73a61e2257d","md5":"028d311ed5d4d25af7aef0308ff02469","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_cy.gif","type":"file","name":"flag_cy.gif","base_name":"flag_cy","extension":".gif","size":1043,"date":"2019-10-25","sha1":"ca7abf49881614f2007659e76638e7614aa592cd","md5":"142ba7e6ecddf2958c23d92539b92a80","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_da.gif","type":"file","name":"flag_da.gif","base_name":"flag_da","extension":".gif","size":134,"date":"2019-10-25","sha1":"88cf58a392130cdbb6b69b520b444229808af5e4","md5":"475a993e61a49da544248525431fdf16","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_de.gif","type":"file","name":"flag_de.gif","base_name":"flag_de","extension":".gif","size":125,"date":"2019-10-25","sha1":"656c8f706e6b2dad3298d48628587b90e91ee5af","md5":"933f2d47639b0b0c9f039802a6a170d2","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_dz.gif","type":"file","name":"flag_dz.gif","base_name":"flag_dz","extension":".gif","size":956,"date":"2019-10-25","sha1":"68e1cf4ad61a93d7d4199492b2b957692ebd3f96","md5":"f66002d7ad50b310505c4d2457bc25d5","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_el.gif","type":"file","name":"flag_el.gif","base_name":"flag_el","extension":".gif","size":129,"date":"2019-10-25","sha1":"f45dd1eb23bf0481b9d2ee6f587816fafc869d6d","md5":"d86b067609a73fc8106b16878f95991f","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_en.gif","type":"file","name":"flag_en.gif","base_name":"flag_en","extension":".gif","size":80,"date":"2019-10-25","sha1":"97ae1dce269e072a0232efb23a6a6c563bd8ca40","md5":"7fd9f4e72c775556af52385c2b4c765d","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_en_UK.gif","type":"file","name":"flag_en_UK.gif","base_name":"flag_en_UK","extension":".gif","size":994,"date":"2019-10-25","sha1":"b400e158a7d4e64f266a4ea037dcbc429508eb39","md5":"f59454e8fc55c1266346bad9e61855c7","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_eo.gif","type":"file","name":"flag_eo.gif","base_name":"flag_eo","extension":".gif","size":123,"date":"2019-10-25","sha1":"bef463942e797be94f15976cc4ab2ae6e76cee21","md5":"1da9a6395434e2af4e59c4a201590bef","mime_type":"image/gif","file_type":"GIF image data, version 87a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_es.gif","type":"file","name":"flag_es.gif","base_name":"flag_es","extension":".gif","size":887,"date":"2019-10-25","sha1":"ef2b298aee13a2b7f3eafb2a0678dfe532fea523","md5":"8af64a3511b1cb54ba84fef89497d4e5","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_et.gif","type":"file","name":"flag_et.gif","base_name":"flag_et","extension":".gif","size":107,"date":"2019-10-25","sha1":"f482061d96f7eeb97356177382c3a96cdc8fc644","md5":"9b044aa609f6ec302401580ed5215794","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_eu.gif","type":"file","name":"flag_eu.gif","base_name":"flag_eu","extension":".gif","size":1007,"date":"2019-10-25","sha1":"a7e1cc4c48b739d39461a08688f568505ae1075b","md5":"4a50b5d0f27d840f160e32b18ee1800d","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_fa.gif","type":"file","name":"flag_fa.gif","base_name":"flag_fa","extension":".gif","size":929,"date":"2019-10-25","sha1":"22dd30b96cdafe71e7cc5fe1b58271c76476d2a7","md5":"728c50295b64be8a5bc532ac6c66fd0d","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_fi.gif","type":"file","name":"flag_fi.gif","base_name":"flag_fi","extension":".gif","size":139,"date":"2019-10-25","sha1":"65fe3776d41c9df4e9d85771d2c3259b9869fb9e","md5":"496befbf7789959bd0b4abb4a2634383","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_fj.gif","type":"file","name":"flag_fj.gif","base_name":"flag_fj","extension":".gif","size":947,"date":"2019-10-25","sha1":"bddeaa30763410e416c43b803ce8b5fa6cab053e","md5":"4b1acd8c43b18be0b223eaaa16bb7222","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_fo.gif","type":"file","name":"flag_fo.gif","base_name":"flag_fo","extension":".gif","size":155,"date":"2019-10-25","sha1":"b303e23a81aa463c443f3bbce6cf89a1634e6e61","md5":"9ce475c969df67335d5540f40ba1b880","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_fr.gif","type":"file","name":"flag_fr.gif","base_name":"flag_fr","extension":".gif","size":136,"date":"2019-10-25","sha1":"892f3340ef7a893f2d168f5273016ba0c16d9c3d","md5":"5fb92bb1f06de81730f2ab22dd4ac212","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_fr_CA.gif","type":"file","name":"flag_fr_CA.gif","base_name":"flag_fr_CA","extension":".gif","size":927,"date":"2019-10-25","sha1":"7419b718b407de5d44cccc62cb11ed3cbf0f4fcf","md5":"1a0c414f6bde2a6182e53e482c222720","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ga.gif","type":"file","name":"flag_ga.gif","base_name":"flag_ga","extension":".gif","size":149,"date":"2019-10-25","sha1":"01634031175379eb46d8a1cd9787291704e7c233","md5":"42b6d1f159e18263f1ca36500a7dd8ec","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_gd.gif","type":"file","name":"flag_gd.gif","base_name":"flag_gd","extension":".gif","size":984,"date":"2019-10-25","sha1":"e5ce1facfa9a9f0f21ffb22feba543a142899c74","md5":"66aa4fda9ef5dd966ffe02e401fe3f0a","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_gn.gif","type":"file","name":"flag_gn.gif","base_name":"flag_gn","extension":".gif","size":883,"date":"2019-10-25","sha1":"d0704d4f7ee5bfceff570e1ae43201b171335c05","md5":"3b96f77eb32dfb8b7f28eba48f1f10c9","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ha.gif","type":"file","name":"flag_ha.gif","base_name":"flag_ha","extension":".gif","size":141,"date":"2019-10-25","sha1":"8ba3d1703123ada0ffb9d0050e9892eb06fd6849","md5":"65217411dd98f4d05f5d14f634a9b0fc","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_he.gif","type":"file","name":"flag_he.gif","base_name":"flag_he","extension":".gif","size":937,"date":"2019-10-25","sha1":"a4cc4ff2ed6beee113c6670e63099b12a25d4c21","md5":"b338f206c09b450f1812926fad4ef486","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_hr.gif","type":"file","name":"flag_hr.gif","base_name":"flag_hr","extension":".gif","size":918,"date":"2019-10-25","sha1":"e16b354ab3aa561aa330b6953943ee3482169c15","md5":"d0a4755cda9d231d5b01b85073eba793","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_hu.gif","type":"file","name":"flag_hu.gif","base_name":"flag_hu","extension":".gif","size":114,"date":"2019-10-25","sha1":"9783640666ebad64c32f6753090dd3182aa1abea","md5":"fbed4bede3faaedc68aab80c1c66a1da","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_hy.gif","type":"file","name":"flag_hy.gif","base_name":"flag_hy","extension":".gif","size":130,"date":"2019-10-25","sha1":"45188e2f149d643ce1dd12fc2e0f83ed6054acef","md5":"00b32f0fc105ee1ee5553d69ea828d68","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ij.gif","type":"file","name":"flag_ij.gif","base_name":"flag_ij","extension":".gif","size":502,"date":"2019-10-25","sha1":"e968b53c2f8d79afcaec44a46ee1e0c4831993be","md5":"bf931adb0f88ad90b38ddbb70eeb6e2b","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_in.gif","type":"file","name":"flag_in.gif","base_name":"flag_in","extension":".gif","size":68,"date":"2019-10-25","sha1":"bb3f7114b49d28085e3ede28101c5ea9798453d2","md5":"2597b1351c086055a5d2f478030f6a4a","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_is.gif","type":"file","name":"flag_is.gif","base_name":"flag_is","extension":".gif","size":155,"date":"2019-10-25","sha1":"40fb0c4c7bf7f06bc0a3bb6c7397934865f6f5bc","md5":"b12f8bfa5933c3ac9c8bc88f20bef30f","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_it.gif","type":"file","name":"flag_it.gif","base_name":"flag_it","extension":".gif","size":139,"date":"2019-10-25","sha1":"a8062e66b0947fdaa6dc75797be113c7c530de0e","md5":"646c556161adc535eff3a69e91c56f75","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ja.gif","type":"file","name":"flag_ja.gif","base_name":"flag_ja","extension":".gif","size":879,"date":"2019-10-25","sha1":"4549aa243fa9833e01a1aa005544c573772ce394","md5":"44a0d01e1173c52808d79e0b45e2a2ef","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ka.gif","type":"file","name":"flag_ka.gif","base_name":"flag_ka","extension":".gif","size":118,"date":"2019-10-25","sha1":"0a95af40af5c998682aac3a51478063e12702db4","md5":"d9c5d758b08149d87cdaa942ff941b90","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_kk.gif","type":"file","name":"flag_kk.gif","base_name":"flag_kk","extension":".gif","size":932,"date":"2019-10-25","sha1":"56c7cd0605579b91540bedb8f8b01919db23d526","md5":"2210fdfba14687879e8d05dcea050973","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_kl.gif","type":"file","name":"flag_kl.gif","base_name":"flag_kl","extension":".gif","size":903,"date":"2019-10-25","sha1":"eef3a3eca3474d1000e1f7eefb75044119a6c719","md5":"e43fd6dc7e054b5c9db8685e89a0658a","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_km.gif","type":"file","name":"flag_km.gif","base_name":"flag_km","extension":".gif","size":916,"date":"2019-10-25","sha1":"11b03838c97c2f93f0bb7a96efaa68829dbe2c38","md5":"50de94a96b38c8fd09c491a17f8fef1b","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ko.gif","type":"file","name":"flag_ko.gif","base_name":"flag_ko","extension":".gif","size":966,"date":"2019-10-25","sha1":"e2b25a82df2d2b552df1df0a9a3b6bde0e0a97a6","md5":"23d50cfdf797433ae5a63140b51a833b","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ku.gif","type":"file","name":"flag_ku.gif","base_name":"flag_ku","extension":".gif","size":999,"date":"2019-10-25","sha1":"a76798c26fe6f8bfbc3155b5e131b9fbe1f9dbf8","md5":"7e0ca648c961435e50e069d71a9c57e5","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ky.gif","type":"file","name":"flag_ky.gif","base_name":"flag_ky","extension":".gif","size":911,"date":"2019-10-25","sha1":"7ff595af17f00ad3cc8e4743397a564125351f52","md5":"00677a4610479186501a70e05ad69fa0","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_la.gif","type":"file","name":"flag_la.gif","base_name":"flag_la","extension":".gif","size":934,"date":"2019-10-25","sha1":"a07ddd9abba9b1f4cb912b2cafa0481f12d6f15a","md5":"518f90ce6ce79d7e28f2b0bc858bf42d","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ln.gif","type":"file","name":"flag_ln.gif","base_name":"flag_ln","extension":".gif","size":138,"date":"2019-10-25","sha1":"1614885007ef7c5b5755ca02379bb9ae28a64473","md5":"73bc64696656e0377313d2d39ec9d6fc","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_lo.gif","type":"file","name":"flag_lo.gif","base_name":"flag_lo","extension":".gif","size":882,"date":"2019-10-25","sha1":"556c20c486ad814f7575325b586458fa448f7552","md5":"4fa4919249d40b672274effcbf6ca53f","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_lt.gif","type":"file","name":"flag_lt.gif","base_name":"flag_lt","extension":".gif","size":130,"date":"2019-10-25","sha1":"10eaba9e16abd33da66f80541dca6d8de99a5c3d","md5":"eae8d1d4c10df4459cae11ac72af9df8","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_lv.gif","type":"file","name":"flag_lv.gif","base_name":"flag_lv","extension":".gif","size":151,"date":"2019-10-25","sha1":"d9450ac40f5bacc4fa1cf435279522c000722c70","md5":"b99955defe97931cd350640348efad98","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_mg.gif","type":"file","name":"flag_mg.gif","base_name":"flag_mg","extension":".gif","size":138,"date":"2019-10-25","sha1":"b539ea130133c33b76bfa746f52d8fbfad2b1f3f","md5":"f66deeb3a6f268b92b4218e67d1ad3df","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_mi.gif","type":"file","name":"flag_mi.gif","base_name":"flag_mi","extension":".gif","size":943,"date":"2019-10-25","sha1":"16a7aa1ee6c884292fe1ad9ac63c71409b9581aa","md5":"db974e1d1daefcf0517345df42d13414","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_mk.gif","type":"file","name":"flag_mk.gif","base_name":"flag_mk","extension":".gif","size":1022,"date":"2019-10-25","sha1":"78d0d18a07d4fc88e4a1ca29f3446647994fa078","md5":"4d46cde5e4a3f5982a53008ef874fe2c","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_mn.gif","type":"file","name":"flag_mn.gif","base_name":"flag_mn","extension":".gif","size":928,"date":"2019-10-25","sha1":"7cdd59370e65fbd521f2c9140791569d82926272","md5":"541d03fc231ac10dc981bc2e09439b64","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_mo.gif","type":"file","name":"flag_mo.gif","base_name":"flag_mo","extension":".gif","size":938,"date":"2019-10-25","sha1":"b1c38b697a67138086ffad27cb9f0db3d313dc3b","md5":"9ae655410f32a7648bf0108ee9fbf56f","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ms.gif","type":"file","name":"flag_ms.gif","base_name":"flag_ms","extension":".gif","size":942,"date":"2019-10-25","sha1":"b5134e6003a17854900d99a036fd907d9076a8b7","md5":"04c6febabb9a37dd742ba6693ee5cda6","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_mt.gif","type":"file","name":"flag_mt.gif","base_name":"flag_mt","extension":".gif","size":882,"date":"2019-10-25","sha1":"59573c7345b0e011d3ce0c7f3f4fdca57b8f7de9","md5":"83264518e55a89316db8676889167e93","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_my.gif","type":"file","name":"flag_my.gif","base_name":"flag_my","extension":".gif","size":893,"date":"2019-10-25","sha1":"893100a3f774af5b2927983b711443cc4260f590","md5":"5f8a6aabaa0b7c9162c59defd7a50eae","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_na.gif","type":"file","name":"flag_na.gif","base_name":"flag_na","extension":".gif","size":129,"date":"2019-10-25","sha1":"c6980cfc82e04256ffaf8b669cf2e149f43c81e8","md5":"58afb5be108e9aa5a41721b7f80c5dad","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ne.gif","type":"file","name":"flag_ne.gif","base_name":"flag_ne","extension":".gif","size":536,"date":"2019-10-25","sha1":"8540688ddbb789c6e3ccf1ec34df5ff5346ee807","md5":"4462ac5eab8a920608aec1245279b11b","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_nl.gif","type":"file","name":"flag_nl.gif","base_name":"flag_nl","extension":".gif","size":114,"date":"2019-10-25","sha1":"fb8e226ec8b7862c58f7b4b96a48602a77b543a8","md5":"9853be700c9d7fd1957c7cb5a2b57e99","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_no.gif","type":"file","name":"flag_no.gif","base_name":"flag_no","extension":".gif","size":155,"date":"2019-10-25","sha1":"a45fc35cbcfa3470554cf8dfdabec3dbcf8eba40","md5":"d78e92cf27878fc207a04a474686f8b5","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_or.gif","type":"file","name":"flag_or.gif","base_name":"flag_or","extension":".gif","size":322,"date":"2019-10-25","sha1":"a784e080c5f1897b4bb2a02d03fd5cc55e69c979","md5":"5e5170981048ff29b256b65796db3f80","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_pl.gif","type":"file","name":"flag_pl.gif","base_name":"flag_pl","extension":".gif","size":65,"date":"2019-10-25","sha1":"54e5c2991d93ed5db33f230700168a599bb1c538","md5":"afb7d463b49d394fc01610d3add93899","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ps.gif","type":"file","name":"flag_ps.gif","base_name":"flag_ps","extension":".gif","size":928,"date":"2019-10-25","sha1":"d3891bae462458abd9f462e0ec84af1d7b493df4","md5":"b102308f66ff7630df40661c5c43e1b1","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_pt.gif","type":"file","name":"flag_pt.gif","base_name":"flag_pt","extension":".gif","size":925,"date":"2019-10-25","sha1":"381aae9bea76c66204148dea0e12f48e622e333c","md5":"aa7924418a8df709bb7e0cb110304e12","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_pt_BR.gif","type":"file","name":"flag_pt_BR.gif","base_name":"flag_pt_BR","extension":".gif","size":982,"date":"2019-10-25","sha1":"869584da951bc62abde97f33a69524c9c5a945e1","md5":"e43696fa881cf745b52e9b0a120b71d9","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_qu.gif","type":"file","name":"flag_qu.gif","base_name":"flag_qu","extension":".gif","size":114,"date":"2019-10-25","sha1":"3a2744e7603d553aa5bf7fb85e3bd0e67650483c","md5":"309108e4e74cf31b38b48984c9dc960f","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_rn.gif","type":"file","name":"flag_rn.gif","base_name":"flag_rn","extension":".gif","size":998,"date":"2019-10-25","sha1":"43089e5d612c6be58f80c21baa4c5cec33ec4576","md5":"3982a604472845cbcb03456affdde52d","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ro.gif","type":"file","name":"flag_ro.gif","base_name":"flag_ro","extension":".gif","size":139,"date":"2019-10-25","sha1":"5c0cb2211945bf2ea97841fc5a5011e39f59b9e9","md5":"f64a629366bea767cfb84cde54e0a71f","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ru.gif","type":"file","name":"flag_ru.gif","base_name":"flag_ru","extension":".gif","size":114,"date":"2019-10-25","sha1":"4dd729bce928035bff56b39ec8eeab8c2e797736","md5":"cef584942f5104838ab942dfab1cf5e2","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_rw.gif","type":"file","name":"flag_rw.gif","base_name":"flag_rw","extension":".gif","size":919,"date":"2019-10-25","sha1":"13096ea1be04e955d0526bd14a8a437b4c78daad","md5":"9b3a2111e0654468866509a5011fffbf","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_se.gif","type":"file","name":"flag_se.gif","base_name":"flag_se","extension":".gif","size":164,"date":"2019-10-25","sha1":"0818333a58fe46a05a0ec6f7c39e3c933eafa3b3","md5":"6d5247e58aec73876864d206f0d4fa23","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_si.gif","type":"file","name":"flag_si.gif","base_name":"flag_si","extension":".gif","size":941,"date":"2019-10-25","sha1":"6ed9a1ed2ad4b42965430097c901ff14a7e66903","md5":"5f7b914df3043050cf9a8d5b35711b69","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_sk.gif","type":"file","name":"flag_sk.gif","base_name":"flag_sk","extension":".gif","size":911,"date":"2019-10-25","sha1":"a1dd98067e603ce86cb123bd828223a4984374b4","md5":"ddf999104c9b4cb9af3fbd82a75986e1","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_sl.gif","type":"file","name":"flag_sl.gif","base_name":"flag_sl","extension":".gif","size":895,"date":"2019-10-25","sha1":"275f35854f76903adca519cd0d5c29b39b46c270","md5":"b49a505b132af7b6d948b65af07d6260","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_sm.gif","type":"file","name":"flag_sm.gif","base_name":"flag_sm","extension":".gif","size":886,"date":"2019-10-25","sha1":"b778d69b88111970894d8c6daff0dda1382f997a","md5":"3765692da2866ceb4b84948efa6a4411","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_so.gif","type":"file","name":"flag_so.gif","base_name":"flag_so","extension":".gif","size":897,"date":"2019-10-25","sha1":"87504b26c127c151085519530aecb47fa3b2a424","md5":"28f87da4ce0a0f46167328d0d6bce88c","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_sq.gif","type":"file","name":"flag_sq.gif","base_name":"flag_sq","extension":".gif","size":945,"date":"2019-10-25","sha1":"5678faeb68c956d6e5b578ae986780447db6e01f","md5":"d1903a4bfca330685b6326a4ca1fb5fe","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_sr.gif","type":"file","name":"flag_sr.gif","base_name":"flag_sr","extension":".gif","size":130,"date":"2019-10-25","sha1":"80a4c892283622bba206ac56a1faf8f3b77687de","md5":"c7bb335fd79d1199a01d8d8f618e3228","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ss.gif","type":"file","name":"flag_ss.gif","base_name":"flag_ss","extension":".gif","size":959,"date":"2019-10-25","sha1":"c29111bcca2f6925dd3a11bf971906c3c08bed9b","md5":"bfc0a1de90355d763139af0a89d1023f","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_st.gif","type":"file","name":"flag_st.gif","base_name":"flag_st","extension":".gif","size":962,"date":"2019-10-25","sha1":"4e2f3bab2c7e4e0e9ca2cb1a90e2cbbf30fed1fd","md5":"6757579a1a891954e7de96944355373c","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_sv.gif","type":"file","name":"flag_sv.gif","base_name":"flag_sv","extension":".gif","size":129,"date":"2019-10-25","sha1":"f6663969614bbdd3359d024c80a49fc2f0a8c320","md5":"f20283cf04f4cf507f63e8d50ccbef01","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_sw.gif","type":"file","name":"flag_sw.gif","base_name":"flag_sw","extension":".gif","size":944,"date":"2019-10-25","sha1":"a7f9dd20e10804c107aa2591b033a08a54cd4672","md5":"5f7d4b70accb878166434ae859aef547","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_tg.gif","type":"file","name":"flag_tg.gif","base_name":"flag_tg","extension":".gif","size":896,"date":"2019-10-25","sha1":"7db8d6c1d57536fce706f06fcd3b2435ff46f115","md5":"27420440787be4afb06767e4d61a1cbf","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_th.gif","type":"file","name":"flag_th.gif","base_name":"flag_th","extension":".gif","size":121,"date":"2019-10-25","sha1":"4b7559652120c0a415dac3ee3714940b89c73e47","md5":"5f8df75742c6d05abddfa8284a62a3e3","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_tk.gif","type":"file","name":"flag_tk.gif","base_name":"flag_tk","extension":".gif","size":926,"date":"2019-10-25","sha1":"82cc597d6f8cb739a1c3e313eb0db86e3cf71cb4","md5":"5b5b6ae8dde224c05d57c58ef8615e5d","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_tl.gif","type":"file","name":"flag_tl.gif","base_name":"flag_tl","extension":".gif","size":926,"date":"2019-10-25","sha1":"00f2a0f94ad3cb458bb30da807006b9729c16375","md5":"23dcfa5ba0cfcc7665da526db4aa8272","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_tn.gif","type":"file","name":"flag_tn.gif","base_name":"flag_tn","extension":".gif","size":107,"date":"2019-10-25","sha1":"3e9e82e42346a568e73a9e5d54a8fd22cb731084","md5":"bae56a75cba76f681358cec525ce14d9","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_to.gif","type":"file","name":"flag_to.gif","base_name":"flag_to","extension":".gif","size":886,"date":"2019-10-25","sha1":"36d1523a542d158c9b2a403fdc1b4ac697e1ced2","md5":"68808af7014392178022094e9f6fa18d","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_tr.gif","type":"file","name":"flag_tr.gif","base_name":"flag_tr","extension":".gif","size":883,"date":"2019-10-25","sha1":"5f350fad0fa7f5e63bfa1dc10fd8b3b75a0f883a","md5":"7833013822e37e1cfbbd795c40296010","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_ts.gif","type":"file","name":"flag_ts.gif","base_name":"flag_ts","extension":".gif","size":932,"date":"2019-10-25","sha1":"cb848359f33b26fd7a9fbe0fea2b982a97886a30","md5":"729b3548ccf5686ada9bf1bb7a25e7af","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_tw.gif","type":"file","name":"flag_tw.gif","base_name":"flag_tw","extension":".gif","size":881,"date":"2019-10-25","sha1":"7d6c6f78aacbec38a9f051c4addc652fdf4403cf","md5":"4db7062afae750e8373566ce12d96a99","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_uk.gif","type":"file","name":"flag_uk.gif","base_name":"flag_uk","extension":".gif","size":109,"date":"2019-10-25","sha1":"d9fcdf26e9e76edf7391bbf02732ad4ab617b6f8","md5":"88412f7a8bfde14a402fda35bcc6b55b","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_us_eu.gif","type":"file","name":"flag_us_eu.gif","base_name":"flag_us_eu","extension":".gif","size":119,"date":"2019-10-25","sha1":"aa0474173fcacd0df59b277b33613b88e079a51f","md5":"a5cede3c7fd7ea400846c77ade93eed0","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_uz.gif","type":"file","name":"flag_uz.gif","base_name":"flag_uz","extension":".gif","size":902,"date":"2019-10-25","sha1":"a365d838c4df3eb5395d7c4641a16b7e2fb0aa5e","md5":"df781be55cfaa054e21339ef68f85e3d","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_vi.gif","type":"file","name":"flag_vi.gif","base_name":"flag_vi","extension":".gif","size":883,"date":"2019-10-25","sha1":"ca491e50a2ce0299b1eb024f7daadac30f9cb4c0","md5":"765922312a2584c820f54c65477f4261","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_vo.gif","type":"file","name":"flag_vo.gif","base_name":"flag_vo","extension":".gif","size":948,"date":"2019-10-25","sha1":"96b054c42b635c2c75a3806dc142d8c4fbcb8049","md5":"3c7c68b5f0ec8efcfc01a081db2f6cd9","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_wo.gif","type":"file","name":"flag_wo.gif","base_name":"flag_wo","extension":".gif","size":121,"date":"2019-10-25","sha1":"7d9501c0c95441ca17ae718ac48b090c4bffc8a6","md5":"2e16e0f83ab12eb613800ac05c250f40","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_xh.gif","type":"file","name":"flag_xh.gif","base_name":"flag_xh","extension":".gif","size":905,"date":"2019-10-25","sha1":"b27672289a6c3efc774d6c9d2f772c4620fc68ef","md5":"6ba9359263963b6ef4ab6f06b9131f8a","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_zh.gif","type":"file","name":"flag_zh.gif","base_name":"flag_zh","extension":".gif","size":869,"date":"2019-10-25","sha1":"bbe6ce17fd9528ee29fa94d92d0df0a0c95a570a","md5":"c8871b1632717f2d669804a24ef33a26","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/main/resources/org/apache/batik/util/gui/resources/flags/flag_zu.gif","type":"file","name":"flag_zu.gif","base_name":"flag_zu","extension":".gif","size":965,"date":"2019-10-25","sha1":"63b7dc7be9a747f43b36b180957ce422c349454b","md5":"61119b7fb20b4f23690d8a5c5f2c9165","mime_type":"image/gif","file_type":"GIF image data, version 89a, 21 x 14","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gui-util/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt","type":"directory","name":"batik-gvt","base_name":"batik-gvt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":96,"dirs_count":21,"size_count":729113,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2128,"date":"2019-10-25","sha1":"555e8d387a187d5c0ebeb1a8ef9f6240cfd8894f","md5":"d259bc60cd99b77e84f6e0e2e918d106","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-gvt","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-gvt\nBatik Graphics Vector Tree (GVT)","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-awt-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-gvt@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-gvt@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-gvt/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-gvt/1.12/batik-gvt-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-gvt/1.12/batik-gvt-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":95,"dirs_count":20,"size_count":726985,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":95,"dirs_count":16,"size_count":726985,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":95,"dirs_count":11,"size_count":726985,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":95,"dirs_count":10,"size_count":726985,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":95,"dirs_count":9,"size_count":726985,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":95,"dirs_count":8,"size_count":726985,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt","type":"directory","name":"gvt","base_name":"gvt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":95,"dirs_count":7,"size_count":726985,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/AbstractGraphicsNode.java","type":"file","name":"AbstractGraphicsNode.java","base_name":"AbstractGraphicsNode","extension":".java","size":31274,"date":"2019-10-25","sha1":"2c6a5f8fb8f902c8d4f6aed9da5507fd99b3b299","md5":"53740d3de604b361926dcbab32da5cdd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":50,"end_line":50},{"email":"etissandier@ilog.fr","start_line":51,"end_line":51},{"email":"Thomas.DeWeeese@Kodak.com","start_line":52,"end_line":52}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/CanvasGraphicsNode.java","type":"file","name":"CanvasGraphicsNode.java","base_name":"CanvasGraphicsNode","extension":".java","size":5243,"date":"2019-10-25","sha1":"ce5c16d3f4fb4790318dbae7d25c498ffb635faa","md5":"c217ff09a5e6ed3b5249e42d21c5d57c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/CompositeGraphicsNode.java","type":"file","name":"CompositeGraphicsNode.java","base_name":"CompositeGraphicsNode","extension":".java","size":35609,"date":"2019-10-25","sha1":"1504fbfdef411485bfc8675bc13e119a741c39ba","md5":"463810ec20f3043d69546b5647ab80c2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/CompositeShapePainter.java","type":"file","name":"CompositeShapePainter.java","base_name":"CompositeShapePainter","extension":".java","size":7221,"date":"2019-10-25","sha1":"c31c7c0b8fdde7477d401125af5387de6093d52a","md5":"b94b59d3dddaca1834865e67f2b53a56","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/FillShapePainter.java","type":"file","name":"FillShapePainter.java","base_name":"FillShapePainter","extension":".java","size":4321,"date":"2019-10-25","sha1":"46bb2ef6400fd1726094de6559135f402ebd5253","md5":"abc895fd403ce5d15175fdf767c28a20","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/GraphicsNode.java","type":"file","name":"GraphicsNode.java","base_name":"GraphicsNode","extension":".java","size":13617,"date":"2019-10-25","sha1":"4cbb957f39a00b2d8367135e451fad91ce217fa0","md5":"d2ed0308dff21d57a27e6150e2066f75","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":40,"end_line":40},{"email":"etissandier@ilog.fr","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/GVTTreeWalker.java","type":"file","name":"GVTTreeWalker.java","base_name":"GVTTreeWalker","extension":".java","size":8994,"date":"2019-10-25","sha1":"1fc7e824f3a71ddbe3c870d527d9e72ebbdc0113","md5":"b380a8e7256e2ef5b56ee126bf8dff84","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/ImageNode.java","type":"file","name":"ImageNode.java","base_name":"ImageNode","extension":".java","size":4123,"date":"2019-10-25","sha1":"8ebd02debb34d4be23aa71380b717092c683fb5a","md5":"f822a8669cf81829c076873239a9a6e4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/Marker.java","type":"file","name":"Marker.java","base_name":"Marker","extension":".java","size":2676,"date":"2019-10-25","sha1":"3bbf3af4b643aa9143e484b19616ea6fa9120d62","md5":"1b0a9038fe6f4c3ece3df168d3c3a80c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/MarkerShapePainter.java","type":"file","name":"MarkerShapePainter.java","base_name":"MarkerShapePainter","extension":".java","size":26888,"date":"2019-10-25","sha1":"7caf0be2dbc032653073d17870003467767013cd","md5":"a56da27db3dea2b7cc19aed179e29fdd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/Mask.java","type":"file","name":"Mask.java","base_name":"Mask","extension":".java","size":1231,"date":"2019-10-25","sha1":"d2f59f9bae6932196bda76544bd6a357cc865b70","md5":"1b369a9d7fec944d2c587bb180ce520e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":416,"date":"2019-10-25","sha1":"5019e3eae82c923bf9b01eaa9820fb2f0cee9b77","md5":"8a63826ee13eedb10a96a968523fbefe","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/PatternPaint.java","type":"file","name":"PatternPaint.java","base_name":"PatternPaint","extension":".java","size":7281,"date":"2019-10-25","sha1":"a035f0d6fccdad195b22bf8225b9d516cef82a4a","md5":"bee0c35d4763ae8381ce6e429786e1aa","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/PatternPaintContext.java","type":"file","name":"PatternPaintContext.java","base_name":"PatternPaintContext","extension":".java","size":6513,"date":"2019-10-25","sha1":"6bad8523c9cff7fc2324428f0b85d0a165f0f8ae","md5":"44004e4c577f1ed3e6b7b6e8abcbbea8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":44,"end_line":44}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/ProxyGraphicsNode.java","type":"file","name":"ProxyGraphicsNode.java","base_name":"ProxyGraphicsNode","extension":".java","size":4836,"date":"2019-10-25","sha1":"3b90a09a04bae509db169ef6bb0fb675c183412d","md5":"a73886cbfe514a199adc67afe4cc7e9c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/RasterImageNode.java","type":"file","name":"RasterImageNode.java","base_name":"RasterImageNode","extension":".java","size":4203,"date":"2019-10-25","sha1":"e901783b404c1874762a012afc2d2d14aa502a69","md5":"21d9a372b07ec8463e9c119c1466a8a2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":31,"end_line":31},{"email":"Thomas.DeWeese@Kodak.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/RootGraphicsNode.java","type":"file","name":"RootGraphicsNode.java","base_name":"RootGraphicsNode","extension":".java","size":2115,"date":"2019-10-25","sha1":"30d2c049884aed975b76a12c5e8fdbb473f7dc10","md5":"4ed21afaf716bc7c3d9f38eab8c732fc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/Selectable.java","type":"file","name":"Selectable.java","base_name":"Selectable","extension":".java","size":1972,"date":"2019-10-25","sha1":"11043792c5daa1822ad1677e0a9dd24e266589d9","md5":"e775004099fece86f131f70236ea8830","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/Selector.java","type":"file","name":"Selector.java","base_name":"Selector","extension":".java","size":2072,"date":"2019-10-25","sha1":"7536030176731c36793a68e56e92d5da84c662b6","md5":"874319db215e628581cf76cdfb92d1de","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/ShapeNode.java","type":"file","name":"ShapeNode.java","base_name":"ShapeNode","extension":".java","size":13304,"date":"2019-10-25","sha1":"3e7dd739f39556b9f95f976e2ad1641cfc6b28ef","md5":"207fef38a8368b3f4b059227401a948c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/ShapePainter.java","type":"file","name":"ShapePainter.java","base_name":"ShapePainter","extension":".java","size":2507,"date":"2019-10-25","sha1":"1dfcb814093a911b499d19eca7624abfbbfcd8e7","md5":"098e6e72105add98ba60435c30c9f61b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/StrokeShapePainter.java","type":"file","name":"StrokeShapePainter.java","base_name":"StrokeShapePainter","extension":".java","size":5593,"date":"2019-10-25","sha1":"35f761fb1311b48c701b5c65356f0a0e1446bafd","md5":"43e78389ef30e50b70ceb79ace5cf6b8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/svg12","type":"directory","name":"svg12","base_name":"svg12","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/UpdateTracker.java","type":"file","name":"UpdateTracker.java","base_name":"UpdateTracker","extension":".java","size":10590,"date":"2019-10-25","sha1":"d41fb212814c34d68a7e9f740fb7e4ffa2762156","md5":"5f8d15e4343b2e7ef2c972f5ad80588a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event","type":"directory","name":"event","base_name":"event","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":21,"dirs_count":0,"size_count":82758,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/AWTEventDispatcher.java","type":"file","name":"AWTEventDispatcher.java","base_name":"AWTEventDispatcher","extension":".java","size":28878,"date":"2019-10-25","sha1":"4f08c75f54a7fbde639c63b2c508962b37bb8814","md5":"23c94a7a7cc37791f06eadb8032de58f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":52,"end_line":52},{"email":"cjolif@ilog.fr","start_line":53,"end_line":53},{"email":"tkormann@ilog.fr","start_line":54,"end_line":54}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/EventDispatcher.java","type":"file","name":"EventDispatcher.java","base_name":"EventDispatcher","extension":".java","size":5067,"date":"2019-10-25","sha1":"1b49ca2a7e1c24b69159de79bc44dfc0b6d3319f","md5":"00c0a24b87a8c91eff3119eec22abaf2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":36,"end_line":36},{"email":"tkormann@ilog.fr","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/GraphicsNodeChangeAdapter.java","type":"file","name":"GraphicsNodeChangeAdapter.java","base_name":"GraphicsNodeChangeAdapter","extension":".java","size":2130,"date":"2019-10-25","sha1":"f0a30964a16135b82286044ba628e0005afa2b37","md5":"0edbbd0573935425f767fb6a3c6ad5d1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/GraphicsNodeChangeEvent.java","type":"file","name":"GraphicsNodeChangeEvent.java","base_name":"GraphicsNodeChangeEvent","extension":".java","size":2334,"date":"2019-10-25","sha1":"d39b350c00b837fe0e21d2a6512cba0e22bb2525","md5":"843bffa11a9fbf450582bc6680765817","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/GraphicsNodeChangeListener.java","type":"file","name":"GraphicsNodeChangeListener.java","base_name":"GraphicsNodeChangeListener","extension":".java","size":1601,"date":"2019-10-25","sha1":"89724541816493a9ee38248bb9bfe3923f88b0cc","md5":"4cea7db5a3448bff66cb9484f2d11b34","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/GraphicsNodeEvent.java","type":"file","name":"GraphicsNodeEvent.java","base_name":"GraphicsNodeEvent","extension":".java","size":2254,"date":"2019-10-25","sha1":"8d2b85838097b79bb70781e198c66c6c071f7f0d","md5":"aa6d5413583df9193641211cd47de802","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/GraphicsNodeFocusEvent.java","type":"file","name":"GraphicsNodeFocusEvent.java","base_name":"GraphicsNodeFocusEvent","extension":".java","size":1994,"date":"2019-10-25","sha1":"bd6ef56e0e3c2efcb8cf158bb9aa8af20efdf1ff","md5":"65ff5cc09f15084db6d7d309a28fa2a8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/GraphicsNodeFocusListener.java","type":"file","name":"GraphicsNodeFocusListener.java","base_name":"GraphicsNodeFocusListener","extension":".java","size":1458,"date":"2019-10-25","sha1":"94326a122693cb3b598c10f8f63222ef8065cba9","md5":"6a97322c8e889a05a3a9ba6a1e1bfa78","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/GraphicsNodeInputEvent.java","type":"file","name":"GraphicsNodeInputEvent.java","base_name":"GraphicsNodeInputEvent","extension":".java","size":5513,"date":"2019-10-25","sha1":"ec74caeef83aa36ec991561f365bc43500451f32","md5":"ba9425c53e5c986eb3f2fe31e4d71ceb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/GraphicsNodeKeyAdapter.java","type":"file","name":"GraphicsNodeKeyAdapter.java","base_name":"GraphicsNodeKeyAdapter","extension":".java","size":1837,"date":"2019-10-25","sha1":"833642821f0a129cacc8fea47115daf0a337f820","md5":"d47cfd3dbda5b660b76c17d251f67ce6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/GraphicsNodeKeyEvent.java","type":"file","name":"GraphicsNodeKeyEvent.java","base_name":"GraphicsNodeKeyEvent","extension":".java","size":3819,"date":"2019-10-25","sha1":"5aca2d65226a7f87ec87ca9ab1bcc640c9d01dc9","md5":"edf91fdc734c0545f96ddcbc5cdbc63f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/GraphicsNodeKeyListener.java","type":"file","name":"GraphicsNodeKeyListener.java","base_name":"GraphicsNodeKeyListener","extension":".java","size":1639,"date":"2019-10-25","sha1":"a431bd03a7cac9ef946f3670396f3f05fb8346d6","md5":"1fef5650c5e731cdfb0013b1f42e5923","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/GraphicsNodeMouseAdapter.java","type":"file","name":"GraphicsNodeMouseAdapter.java","base_name":"GraphicsNodeMouseAdapter","extension":".java","size":2104,"date":"2019-10-25","sha1":"f9552ad791f40f8f147ab1ebfae4adc69f996503","md5":"ec2074d0f8e93b114051ebc5768a31e1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/GraphicsNodeMouseEvent.java","type":"file","name":"GraphicsNodeMouseEvent.java","base_name":"GraphicsNodeMouseEvent","extension":".java","size":8815,"date":"2019-10-25","sha1":"c66959fe04e182a88c3b73e9bf0d2fb55030034e","md5":"8363245cb3a0d2ef9f98d96d28784b51","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":30,"end_line":30},{"email":"Thierry.Kormann@sophia.inria.fr","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/GraphicsNodeMouseListener.java","type":"file","name":"GraphicsNodeMouseListener.java","base_name":"GraphicsNodeMouseListener","extension":".java","size":2466,"date":"2019-10-25","sha1":"c06ddf9fe3364ee5b2147682d3f1d0677adbf117","md5":"4019e058d414ff3668d81b5ba77e1b1a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/GraphicsNodeMouseWheelEvent.java","type":"file","name":"GraphicsNodeMouseWheelEvent.java","base_name":"GraphicsNodeMouseWheelEvent","extension":".java","size":2215,"date":"2019-10-25","sha1":"61dab25189b16d65a721b107161a666c723c8552","md5":"9131df136449ca1436adc17b99ee5e2b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/GraphicsNodeMouseWheelListener.java","type":"file","name":"GraphicsNodeMouseWheelListener.java","base_name":"GraphicsNodeMouseWheelListener","extension":".java","size":1366,"date":"2019-10-25","sha1":"525ed31d719cad3cfba6b76459cd89aeaaee8ba8","md5":"1e352741e7ba69a6fa6a322402c37f2a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":648,"date":"2019-10-25","sha1":"1246824a3eef486f4f2aa5f77b08d42b14cc913d","md5":"9eebf3ea3ce028fe1f7a317218382137","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/SelectionAdapter.java","type":"file","name":"SelectionAdapter.java","base_name":"SelectionAdapter","extension":".java","size":1764,"date":"2019-10-25","sha1":"77f99c3753d3db59b0b0df96939df901633a0f8d","md5":"62ec34fc8d75115417985a60b596e990","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/SelectionEvent.java","type":"file","name":"SelectionEvent.java","base_name":"SelectionEvent","extension":".java","size":3096,"date":"2019-10-25","sha1":"6b50bb74dc83f85ad1d00b82ab65b6bed1d8d71e","md5":"c6024b40f957c1eb7ffcd9eecd2465ca","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":26,"end_line":26},{"email":"tkormann@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/event/SelectionListener.java","type":"file","name":"SelectionListener.java","base_name":"SelectionListener","extension":".java","size":1760,"date":"2019-10-25","sha1":"56136962ab0df12f964ccdf9ce685703e4a0bea4","md5":"834712fd67c373f0cad18fcb9eaf173b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/filter","type":"directory","name":"filter","base_name":"filter","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":10,"dirs_count":0,"size_count":44938,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/filter/BackgroundRable8Bit.java","type":"file","name":"BackgroundRable8Bit.java","base_name":"BackgroundRable8Bit","extension":".java","size":14288,"date":"2019-10-25","sha1":"ab1da3fe38e475cfacc0ef2d97bff8fbfd7746c4","md5":"428d0d134a205b9bf1a2bb74e38b203e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":46,"end_line":46}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/filter/ConcreteGraphicsNodeRableFactory.java","type":"file","name":"ConcreteGraphicsNodeRableFactory.java","base_name":"ConcreteGraphicsNodeRableFactory","extension":".java","size":1570,"date":"2019-10-25","sha1":"f8f4cd5474b9730c4cf15bb670304bdd3fbe52a8","md5":"2098e5f28110591ff6ea76aa6eea0a56","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/filter/filterDesc.txt","type":"file","name":"filterDesc.txt","base_name":"filterDesc","extension":".txt","size":537,"date":"2019-10-25","sha1":"7ffd4c8b39d4fd4d6d5f3370d56b4d04824fe12c","md5":"6ea7dab4c675ef3a77882c9298e43e5c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/filter/GraphicsNodeRable.java","type":"file","name":"GraphicsNodeRable.java","base_name":"GraphicsNodeRable","extension":".java","size":2277,"date":"2019-10-25","sha1":"08f86d2962410b8657f547504dae9d53edc5a8ad","md5":"7260fd8a6f97d43e38dd799392f598e3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/filter/GraphicsNodeRable8Bit.java","type":"file","name":"GraphicsNodeRable8Bit.java","base_name":"GraphicsNodeRable8Bit","extension":".java","size":11071,"date":"2019-10-25","sha1":"e0f3735ee78a6f8d05ec406fd61735bc17919cac","md5":"cbaa20022dd3896715108ab45ce6f1ac","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":44,"end_line":44}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/filter/GraphicsNodeRableFactory.java","type":"file","name":"GraphicsNodeRableFactory.java","base_name":"GraphicsNodeRableFactory","extension":".java","size":1442,"date":"2019-10-25","sha1":"5d6343a98f02a2244814366a8a3d43b285c92d33","md5":"2323c5a20d613fac260f55252191be3d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/filter/GraphicsNodeRed8Bit.java","type":"file","name":"GraphicsNodeRed8Bit.java","base_name":"GraphicsNodeRed8Bit","extension":".java","size":5391,"date":"2019-10-25","sha1":"e55d6f5b1c0b7d54ba5290416c256feba4e14e4b","md5":"ffb8c04c3631319dbeca1572fb3ed5f3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/filter/Mask.java","type":"file","name":"Mask.java","base_name":"Mask","extension":".java","size":2455,"date":"2019-10-25","sha1":"f454063241812d999f111ac12e55d3b29ad89dd7","md5":"24dcb8bb5aa3df720b8df028e44eab36","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/filter/MaskRable8Bit.java","type":"file","name":"MaskRable8Bit.java","base_name":"MaskRable8Bit","extension":".java","size":5418,"date":"2019-10-25","sha1":"65daa962e49cdbe197f0a85ba2fe209f47c0f7df","md5":"22018424bef417a1160f51ef97d34747","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/filter/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":489,"date":"2019-10-25","sha1":"9cb0f86a44ac522bfe69262aa70ce37e3b6d3a0a","md5":"2da7097ecd42d24f6097bcf23f21686c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/flow","type":"directory","name":"flow","base_name":"flow","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":8,"dirs_count":0,"size_count":88118,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/flow/BlockInfo.java","type":"file","name":"BlockInfo.java","base_name":"BlockInfo","extension":".java","size":4023,"date":"2019-10-25","sha1":"d771e6eefd273f8d5e93347b9f87f21e18d1dd21","md5":"bfd42ea7fa1bcdb9ef46935a7ae271b9","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/flow/FlowRegions.java","type":"file","name":"FlowRegions.java","base_name":"FlowRegions","extension":".java","size":6007,"date":"2019-10-25","sha1":"8de56939d94f4a5bccd5ca519b8ec8b81ed89a4f","md5":"37b0c9ca970f87ba0f2efcce03001ee9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/flow/GlyphGroupInfo.java","type":"file","name":"GlyphGroupInfo.java","base_name":"GlyphGroupInfo","extension":".java","size":4334,"date":"2019-10-25","sha1":"058c924cb08e5c4081209ad1d2773faae270631b","md5":"23c5d673ebacacb23939c546cf149b37","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/flow/LineInfo.java","type":"file","name":"LineInfo.java","base_name":"LineInfo","extension":".java","size":14234,"date":"2019-10-25","sha1":"061a43b03af655249ba3e3d60b17fefed9df431c","md5":"ce94b6c89489fadf3e02f2e073d1f91e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/flow/MarginInfo.java","type":"file","name":"MarginInfo.java","base_name":"MarginInfo","extension":".java","size":2881,"date":"2019-10-25","sha1":"c8a50313b550744aa766b1533a89e7856928cf18","md5":"24e4cf55018505fd702ac8a487ce4de6","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/flow/RegionInfo.java","type":"file","name":"RegionInfo.java","base_name":"RegionInfo","extension":".java","size":2547,"date":"2019-10-25","sha1":"b38b633140365c1c41e1463a14e40c0bc3417100","md5":"2ed20bb0d4ce288b4d3a8c9a3193c983","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/flow/TextLineBreaks.java","type":"file","name":"TextLineBreaks.java","base_name":"TextLineBreaks","extension":".java","size":51054,"date":"2019-10-25","sha1":"6747a332ebf897b29c765ba6a312e031dff45e5c","md5":"78b19a81966cbaf9f18e5dd8ee1595bf","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/flow/WordInfo.java","type":"file","name":"WordInfo.java","base_name":"WordInfo","extension":".java","size":3038,"date":"2019-10-25","sha1":"83e02476fe95906302639b7015f6d0a3a07751e5","md5":"bd3e49a708d7f17d1d96c8f6f3f08a85","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font","type":"directory","name":"font","base_name":"font","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":0,"size_count":160067,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/AltGlyphHandler.java","type":"file","name":"AltGlyphHandler.java","base_name":"AltGlyphHandler","extension":".java","size":1622,"date":"2019-10-25","sha1":"6962536c79c046fc40fe39a959b96af717ffcda0","md5":"6d45165fc87f7a27cffc6f7d9ff7401e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/AWTFontFamily.java","type":"file","name":"AWTFontFamily.java","base_name":"AWTFontFamily","extension":".java","size":3770,"date":"2019-10-25","sha1":"8a98a50068406e1bac44bf59b4e425fe9464ce78","md5":"9cea64289336bf3be54c3c151f6abe1d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/AWTGlyphGeometryCache.java","type":"file","name":"AWTGlyphGeometryCache.java","base_name":"AWTGlyphGeometryCache","extension":".java","size":7006,"date":"2019-10-25","sha1":"a0713b8e16eb9320aa88678124ab701aac113442","md5":"777caf19a0ea43ffd4c454de769bf462","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30},{"email":"tkormann@ilog.fr","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/AWTGVTFont.java","type":"file","name":"AWTGVTFont.java","base_name":"AWTGVTFont","extension":".java","size":11503,"date":"2019-10-25","sha1":"44bd83735f6cf5c1a8d4c5a642695d932074846c","md5":"1385c0e90b65dc702466b67cf2005e3c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/AWTGVTGlyphVector.java","type":"file","name":"AWTGVTGlyphVector.java","base_name":"AWTGVTGlyphVector","extension":".java","size":36713,"date":"2019-10-25","sha1":"ccd5987b792ddfa6ecc59ad40c81a67e6cd94ecd","md5":"122f0d8efc110d2a855943e286e06b1c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":46,"end_line":46}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/Glyph.java","type":"file","name":"Glyph.java","base_name":"Glyph","extension":".java","size":12149,"date":"2019-10-25","sha1":"7b126dac807c382c242d1971ae365d90d48bb982","md5":"a47b8fa38cf984ca38facb6ca0ec4e4e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/GVTFont.java","type":"file","name":"GVTFont.java","base_name":"GVTFont","extension":".java","size":4489,"date":"2019-10-25","sha1":"c57cd6b6c582a8de0f1fe7a4d4daef97546a43c8","md5":"b8eaa0ca8331176eac0619ac482906b6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/GVTFontFace.java","type":"file","name":"GVTFontFace.java","base_name":"GVTFontFace","extension":".java","size":7724,"date":"2019-10-25","sha1":"6d140233ba3f2259bf8f50b8bb6a6ec0099aafd0","md5":"fe35f3798d8675d86d295f037be0a779","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/GVTFontFamily.java","type":"file","name":"GVTFontFamily.java","base_name":"GVTFontFamily","extension":".java","size":2042,"date":"2019-10-25","sha1":"bd45e4ff055fe34b02c404c5de9bd0f1b721f95c","md5":"8f81724ed3f776c669703f3fce5d2790","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/GVTGlyphMetrics.java","type":"file","name":"GVTGlyphMetrics.java","base_name":"GVTGlyphMetrics","extension":".java","size":3924,"date":"2019-10-25","sha1":"b42c4f9fc10714d289c8b31dc5563f50b33d53e2","md5":"4b2a9897ad25f396f8bcf639d46fb9c4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/GVTGlyphVector.java","type":"file","name":"GVTGlyphVector.java","base_name":"GVTGlyphVector","extension":".java","size":6233,"date":"2019-10-25","sha1":"9c231fc0d78f1fc9906d2e3f9d055ba57597fa0d","md5":"ee4089b7617b118f3cf8a45f59f1ce33","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/GVTLineMetrics.java","type":"file","name":"GVTLineMetrics.java","base_name":"GVTLineMetrics","extension":".java","size":7226,"date":"2019-10-25","sha1":"35d353a1b99ed9f1f4b972b34b73aab5d6a64ade","md5":"abd0822b85e41c2d7bd7666e2f155d7c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/Kern.java","type":"file","name":"Kern.java","base_name":"Kern","extension":".java","size":6721,"date":"2019-10-25","sha1":"98af31a0f4ea83351e0d231c911c4b5b2c27a7aa","md5":"f227efed5d148396f03c12b5bfb82872","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"dean.jackson@cmis.csiro.au","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/KerningTable.java","type":"file","name":"KerningTable.java","base_name":"KerningTable","extension":".java","size":2592,"date":"2019-10-25","sha1":"5a718190fa4a2f72e65af21b52ac97b18f25561a","md5":"56eb4eb7f74250b7b43a71b40383cdc0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"dean.jackson@cmis.csiro.au","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/MultiGlyphVector.java","type":"file","name":"MultiGlyphVector.java","base_name":"MultiGlyphVector","extension":".java","size":12662,"date":"2019-10-25","sha1":"38c4200560a8eaac76a29c584a4c55de17792827","md5":"a397578beb3f2d8857f23791f412bd7b","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/SVGGVTGlyphVector.java","type":"file","name":"SVGGVTGlyphVector.java","base_name":"SVGGVTGlyphVector","extension":".java","size":27791,"date":"2019-10-25","sha1":"630b35ec599f5ed81d0120c3b39034ddcec0b51f","md5":"f4064940c71adede92178dd720387b06","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/UnicodeRange.java","type":"file","name":"UnicodeRange.java","base_name":"UnicodeRange","extension":".java","size":3096,"date":"2019-10-25","sha1":"0e3c0f37f3ee8847f0ea63078cd317710b2f499e","md5":"4ae8491c548f8b4b6ef4d18347c2d423","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/font/UnresolvedFontFamily.java","type":"file","name":"UnresolvedFontFamily.java","base_name":"UnresolvedFontFamily","extension":".java","size":2804,"date":"2019-10-25","sha1":"57d559ffb874fa80867005b27690f74aa7831c88","md5":"f8c9eecdabff290082f70ab98c06f1b4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/renderer","type":"directory","name":"renderer","base_name":"renderer","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":8,"dirs_count":0,"size_count":51376,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/renderer/ConcreteImageRendererFactory.java","type":"file","name":"ConcreteImageRendererFactory.java","base_name":"ConcreteImageRendererFactory","extension":".java","size":1766,"date":"2019-10-25","sha1":"9fd9f86214d1c61fbe4b21f1a931488501f60208","md5":"08d301cdc7810f9c2a10a19f3e1593af","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/renderer/DynamicRenderer.java","type":"file","name":"DynamicRenderer.java","base_name":"DynamicRenderer","extension":".java","size":9884,"date":"2019-10-25","sha1":"2023164a9445ab6db137c98facea1393f54c2acb","md5":"4c6c1e7ece44f3bbecf440cb58af0bd2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/renderer/ImageRenderer.java","type":"file","name":"ImageRenderer.java","base_name":"ImageRenderer","extension":".java","size":3121,"date":"2019-10-25","sha1":"aea3dd62f2c76c1ae283a5e8c7014fa196dc0e27","md5":"162116681560cf4663abd3aa2566d5fd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/renderer/ImageRendererFactory.java","type":"file","name":"ImageRendererFactory.java","base_name":"ImageRendererFactory","extension":".java","size":1319,"date":"2019-10-25","sha1":"4129274d4286b9dc39e1f0afa74ddf5ec38d0120","md5":"288f02bc03c54916857e24725f72fb4e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/renderer/MacRenderer.java","type":"file","name":"MacRenderer.java","base_name":"MacRenderer","extension":".java","size":12639,"date":"2019-10-25","sha1":"9f86ae83fc40dc4e5ffe21c362cb2f8264284d07","md5":"011a820058e603863465ea7c7905db2c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/renderer/Renderer.java","type":"file","name":"Renderer.java","base_name":"Renderer","extension":".java","size":3297,"date":"2019-10-25","sha1":"8e73068d60c3d8d48565fd47dd377531a8da3ec9","md5":"570732ce6f2721192bbe7d4e2acd415c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/renderer/RendererFactory.java","type":"file","name":"RendererFactory.java","base_name":"RendererFactory","extension":".java","size":1151,"date":"2019-10-25","sha1":"50cc15de71a3153fbe81a076e749a0e48566572a","md5":"58f11993d67b8d470e615dd044d752a4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/renderer/StaticRenderer.java","type":"file","name":"StaticRenderer.java","base_name":"StaticRenderer","extension":".java","size":18199,"date":"2019-10-25","sha1":"423761dd8ef942da24fe5b39026daf51534da42b","md5":"65ddd6ada59b587dc0745027a6c78c28","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":53,"end_line":53}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/text","type":"directory","name":"text","base_name":"text","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":0,"size_count":97129,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/text/ArabicTextHandler.java","type":"file","name":"ArabicTextHandler.java","base_name":"ArabicTextHandler","extension":".java","size":26927,"date":"2019-10-25","sha1":"542c207a2a6a4220338d6b08b4480e2aacd25eee","md5":"7c52c40ff0ced8e03f4a0f24189e0e74","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/text/AttributedCharacterSpanIterator.java","type":"file","name":"AttributedCharacterSpanIterator.java","base_name":"AttributedCharacterSpanIterator","extension":".java","size":7502,"date":"2019-10-25","sha1":"9f4d700b2d0156989b6a3eebe025da091a54d35e","md5":"0bf1dfe8542e2fe7232aa5160b690f7e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/text/BidiAttributedCharacterIterator.java","type":"file","name":"BidiAttributedCharacterIterator.java","base_name":"BidiAttributedCharacterIterator","extension":".java","size":27035,"date":"2019-10-25","sha1":"5751fed81c16af7d4bcab8a121a98c7f635042fe","md5":"b1533e981836be6b91b2799da6805f78","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/text/GVTACIImpl.java","type":"file","name":"GVTACIImpl.java","base_name":"GVTACIImpl","extension":".java","size":12842,"date":"2019-10-25","sha1":"9fd997e9e11da82babe3f0fd1194f1378f50bbda","md5":"b20d32e5ca964cf13ad9da819aeb1673","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/text/GVTAttributedCharacterIterator.java","type":"file","name":"GVTAttributedCharacterIterator.java","base_name":"GVTAttributedCharacterIterator","extension":".java","size":16050,"date":"2019-10-25","sha1":"4b5052fa36a05751e1ccb9be788a7582c4d4e154","md5":"b42a2e882396c340a77138ae2b7c4e31","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/text/TextPaintInfo.java","type":"file","name":"TextPaintInfo.java","base_name":"TextPaintInfo","extension":".java","size":4031,"date":"2019-10-25","sha1":"c764a3cdaceab42b26cbecd59feb7dc7e9acdac8","md5":"ef7334c4dca0ffea5d6ae8632e798d53","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/java/org/apache/batik/gvt/text/TextPath.java","type":"file","name":"TextPath.java","base_name":"TextPath","extension":".java","size":2742,"date":"2019-10-25","sha1":"c68adb622c74e5652c6767f0ef87198ebd769bb8","md5":"f4954131b1661062cce33e5efd24e008","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":3,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":1,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-gvt/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-i18n","type":"directory","name":"batik-i18n","base_name":"batik-i18n","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":7,"size_count":18773,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-i18n/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":1745,"date":"2019-10-25","sha1":"32b3a90e1d74404c5f9dfa53b5aed8a95d352e99","md5":"654207f5198ecce9f7465643d503bbbf","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-i18n","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-i18n\nBatik i18n library","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-i18n","dependencies":[],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-i18n@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-i18n@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-i18n/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-i18n/1.12/batik-i18n-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-i18n/1.12/batik-i18n-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-i18n/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":6,"size_count":17028,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-i18n/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":5,"size_count":17028,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-i18n/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":4,"size_count":17028,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-i18n/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":3,"size_count":17028,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-i18n/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":2,"size_count":17028,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-i18n/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":1,"size_count":17028,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-i18n/src/main/java/org/apache/batik/i18n","type":"directory","name":"i18n","base_name":"i18n","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":17028,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-i18n/src/main/java/org/apache/batik/i18n/ExtendedLocalizable.java","type":"file","name":"ExtendedLocalizable.java","base_name":"ExtendedLocalizable","extension":".java","size":1945,"date":"2019-10-25","sha1":"1471776954954c56f8dd5be26dfaade9329184af","md5":"09dbe2d187075ce4d117e0b64c0fdba1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-i18n/src/main/java/org/apache/batik/i18n/LocaleGroup.java","type":"file","name":"LocaleGroup.java","base_name":"LocaleGroup","extension":".java","size":1642,"date":"2019-10-25","sha1":"0252d62df2b414c7af3b5fc8ae72f5f77472481d","md5":"76dd29bae47330376422aa6a6fa32aba","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-i18n/src/main/java/org/apache/batik/i18n/Localizable.java","type":"file","name":"Localizable.java","base_name":"Localizable","extension":".java","size":2213,"date":"2019-10-25","sha1":"5098f57fa45317b861cf72b20bc4f3d3180a7e7a","md5":"2d018b965b2c7100bc8d622586dad236","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-i18n/src/main/java/org/apache/batik/i18n/LocalizableSupport.java","type":"file","name":"LocalizableSupport.java","base_name":"LocalizableSupport","extension":".java","size":10750,"date":"2019-10-25","sha1":"fc16b6233b44927dcf07407dba7bbb87c1d43754","md5":"5a5095a7472c5d6c8e8f52dd6e7abf3f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":78,"end_line":78}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-i18n/src/main/java/org/apache/batik/i18n/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":478,"date":"2019-10-25","sha1":"2b79202845f9a93799bd165bff707000a0741eaf","md5":"535180493583d163c0cf18be52446187","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser","type":"directory","name":"batik-parser","base_name":"batik-parser","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":57,"dirs_count":18,"size_count":315207,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2451,"date":"2019-10-25","sha1":"677b35fca09491d44b760f919685558b7df2145d","md5":"9c4b9e279fd83769471f4c65c75172aa","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-parser","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-parser\nBatik SVG microsyntax parser","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-awt-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-xml","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/xml-apis/xml-apis-ext","requirement":"${xmlapisext.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-parser@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-parser@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-parser/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-parser/1.12/batik-parser-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-parser/1.12/batik-parser-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":56,"dirs_count":17,"size_count":312756,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":56,"dirs_count":13,"size_count":312756,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":54,"dirs_count":4,"size_count":309462,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":54,"dirs_count":3,"size_count":309462,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":54,"dirs_count":2,"size_count":309462,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":54,"dirs_count":1,"size_count":309462,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser","type":"directory","name":"parser","base_name":"parser","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":54,"dirs_count":0,"size_count":309462,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/AbstractParser.java","type":"file","name":"AbstractParser.java","base_name":"AbstractParser","extension":".java","size":7797,"date":"2019-10-25","sha1":"b3cda55b8f2f7ed317dfb7fb94106cd0e57a7ca4","md5":"e99660c18a73381d6a672b019636c0e7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/AbstractScanner.java","type":"file","name":"AbstractScanner.java","base_name":"AbstractScanner","extension":".java","size":5829,"date":"2019-10-25","sha1":"0813aafbf3b7ab572c63433682a43a4d4fd6b4a8","md5":"87bdae5d022a53cfff95850ae4cc5471","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/AngleHandler.java","type":"file","name":"AngleHandler.java","base_name":"AngleHandler","extension":".java","size":2309,"date":"2019-10-25","sha1":"500af863598999bb4ebb2058c1589ea7ffb89b3e","md5":"3dfab7f1fae6ce83cbb516cb472b186d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/AngleParser.java","type":"file","name":"AngleParser.java","base_name":"AngleParser","extension":".java","size":4812,"date":"2019-10-25","sha1":"ba46f63281a185dee22b0318be3de5086179e792","md5":"d402daa9dac43f1e6d53d7749d4185be","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/AWTPathProducer.java","type":"file","name":"AWTPathProducer.java","base_name":"AWTPathProducer","extension":".java","size":9642,"date":"2019-10-25","sha1":"eed354cc9f4d8a1e57f080b306815799860a6059","md5":"564b551c7d870b4cd2ab6d137ee22f20","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/AWTPolygonProducer.java","type":"file","name":"AWTPolygonProducer.java","base_name":"AWTPolygonProducer","extension":".java","size":1882,"date":"2019-10-25","sha1":"f211a55a48bdf99a363e94cba9328d2c55d80ab2","md5":"69847f027c9c5d6720055848c4a27a9d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/AWTPolylineProducer.java","type":"file","name":"AWTPolylineProducer.java","base_name":"AWTPolylineProducer","extension":".java","size":3167,"date":"2019-10-25","sha1":"099c2e51f40f51ec5d5f24ef426fd6de85019477","md5":"0fa28ac5d41f9a7c3b964d3b12d0d975","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/AWTTransformProducer.java","type":"file","name":"AWTTransformProducer.java","base_name":"AWTTransformProducer","extension":".java","size":5342,"date":"2019-10-25","sha1":"3e184cd88f6971eb840789d486551342c2eb75c6","md5":"8125a225f6e0d5060e0c2cb2dee2a294","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/ClockHandler.java","type":"file","name":"ClockHandler.java","base_name":"ClockHandler","extension":".java","size":1279,"date":"2019-10-25","sha1":"07cb9b25dd50dab15526736624432b41377763b8","md5":"18be20c5be31c68437cd2c8627d99e85","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/ClockParser.java","type":"file","name":"ClockParser.java","base_name":"ClockParser","extension":".java","size":2256,"date":"2019-10-25","sha1":"bb5c6b3ec3350f4de84b0cf3fa01f9cdc6d4c9ab","md5":"0b5828ca39e72dfb497c9b908f1e3c46","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/DefaultAngleHandler.java","type":"file","name":"DefaultAngleHandler.java","base_name":"DefaultAngleHandler","extension":".java","size":2101,"date":"2019-10-25","sha1":"f65d226b2ad1239d58e15a9cba1e8fc5bfacfbcd","md5":"6b88b15fed3b6e7d57edd0ced0e1d12b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/DefaultErrorHandler.java","type":"file","name":"DefaultErrorHandler.java","base_name":"DefaultErrorHandler","extension":".java","size":1323,"date":"2019-10-25","sha1":"48d9c3f56ae91273f2436964db6dec2ce98da46d","md5":"8f3d6dd287930656c23ac148f1b2dceb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/DefaultFragmentIdentifierHandler.java","type":"file","name":"DefaultFragmentIdentifierHandler.java","base_name":"DefaultFragmentIdentifierHandler","extension":".java","size":5554,"date":"2019-10-25","sha1":"f9a5d1c729b4c007845f999d8284b4e2247cdec8","md5":"eb5d556a4b3a2335dc33bfbf810c8f29","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/DefaultLengthHandler.java","type":"file","name":"DefaultLengthHandler.java","base_name":"DefaultLengthHandler","extension":".java","size":2804,"date":"2019-10-25","sha1":"f4b817aa9494111364d00c6f2e12d134cc2016bd","md5":"04712183e72a862ac66c53145b00bb21","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/DefaultLengthListHandler.java","type":"file","name":"DefaultLengthListHandler.java","base_name":"DefaultLengthListHandler","extension":".java","size":1718,"date":"2019-10-25","sha1":"0c3ce560c95882a1f7e4abd25189fe98616be5fb","md5":"f736638a175b7fa0b2b024bd233eb458","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/DefaultNumberListHandler.java","type":"file","name":"DefaultNumberListHandler.java","base_name":"DefaultNumberListHandler","extension":".java","size":1997,"date":"2019-10-25","sha1":"f92c2290e1e3742c4cefbaf40015cf683dc47557","md5":"8a0182a755ab54e50c8ea0c30c3acaee","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tonny@kiyut.com","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"tonny@kiyut.com","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/DefaultPathHandler.java","type":"file","name":"DefaultPathHandler.java","base_name":"DefaultPathHandler","extension":".java","size":5631,"date":"2019-10-25","sha1":"c4fba1c73fec0fed24d33cc659b5f5f7b26f323f","md5":"6b77995f2af6cbcf409a8e6f4fbbcf5b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/DefaultPointsHandler.java","type":"file","name":"DefaultPointsHandler.java","base_name":"DefaultPointsHandler","extension":".java","size":1781,"date":"2019-10-25","sha1":"c60f5d3c0150c7d8f68ba3966ed755f5081ffe6d","md5":"54694a29a8b9651c3a94d34dc7a31aad","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/DefaultPreserveAspectRatioHandler.java","type":"file","name":"DefaultPreserveAspectRatioHandler.java","base_name":"DefaultPreserveAspectRatioHandler","extension":".java","size":3453,"date":"2019-10-25","sha1":"a79e959098393b71aae40bcb9cde92b9f8314293","md5":"56fb5e3f52852f0863e5291d28e0018d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/DefaultTimingSpecifierHandler.java","type":"file","name":"DefaultTimingSpecifierHandler.java","base_name":"DefaultTimingSpecifierHandler","extension":".java","size":2912,"date":"2019-10-25","sha1":"cd182335613652696eb4afdd7786c024d2d470aa","md5":"4250d62a6ed2da333e4e921c3b302a79","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/DefaultTimingSpecifierListHandler.java","type":"file","name":"DefaultTimingSpecifierListHandler.java","base_name":"DefaultTimingSpecifierListHandler","extension":".java","size":1688,"date":"2019-10-25","sha1":"72120d95243aa262f8e47f32a852d0d65a35af40","md5":"3a05d4035d81503390b00186b7ab9ba8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/DefaultTransformListHandler.java","type":"file","name":"DefaultTransformListHandler.java","base_name":"DefaultTransformListHandler","extension":".java","size":3162,"date":"2019-10-25","sha1":"2795d90ef9276ddb8d3a863e10694573bcb653d5","md5":"7998a7b7466212c3b145c612acb8726f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/ErrorHandler.java","type":"file","name":"ErrorHandler.java","base_name":"ErrorHandler","extension":".java","size":1260,"date":"2019-10-25","sha1":"ff0e643a52c390e483b8dfa751eacc3c2fcbd7f5","md5":"ed6a4d105b42596ba083af0271002d81","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/FloatArrayProducer.java","type":"file","name":"FloatArrayProducer.java","base_name":"FloatArrayProducer","extension":".java","size":3730,"date":"2019-10-25","sha1":"5ab9e817b8cc6c06b493af236b30139cc3e50510","md5":"5375031e8e74c4383affcc38ded40826","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/FragmentIdentifierHandler.java","type":"file","name":"FragmentIdentifierHandler.java","base_name":"FragmentIdentifierHandler","extension":".java","size":3701,"date":"2019-10-25","sha1":"0deb977db75cea4bc52ba7ad20e3234f8e06bc45","md5":"c7bb86827a84e1ab32c3d91f73647ea3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/FragmentIdentifierParser.java","type":"file","name":"FragmentIdentifierParser.java","base_name":"FragmentIdentifierParser","extension":".java","size":48032,"date":"2019-10-25","sha1":"c0fbcf35b97446f92676a3fa5a55fb94ab6965de","md5":"acdf07a729f6caa4a1c6e59dfcd4113a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/LengthArrayProducer.java","type":"file","name":"LengthArrayProducer.java","base_name":"LengthArrayProducer","extension":".java","size":6153,"date":"2019-10-25","sha1":"a2dc7d3f4e737bc2b138729c1731e9a6cbac128f","md5":"cce008ccd7faa30916dd6416bd3ba330","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/LengthHandler.java","type":"file","name":"LengthHandler.java","base_name":"LengthHandler","extension":".java","size":3764,"date":"2019-10-25","sha1":"86df1c640931312d4a22537c9cc229bd003cc1c6","md5":"2a0c735a0dbce3bb44e4bb230092b0db","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/LengthListHandler.java","type":"file","name":"LengthListHandler.java","base_name":"LengthListHandler","extension":".java","size":1692,"date":"2019-10-25","sha1":"7637495690f8116371e2f839f6e7eeb093880b60","md5":"b255ee8083c8804a8e93b0065b13808c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/LengthListParser.java","type":"file","name":"LengthListParser.java","base_name":"LengthListParser","extension":".java","size":2723,"date":"2019-10-25","sha1":"a62b825c91fc3d0dce642a5a0dbd5246370503a5","md5":"fa3bfcad440f253890782aaafc0ded1a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/LengthPairListParser.java","type":"file","name":"LengthPairListParser.java","base_name":"LengthPairListParser","extension":".java","size":2287,"date":"2019-10-25","sha1":"325371553bb9591f996e4865143e546368a7983d","md5":"70fcd1a8416973080aa7171ba7f0d433","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/LengthParser.java","type":"file","name":"LengthParser.java","base_name":"LengthParser","extension":".java","size":10683,"date":"2019-10-25","sha1":"15bd9a4b2c47778602c89604be834a397340ad8a","md5":"66deba76adcd4b3400703a06c609dc46","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/NumberListHandler.java","type":"file","name":"NumberListHandler.java","base_name":"NumberListHandler","extension":".java","size":2220,"date":"2019-10-25","sha1":"482f7c53acae913d985a7956061903a619f7d988","md5":"b0687ab1f2e03c258d14ad9e0e25d5c2","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tonny@kiyut.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"tonny@kiyut.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/NumberListParser.java","type":"file","name":"NumberListParser.java","base_name":"NumberListParser","extension":".java","size":2831,"date":"2019-10-25","sha1":"e294cb9507710aa0fc28ebec205b35b0cd8fb564","md5":"2c56c92cfa6c80aac1ccd108f727ede5","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tonny@kiyut.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"tonny@kiyut.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/NumberParser.java","type":"file","name":"NumberParser.java","base_name":"NumberParser","extension":".java","size":7737,"date":"2019-10-25","sha1":"df599d6f305b1a8a7be530862a9ebc598efa93b3","md5":"5fac0b417f31d3f8bb4887a4e145afa9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":239,"date":"2019-10-25","sha1":"09f1f0a5b4562aa25fbc54750710eaf9c84a6597","md5":"3283c6bd36cbb9b29895a9c372138275","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/ParseException.java","type":"file","name":"ParseException.java","base_name":"ParseException","extension":".java","size":3955,"date":"2019-10-25","sha1":"c8f9046517e70dd5b0ef8e8c21f83bd7573d5d8f","md5":"55ef2bd59825f784716239a544150852","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/Parser.java","type":"file","name":"Parser.java","base_name":"Parser","extension":".java","size":1843,"date":"2019-10-25","sha1":"2b375026c4f63aa43e8ca42c224580c7af416c57","md5":"9e1d3c6b6d476377f83a7b565444d3a7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/PathArrayProducer.java","type":"file","name":"PathArrayProducer.java","base_name":"PathArrayProducer","extension":".java","size":10421,"date":"2019-10-25","sha1":"d1a4c4995440eec95fb969ca994f478ea6fc5af8","md5":"8284adb012db7269fcfe8f838d3d3354","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/PathHandler.java","type":"file","name":"PathHandler.java","base_name":"PathHandler","extension":".java","size":11513,"date":"2019-10-25","sha1":"ba5c508f4bb2ff4e8fcbc7164dac068e72baf0c0","md5":"3bcf50c0b7fcd8ccaa9a020dfcee1feb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/PathParser.java","type":"file","name":"PathParser.java","base_name":"PathParser","extension":".java","size":20911,"date":"2019-10-25","sha1":"33a228409d9741911c82fec8087890334efe83b0","md5":"102dc1e13044d539fbedc388f943a5ca","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/PointsHandler.java","type":"file","name":"PointsHandler.java","base_name":"PointsHandler","extension":".java","size":1957,"date":"2019-10-25","sha1":"8a0595da0f2f07c2b779fe8da9ec0fe96bf49d56","md5":"5867632c5a19897c0abf25846643d004","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/PointsParser.java","type":"file","name":"PointsParser.java","base_name":"PointsParser","extension":".java","size":2779,"date":"2019-10-25","sha1":"6984a764d0254523eb3f62a0e904dc038b8144a5","md5":"eddefd07d1f5ea3fff3f940f7597c7a5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/PreserveAspectRatioHandler.java","type":"file","name":"PreserveAspectRatioHandler.java","base_name":"PreserveAspectRatioHandler","extension":".java","size":4188,"date":"2019-10-25","sha1":"b23c0a90ec48957feeb7ff0c0003d14e6a1b73d8","md5":"e0bb19d85a523531e663a8722e2bb99c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/PreserveAspectRatioParser.java","type":"file","name":"PreserveAspectRatioParser.java","base_name":"PreserveAspectRatioParser","extension":".java","size":12692,"date":"2019-10-25","sha1":"e6c8d47e034bba9b6adeb001eb0b30dfd78fb9db","md5":"1083c54ac2263e4dba5f5f4d10ecd89a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/ShapeProducer.java","type":"file","name":"ShapeProducer.java","base_name":"ShapeProducer","extension":".java","size":1510,"date":"2019-10-25","sha1":"f76731e970b959e7c79034f961f48abe0e6f924b","md5":"2fc4f6fd22f8d74704c21a113acd3407","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/TimingParser.java","type":"file","name":"TimingParser.java","base_name":"TimingParser","extension":".java","size":17977,"date":"2019-10-25","sha1":"43288ec43c5e05fc4e6132c14f2495b14031cfc8","md5":"55f70ee8b93eba02ec984d1c71116de8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/TimingSpecifierHandler.java","type":"file","name":"TimingSpecifierHandler.java","base_name":"TimingSpecifierHandler","extension":".java","size":2635,"date":"2019-10-25","sha1":"19be4e1771dc6263a406bb0e4cfad1cdc6230c8f","md5":"f48de82c26a5e79442191f447b136145","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/TimingSpecifierListHandler.java","type":"file","name":"TimingSpecifierListHandler.java","base_name":"TimingSpecifierListHandler","extension":".java","size":1374,"date":"2019-10-25","sha1":"3f7d966de5076eb7a62b6775c06010611ea8eb67","md5":"b08afbbceeb50d4fb35073d64dd18332","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/TimingSpecifierListParser.java","type":"file","name":"TimingSpecifierListParser.java","base_name":"TimingSpecifierListParser","extension":".java","size":3183,"date":"2019-10-25","sha1":"037447d3fa9d91bd83f4ab93dbabd1602b8ccf23","md5":"ed01d995e8c458b20c5daee8bc52d7d5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/TimingSpecifierParser.java","type":"file","name":"TimingSpecifierParser.java","base_name":"TimingSpecifierParser","extension":".java","size":4804,"date":"2019-10-25","sha1":"c27336d68a6b3d215894d5179fd51d09734a99a9","md5":"ca94fd88ce8878b22bed825220eb2770","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/TransformListHandler.java","type":"file","name":"TransformListHandler.java","base_name":"TransformListHandler","extension":".java","size":3693,"date":"2019-10-25","sha1":"7799d05d9b5396fa985dde0a495f0eced132784b","md5":"da7607ffba5d7563821099f10375ea37","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/TransformListParser.java","type":"file","name":"TransformListParser.java","base_name":"TransformListParser","extension":".java","size":13666,"date":"2019-10-25","sha1":"7b493cb110f5da514eedf0941f0b8d04d953195e","md5":"a7d23e1b0ecdecf01789f27901d759ef","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/java/org/apache/batik/parser/UnitProcessor.java","type":"file","name":"UnitProcessor.java","base_name":"UnitProcessor","extension":".java","size":14870,"date":"2019-10-25","sha1":"055a39c4ffff52fb26aedcc10d85ff7cf889ba63","md5":"7c5def678c44da4410d6c97ed47ee3a2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28},{"email":"tkormann@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":7,"size_count":3294,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":6,"size_count":3294,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":5,"size_count":3294,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":4,"size_count":3294,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/resources/org/apache/batik/parser","type":"directory","name":"parser","base_name":"parser","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":3,"size_count":3294,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/resources/org/apache/batik/parser/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1430,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/resources/org/apache/batik/parser/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":1430,"date":"2019-10-25","sha1":"1fe00607a34aa06cf68eba29f0214289bb697e05","md5":"855df2fe7b92625d660d50a93ec22fe9","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/resources/org/apache/batik/parser/style","type":"directory","name":"style","base_name":"style","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":1864,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/resources/org/apache/batik/parser/style/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1864,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/main/resources/org/apache/batik/parser/style/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":1864,"date":"2019-10-25","sha1":"845ae8ac36bac4f81752d4e0972fcac8fdfc3afd","md5":"9db50643de506f4343847947373710d7","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-parser/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer","type":"directory","name":"batik-rasterizer","base_name":"batik-rasterizer","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":13,"size_count":7197,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2640,"date":"2019-10-25","sha1":"2a553baf732d108ebdb2248727f642d6acd703f7","md5":"35f44b3d97ef8b7166491c8ed96eca05","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-rasterizer","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-rasterizer\nBatik SVG Rasterizer Application","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-svgrasterizer","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-rasterizer@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-rasterizer@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-rasterizer/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-rasterizer/1.12/batik-rasterizer-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-rasterizer/1.12/batik-rasterizer-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":12,"size_count":4557,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":8,"size_count":4557,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":6,"size_count":4557,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":5,"size_count":4557,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":4,"size_count":4557,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":3,"size_count":4557,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer/src/main/resources/org/apache/batik/apps","type":"directory","name":"apps","base_name":"apps","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":2,"size_count":4557,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer/src/main/resources/org/apache/batik/apps/rasterizer","type":"directory","name":"rasterizer","base_name":"rasterizer","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":4557,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer/src/main/resources/org/apache/batik/apps/rasterizer/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":4557,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer/src/main/resources/org/apache/batik/apps/rasterizer/resources/rasterizer.policy","type":"file","name":"rasterizer.policy","base_name":"rasterizer","extension":".policy","size":4557,"date":"2019-10-25","sha1":"3ae5abf44574272fad1ddc58446f916570f0233a","md5":"4fa3ba760d0191f5414fe434444950e1","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer-ext","type":"directory","name":"batik-rasterizer-ext","base_name":"batik-rasterizer-ext","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":7,"size_count":2577,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer-ext/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2577,"date":"2019-10-25","sha1":"1d2f144072a0b07060f3f527d59fa791af59b7f5","md5":"f8a50e1883a344c36a2fa5b16c961423","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-rasterizer-ext","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-rasterizer-ext\nBatik SVG Rasterizer Application with Extensions","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer-ext","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-svgrasterizer","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-extension","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-rasterizer-ext@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-rasterizer-ext@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-rasterizer-ext/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-rasterizer-ext/1.12/batik-rasterizer-ext-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-rasterizer-ext/1.12/batik-rasterizer-ext-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer-ext/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":6,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer-ext/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer-ext/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer-ext/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer-ext/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer-ext/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-rasterizer-ext/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script","type":"directory","name":"batik-script","base_name":"batik-script","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":22,"dirs_count":24,"size_count":68828,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2786,"date":"2019-10-25","sha1":"42e7ce031aa0ca1c67c3f09fb62d96b8c90d1cd4","md5":"9764ef540963d1ee35a41f05de89cad8","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-script","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-script\nBatik script language support","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-anim","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.mozilla/rhino","requirement":"${rhino.version}","scope":"compile","is_runtime":true,"is_optional":true,"is_resolved":false},{"purl":"pkg:maven/org.python/jython","requirement":"${jython.version}","scope":"compile","is_runtime":true,"is_optional":true,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-script@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-script@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-script/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-script/1.12/batik-script-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-script/1.12/batik-script-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":21,"dirs_count":23,"size_count":66042,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":21,"dirs_count":19,"size_count":66042,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":8,"size_count":53425,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":7,"size_count":53425,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":6,"size_count":53425,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":5,"size_count":53425,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script","type":"directory","name":"script","base_name":"script","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":4,"size_count":53425,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/ImportInfo.java","type":"file","name":"ImportInfo.java","base_name":"ImportInfo","extension":".java","size":7642,"date":"2019-10-25","sha1":"0c8565b108836abd0550877370ce9236b964b9b2","md5":"d062dc546d2995ff521b3bb23c7fef58","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":52,"end_line":52}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/Interpreter.java","type":"file","name":"Interpreter.java","base_name":"Interpreter","extension":".java","size":3529,"date":"2019-10-25","sha1":"b8cf69aead7deaef07516d1ffcc6b86be92471b5","md5":"3e7de71140c1a762e1820c0d13650c4e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/InterpreterException.java","type":"file","name":"InterpreterException.java","base_name":"InterpreterException","extension":".java","size":3307,"date":"2019-10-25","sha1":"9032eaa07debfeff583395d6be5ad77e2673addf","md5":"eb4d95d46b673df47f9a4988c215e296","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/InterpreterFactory.java","type":"file","name":"InterpreterFactory.java","base_name":"InterpreterFactory","extension":".java","size":2136,"date":"2019-10-25","sha1":"656ca46b5c133f96d1ec5b8a3dd1b3be63273a3e","md5":"f2d8ad8840b8d56f3f05fde0f837ddab","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/InterpreterPool.java","type":"file","name":"InterpreterPool.java","base_name":"InterpreterPool","extension":".java","size":5214,"date":"2019-10-25","sha1":"f50fb564ce194cd75809266d2cc56572fd07b7cb","md5":"d18831ce11e3983e82aa71356c004816","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":278,"date":"2019-10-25","sha1":"8f1c2ee56c1838bc24ac682e2b599bbfb411d2ee","md5":"55278d287aa92c5a46bd7c80729866e4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/ScriptEventWrapper.java","type":"file","name":"ScriptEventWrapper.java","base_name":"ScriptEventWrapper","extension":".java","size":1225,"date":"2019-10-25","sha1":"232431058834f92e1c25b9f3d697ac1d3c3d545b","md5":"dccdbf7d9acaae24a2e814a241fa7e8d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/jacl","type":"directory","name":"jacl","base_name":"jacl","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":6591,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/jacl/JaclInterpreter.java","type":"file","name":"JaclInterpreter.java","base_name":"JaclInterpreter","extension":".java","size":3679,"date":"2019-10-25","sha1":"848dcca3a958904963216c4f99618146dd00fd1a","md5":"f174e56b0750c2ec5202df274adedffa","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/jacl/JaclInterpreterFactory.java","type":"file","name":"JaclInterpreterFactory.java","base_name":"JaclInterpreterFactory","extension":".java","size":2580,"date":"2019-10-25","sha1":"13998aa493ac9b43e2ea8572768c08b62e31cbda","md5":"279524db055fadd960ecff903eaa8c76","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/jacl/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":332,"date":"2019-10-25","sha1":"f4f67ad452ea057bc57dca667ae5240a5c4147ea","md5":"e6ff06ddceaef04fc3776e0ab88238fc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://dev.scriptics.com/software/java/","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/jpython","type":"directory","name":"jpython","base_name":"jpython","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":6158,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/jpython/JPythonInterpreter.java","type":"file","name":"JPythonInterpreter.java","base_name":"JPythonInterpreter","extension":".java","size":3213,"date":"2019-10-25","sha1":"f89b4d421fbbebe12ef9642bd4c89561383598ec","md5":"34f8c5d5eda4294d58b11b9379633a7a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/jpython/JPythonInterpreterFactory.java","type":"file","name":"JPythonInterpreterFactory.java","base_name":"JPythonInterpreterFactory","extension":".java","size":2621,"date":"2019-10-25","sha1":"2574dd35f8d5ceca953cb83082dbdb2a92d26a09","md5":"0126356544e51288be434d46c2f9bf77","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/jpython/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":324,"date":"2019-10-25","sha1":"319810a99c282ecdf6fa527500d7412818f31d3f","md5":"74ddd415642dc58633b2920701b52df0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.jpython.org/","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/rhino","type":"directory","name":"rhino","base_name":"rhino","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":1,"size_count":17345,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/rhino/BatikSecurityController.java","type":"file","name":"BatikSecurityController.java","base_name":"BatikSecurityController","extension":".java","size":4570,"date":"2019-10-25","sha1":"219e878feebff9e5c4b368a96edc930147281b84","md5":"778393d26d3040cee9849e994a443888","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/rhino/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2764,"date":"2019-10-25","sha1":"3489317edff706c0f7e27d8c35606cef0cf4ffa2","md5":"fa2ac6031879c818a33a8d0cf56c38fb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/rhino/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":330,"date":"2019-10-25","sha1":"5c9db01aa6e602bd2d5adea2e4f1b1f917f91d94","md5":"5c5a158e47aebdd35cc2936c80e93d89","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.mozilla.org/rhino","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/rhino/RhinoClassLoader.java","type":"file","name":"RhinoClassLoader.java","base_name":"RhinoClassLoader","extension":".java","size":5471,"date":"2019-10-25","sha1":"95057a68ef4ee306e11c66d0503ffbf2ef44698e","md5":"e2f01a1bd50fa90c1e3dd0451c581484","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/rhino/RhinoClassShutter.java","type":"file","name":"RhinoClassShutter.java","base_name":"RhinoClassShutter","extension":".java","size":4210,"date":"2019-10-25","sha1":"daa6a5fc01b5fd87e42e43e96e752abaae052ff5","md5":"19fac7f80c3c8bf98b24aceb23ee7c2e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/java/org/apache/batik/script/rhino/svg12","type":"directory","name":"svg12","base_name":"svg12","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":9,"size_count":12617,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/resources/META-INF","type":"directory","name":"META-INF","base_name":"META-INF","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":2,"size_count":11240,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/resources/META-INF/imports","type":"directory","name":"imports","base_name":"imports","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":9892,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/resources/META-INF/imports/script.txt","type":"file","name":"script.txt","base_name":"script","extension":".txt","size":9892,"date":"2019-10-25","sha1":"b387752f45370a2a673aa9e205e3d633f3706513","md5":"137dba0b5a1fdacce4a98c7f989a4f9e","mime_type":"text/x-c++","file_type":"C++ source, ASCII text","programming_language":"TypeScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/resources/META-INF/services","type":"directory","name":"services","base_name":"services","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1348,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/resources/META-INF/services/org.apache.batik.script.InterpreterFactory","type":"file","name":"org.apache.batik.script.InterpreterFactory","base_name":"org.apache.batik.script","extension":".InterpreterFactory","size":1348,"date":"2019-10-25","sha1":"be1ce75f5529e487444e92d30389329e655ba39f","md5":"44a0246b81615312b70a0737c0856da8","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":5,"size_count":1377,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":4,"size_count":1377,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":3,"size_count":1377,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/resources/org/apache/batik/script","type":"directory","name":"script","base_name":"script","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":2,"size_count":1377,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/resources/org/apache/batik/script/rhino","type":"directory","name":"rhino","base_name":"rhino","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":1377,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/resources/org/apache/batik/script/rhino/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1377,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/main/resources/org/apache/batik/script/rhino/resources/messages.properties","type":"file","name":"messages.properties","base_name":"messages","extension":".properties","size":1377,"date":"2019-10-25","sha1":"16398c0e8d896a23c692ee0bb9f1ac920211c52a","md5":"5fe39e8fe0c9ae39b2627b396dbe296e","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-script/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow","type":"directory","name":"batik-slideshow","base_name":"batik-slideshow","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":16,"size_count":18529,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2755,"date":"2019-10-25","sha1":"cd680adeb4c2e8cddfe9f067d1dcc169c9cd290f","md5":"729a0a110cc79f9ab8ff669dbbdf4236","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-slideshow","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-slideshow\nBatik SVG Slideshow Application","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-bridge","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-gvt","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/xml-apis/xml-apis-ext","requirement":"${xmlapisext.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-slideshow@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-slideshow@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-slideshow/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-slideshow/1.12/batik-slideshow-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-slideshow/1.12/batik-slideshow-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":15,"size_count":15774,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":11,"size_count":15774,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":5,"size_count":15774,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":4,"size_count":15774,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":3,"size_count":15774,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":2,"size_count":15774,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/main/java/org/apache/batik/apps","type":"directory","name":"apps","base_name":"apps","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":15774,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/main/java/org/apache/batik/apps/slideshow","type":"directory","name":"slideshow","base_name":"slideshow","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":15774,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/main/java/org/apache/batik/apps/slideshow/Main.java","type":"file","name":"Main.java","base_name":"Main","extension":".java","size":15774,"date":"2019-10-25","sha1":"0c33558adff789c3a39f718836c3162bdf3c31ab","md5":"258563ea0406be8567d6505f6c7d3a29","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":4,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":3,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":1,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/main/resources/org/apache/batik/apps","type":"directory","name":"apps","base_name":"apps","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-slideshow/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle","type":"directory","name":"batik-squiggle","base_name":"batik-squiggle","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":7,"size_count":2433,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2433,"date":"2019-10-25","sha1":"117d8bcedc25abefcb880614092c309cbdf82525","md5":"0168e4ab1e92d9e88efacc6932f29431","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-squiggle","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-squiggle\nBatik SVG Browser Application","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-svgbrowser","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-squiggle@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-squiggle@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-squiggle/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-squiggle/1.12/batik-squiggle-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-squiggle/1.12/batik-squiggle-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":6,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle-ext","type":"directory","name":"batik-squiggle-ext","base_name":"batik-squiggle-ext","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":7,"size_count":2569,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle-ext/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2569,"date":"2019-10-25","sha1":"07a1f9b22c6ec7dc4f3772d82555bf652dfd5486","md5":"ea05278abf5b764dc7307dfc29d93501","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-squiggle-ext","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-squiggle-ext\nBatik SVG Browser Application with Extensions","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle-ext","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-svgbrowser","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-extension","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-squiggle-ext@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-squiggle-ext@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-squiggle-ext/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-squiggle-ext/1.12/batik-squiggle-ext-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-squiggle-ext/1.12/batik-squiggle-ext-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle-ext/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":6,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle-ext/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle-ext/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle-ext/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle-ext/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle-ext/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-squiggle-ext/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom","type":"directory","name":"batik-svg-dom","base_name":"batik-svg-dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":101,"dirs_count":19,"size_count":1205197,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2947,"date":"2019-10-25","sha1":"024d68298be6faf2b9e43905de63a25127e48ac5","md5":"cebf6e5109f6faf194086488e612f3f8","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-svg-dom","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-svg-dom\nBatik SVG DOM implementation","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-awt-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-css","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-dom","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-ext","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-parser","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/xml-apis/xml-apis-ext","requirement":"${xmlapisext.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-svg-dom@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-svg-dom@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svg-dom/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svg-dom/1.12/batik-svg-dom-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svg-dom/1.12/batik-svg-dom-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":100,"dirs_count":18,"size_count":1202250,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":100,"dirs_count":14,"size_count":1202250,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":45,"dirs_count":6,"size_count":214675,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":45,"dirs_count":5,"size_count":214675,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":45,"dirs_count":4,"size_count":214675,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":45,"dirs_count":3,"size_count":214675,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom","type":"directory","name":"dom","base_name":"dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":45,"dirs_count":2,"size_count":214675,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg","type":"directory","name":"svg","base_name":"svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":41,"dirs_count":0,"size_count":205163,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/AbstractSVGItem.java","type":"file","name":"AbstractSVGItem.java","base_name":"AbstractSVGItem","extension":".java","size":2504,"date":"2019-10-25","sha1":"5e5b6451b5d1dd3774c175a66fa67157d3b9b72a","md5":"f689970f5d48cf0ce952e09159c88d54","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/AbstractSVGList.java","type":"file","name":"AbstractSVGList.java","base_name":"AbstractSVGList","extension":".java","size":15399,"date":"2019-10-25","sha1":"f30c807aceb1470884e382da9587e4c311392df4","md5":"8d229a4b5fb82686df300e1a319d85f0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":48,"end_line":48}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/AbstractSVGMatrix.java","type":"file","name":"AbstractSVGMatrix.java","base_name":"AbstractSVGMatrix","extension":".java","size":9067,"date":"2019-10-25","sha1":"8286adc40b59dd87bdd76d912e160deb6e6c3d2b","md5":"4160d94459fd8176473ee9f82f1adcf3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/AbstractSVGNormPathSegList.java","type":"file","name":"AbstractSVGNormPathSegList.java","base_name":"AbstractSVGNormPathSegList","extension":".java","size":13737,"date":"2019-10-25","sha1":"3d6843da3b360a1afcc31d29e8866fcdd8b10b09","md5":"dbebce6cf1f4cc9de08a19abdda89ac7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"andrest@world-affair.com","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/AbstractSVGNumber.java","type":"file","name":"AbstractSVGNumber.java","base_name":"AbstractSVGNumber","extension":".java","size":1469,"date":"2019-10-25","sha1":"a65dd0f4d90930b9d659fd3964cac0845893bc7e","md5":"2969252ce4658a2a5d93694735e9b70d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tonny@kiyut.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/AbstractSVGNumberList.java","type":"file","name":"AbstractSVGNumberList.java","base_name":"AbstractSVGNumberList","extension":".java","size":6488,"date":"2019-10-25","sha1":"bf005ce284ffbc5f9b5a81b817ac8b2aa26d169c","md5":"83195ac8a8fd0df702830cd173ed71d0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tonny@kiyut.com","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/AbstractSVGPathSegList.java","type":"file","name":"AbstractSVGPathSegList.java","base_name":"AbstractSVGPathSegList","extension":".java","size":33609,"date":"2019-10-25","sha1":"909f6e65504496d22e938cbfb687898bcdb701d7","md5":"703660c4e5713e6479933971b584e0b3","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":51,"end_line":52}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":51,"end_line":51}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/AbstractSVGPointList.java","type":"file","name":"AbstractSVGPointList.java","base_name":"AbstractSVGPointList","extension":".java","size":5675,"date":"2019-10-25","sha1":"a10fddc38710413e511e3ff2328e83b343916b50","md5":"2fa305308937445a441e7f4427fe3952","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/AbstractSVGPreserveAspectRatio.java","type":"file","name":"AbstractSVGPreserveAspectRatio.java","base_name":"AbstractSVGPreserveAspectRatio","extension":".java","size":10029,"date":"2019-10-25","sha1":"8242a964f178213835a5d9d2421ae9c111ba49e7","md5":"1737eb13be185bb4a4046d6494b6094f","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Tonny Kohar","start_line":34,"end_line":35}],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/AbstractSVGTransform.java","type":"file","name":"AbstractSVGTransform.java","base_name":"AbstractSVGTransform","extension":".java","size":5367,"date":"2019-10-25","sha1":"08a5f668763899865df22f95ca97b7a978afe75c","md5":"9e08d678416585524411ebe12755acca","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":29,"end_line":30}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/AbstractSVGTransformList.java","type":"file","name":"AbstractSVGTransformList.java","base_name":"AbstractSVGTransformList","extension":".java","size":20911,"date":"2019-10-25","sha1":"4410af03fc67702022e346ecb80b7cebc534ed1d","md5":"403d7144c927bf900a5bf80aabe5ed2c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/ExtendedTraitAccess.java","type":"file","name":"ExtendedTraitAccess.java","base_name":"ExtendedTraitAccess","extension":".java","size":2632,"date":"2019-10-25","sha1":"5a05e62427e118cbee31b5080e078304b96964a1","md5":"27fa615a3f9c36c46fcc5de4c4db103c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/IdContainer.java","type":"file","name":"IdContainer.java","base_name":"IdContainer","extension":".java","size":1390,"date":"2019-10-25","sha1":"ac51e5c8950bdb6496a8f2fb30112ba90c4bd111","md5":"e02e7856e4bda9edfd5c0f3e146a560f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/ListBuilder.java","type":"file","name":"ListBuilder.java","base_name":"ListBuilder","extension":".java","size":1808,"date":"2019-10-25","sha1":"9456bfaf228990b6a86eab3fd5ffb75718f36099","md5":"3f476f266503324deaebf868b87be1b1","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/ListHandler.java","type":"file","name":"ListHandler.java","base_name":"ListHandler","extension":".java","size":1631,"date":"2019-10-25","sha1":"8394a73c5be5f4aceb6e886241e3c9607637852c","md5":"47943ab723ecf634ce0e13db19bd53b4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/LiveAttributeException.java","type":"file","name":"LiveAttributeException.java","base_name":"LiveAttributeException","extension":".java","size":2786,"date":"2019-10-25","sha1":"b8f2378212a654006505004a5d2165a268976866","md5":"631f6a9b52b0bdd4cbc6c00f20b0d723","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/LiveAttributeValue.java","type":"file","name":"LiveAttributeValue.java","base_name":"LiveAttributeValue","extension":".java","size":1548,"date":"2019-10-25","sha1":"5b30d8f041929c4508e950c88fe35b181f8f8c99","md5":"58ee68ed4279df94e1a87d16efc66f0b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGAnimatedPathDataSupport.java","type":"file","name":"SVGAnimatedPathDataSupport.java","base_name":"SVGAnimatedPathDataSupport","extension":".java","size":8155,"date":"2019-10-25","sha1":"5913c8db6c4829b20245318978e437bb7a1b4227","md5":"d71e4a02181cebd23571379b6be3de71","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":48,"end_line":48}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGAnimationContext.java","type":"file","name":"SVGAnimationContext.java","base_name":"SVGAnimationContext","extension":".java","size":2217,"date":"2019-10-25","sha1":"c6028d050ef36e92530eab53bb57285ec316db3e","md5":"2309bbf15508e36ea33ada1ff478d9ff","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGContext.java","type":"file","name":"SVGContext.java","base_name":"SVGContext","extension":".java","size":3025,"date":"2019-10-25","sha1":"3ec60eff39324842b5e3698785282a1c474b51be","md5":"04c485b679a117d5ab1981433820c6c3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGDocumentFactory.java","type":"file","name":"SVGDocumentFactory.java","base_name":"SVGDocumentFactory","extension":".java","size":2124,"date":"2019-10-25","sha1":"efb54850a120e1dd831d3a40caf02856e1e12f21","md5":"7ae0b8fb58d5065d5c9f75d1e57e382e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGItem.java","type":"file","name":"SVGItem.java","base_name":"SVGItem","extension":".java","size":2152,"date":"2019-10-25","sha1":"91a0ee9bf61256d44f144e1f100022435f70bbf3","md5":"4b55f123478902fb61a9864ddf2c24dc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGMotionAnimatableElement.java","type":"file","name":"SVGMotionAnimatableElement.java","base_name":"SVGMotionAnimatableElement","extension":".java","size":1335,"date":"2019-10-25","sha1":"75dd9b0ae9fe8259c2d7b0cadbebaa242861d714","md5":"f60c8306d3891fecffe5b43ec6985505","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGNumberItem.java","type":"file","name":"SVGNumberItem.java","base_name":"SVGNumberItem","extension":".java","size":1920,"date":"2019-10-25","sha1":"95e53be1752eafbd6fe1f44df9b94e7d39b2fdd6","md5":"1e022667722d979fb9c295ec6f71f422","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGOMAngle.java","type":"file","name":"SVGOMAngle.java","base_name":"SVGOMAngle","extension":".java","size":5811,"date":"2019-10-25","sha1":"b35c74ea0cdf1ba4cc33768df5947711099d39d9","md5":"f2f6e1d1252ba5c216971603f62715c7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGOMEvent.java","type":"file","name":"SVGOMEvent.java","base_name":"SVGOMEvent","extension":".java","size":1225,"date":"2019-10-25","sha1":"0dddb99fcb23fc35bf061c9c9f094b3546028053","md5":"36fa0ef581a58108947fdd8721ae3d78","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGOMException.java","type":"file","name":"SVGOMException.java","base_name":"SVGOMException","extension":".java","size":1402,"date":"2019-10-25","sha1":"a1683431ab8dca5cf595a3770e21c8a885823fc8","md5":"4aff1793162c55ccaa7b6a03b71c2995","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGOMMatrix.java","type":"file","name":"SVGOMMatrix.java","base_name":"SVGOMMatrix","extension":".java","size":1588,"date":"2019-10-25","sha1":"ecc884d82a579c5df6d917981296692b6d692292","md5":"2d86a57380f1cc5828b507e800da8391","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGOMPoint.java","type":"file","name":"SVGOMPoint.java","base_name":"SVGOMPoint","extension":".java","size":2876,"date":"2019-10-25","sha1":"7aac0affd516ca0454c65d224dc39c12fb04f7ac","md5":"2b975dda71df395532a9e8072a61e971","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGOMRect.java","type":"file","name":"SVGOMRect.java","base_name":"SVGOMRect","extension":".java","size":2991,"date":"2019-10-25","sha1":"c4abaed2de2f0e630db46b189a8208806ff6ec2d","md5":"939080f0c4cd45589fb8c9ff4ccdf0e1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGOMTransform.java","type":"file","name":"SVGOMTransform.java","base_name":"SVGOMTransform","extension":".java","size":2703,"date":"2019-10-25","sha1":"75a87fe122c4aac93b1e88d2c2a94f53a1828be8","md5":"0eaa5fadea42586cbc8145d8f4ec1141","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGOMUseShadowRoot.java","type":"file","name":"SVGOMUseShadowRoot.java","base_name":"SVGOMUseShadowRoot","extension":".java","size":3982,"date":"2019-10-25","sha1":"70e7b8a810012d49d95a5b9c12164858540e5051","md5":"041b246b4916b16750c16894cdca0b46","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGPathContext.java","type":"file","name":"SVGPathContext.java","base_name":"SVGPathContext","extension":".java","size":1513,"date":"2019-10-25","sha1":"517326421a82911b0f2f2cdb38ff9d3893ef7e43","md5":"8e281bc383fe3ee77a14e8c6eb79808f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGPathSegConstants.java","type":"file","name":"SVGPathSegConstants.java","base_name":"SVGPathSegConstants","extension":".java","size":3137,"date":"2019-10-25","sha1":"07440a9945d82bf478783714e5a58f4b0731bdb1","md5":"aaf18bd8f74c6ab5928f85c8ebc95a6c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGPathSegItem.java","type":"file","name":"SVGPathSegItem.java","base_name":"SVGPathSegItem","extension":".java","size":3419,"date":"2019-10-25","sha1":"f9a877ed248bda3da4ec70e3ed48ee71f16ef8c7","md5":"a503f8439709dc34f81f3b5907b35957","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGPointItem.java","type":"file","name":"SVGPointItem.java","base_name":"SVGPointItem","extension":".java","size":2275,"date":"2019-10-25","sha1":"220b418d0d0a54cce909a9c9d581684b02113911","md5":"c7b75db2dd770c4e53bbe8870b3960e1","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGSVGContext.java","type":"file","name":"SVGSVGContext.java","base_name":"SVGSVGContext","extension":".java","size":3139,"date":"2019-10-25","sha1":"c11109d9e220f55014b9fb426819fb80bd386ba5","md5":"49cecf27d5be7bfd957a5f9e3ebecab4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGTestsSupport.java","type":"file","name":"SVGTestsSupport.java","base_name":"SVGTestsSupport","extension":".java","size":2390,"date":"2019-10-25","sha1":"e1b49aa61fddf449883c2c3e36bba008a8eae1e7","md5":"71443dc1bb104d1a420af847006d1340","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGTextContent.java","type":"file","name":"SVGTextContent.java","base_name":"SVGTextContent","extension":".java","size":6035,"date":"2019-10-25","sha1":"315859babad787c30b158f7e13a91c7c12f058b8","md5":"34e15bc94f020944b8e9ec28afe0d43d","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":28,"end_line":29}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/SVGZoomAndPanSupport.java","type":"file","name":"SVGZoomAndPanSupport.java","base_name":"SVGZoomAndPanSupport","extension":".java","size":2552,"date":"2019-10-25","sha1":"f21aafa48cb497ec7a2d0813e85eed44111b9be5","md5":"fa873381d318928fa1b23a9106919c46","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg/TraitAccess.java","type":"file","name":"TraitAccess.java","base_name":"TraitAccess","extension":".java","size":1147,"date":"2019-10-25","sha1":"fa34b3021467465420a7fe6eac2cc6bf03367bb8","md5":"05e1827dae008310279ca7bc10595a5c","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg12","type":"directory","name":"svg12","base_name":"svg12","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":9512,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg12/Global.java","type":"file","name":"Global.java","base_name":"Global","extension":".java","size":905,"date":"2019-10-25","sha1":"3a491e85e360fe0082e018b806ec64bf7f8eb6a1","md5":"a1c7e998c34a67c6c63bf3468b671952","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,"licenses":[{"key":"w3c","score":85.48,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":2,"end_line":8,"matched_rule":{"identifier":"w3c_3.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":62,"matched_length":53,"match_coverage":85.48,"rule_relevance":100}},{"key":"w3c","score":55.0,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":10,"end_line":10,"matched_rule":{"identifier":"w3c-software-20021231_5.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"3-seq","rule_length":10,"matched_length":10,"match_coverage":100.0,"rule_relevance":55}}],"license_expressions":["w3c","w3c"],"copyrights":[{"value":"Copyright (c) 2005 World Wide Web Consortium","start_line":2,"end_line":2}],"holders":[{"value":"World Wide Web Consortium","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg12/SVGGlobal.java","type":"file","name":"SVGGlobal.java","base_name":"SVGGlobal","extension":".java","size":2647,"date":"2019-10-25","sha1":"f8231ce0fee1da644e528d8c807442a5b971c1f9","md5":"dc108fac4f2d38a191c6488e05e95d5d","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,"licenses":[{"key":"w3c","score":85.48,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":2,"end_line":8,"matched_rule":{"identifier":"w3c_3.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":62,"matched_length":53,"match_coverage":85.48,"rule_relevance":100}},{"key":"w3c","score":55.0,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":10,"end_line":10,"matched_rule":{"identifier":"w3c-software-20021231_5.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"3-seq","rule_length":10,"matched_length":10,"match_coverage":100.0,"rule_relevance":55}}],"license_expressions":["w3c","w3c"],"copyrights":[{"value":"Copyright (c) 2005 World Wide Web Consortium","start_line":2,"end_line":2}],"holders":[{"value":"World Wide Web Consortium","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg12/SVGOMWheelEvent.java","type":"file","name":"SVGOMWheelEvent.java","base_name":"SVGOMWheelEvent","extension":".java","size":3391,"date":"2019-10-25","sha1":"bced6e114961660201ade8a08249d26131553234","md5":"c4f00c724a10af21fef323c1da7592cb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/java/org/apache/batik/dom/svg12/XBLOMShadowTreeEvent.java","type":"file","name":"XBLOMShadowTreeEvent.java","base_name":"XBLOMShadowTreeEvent","extension":".java","size":2569,"date":"2019-10-25","sha1":"8bc80767a45fbd62d96b6d4977980b526044259a","md5":"d7b99811ab5c91310e15023c8e1fb351","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":55,"dirs_count":6,"size_count":987575,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":55,"dirs_count":5,"size_count":987575,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":55,"dirs_count":4,"size_count":987575,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":55,"dirs_count":3,"size_count":987575,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom","type":"directory","name":"dom","base_name":"dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":55,"dirs_count":2,"size_count":987575,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg","type":"directory","name":"svg","base_name":"svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":55,"dirs_count":1,"size_count":987575,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":55,"dirs_count":0,"size_count":987575,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":2640,"date":"2019-10-25","sha1":"531bb48164f05559315efe7c6744fa904d320506","md5":"a11deaaa3786e6e79f2a5ac758b4ddfe","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-animation.mod","type":"file","name":"svg-animation.mod","base_name":"svg-animation","extension":".mod","size":8412,"date":"2019-10-25","sha1":"cc78573b1e6a04618ddbaf1c1b12cc75e9c41af8","md5":"803dffba89d7da08e2c99381fda16931","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-animation.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-animevents-attrib.mod","type":"file","name":"svg-animevents-attrib.mod","base_name":"svg-animevents-attrib","extension":".mod","size":1453,"date":"2019-10-25","sha1":"2e76c85441e0884ff662b6502b9f2b50918c3a33","md5":"6933260539adedb6c1912e86d8daede2","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-animevents-attrib.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-basic-clip.mod","type":"file","name":"svg-basic-clip.mod","base_name":"svg-basic-clip","extension":".mod","size":3116,"date":"2019-10-25","sha1":"69d3767b9721752f8a5ff191b0812bd9de897f26","md5":"a47893a7a43e404bf7b5f76b20a43eb9","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-basic-clip.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-basic-filter.mod","type":"file","name":"svg-basic-filter.mod","base_name":"svg-basic-filter","extension":".mod","size":17761,"date":"2019-10-25","sha1":"72abd930e3eab86964a622ff88d00b6357f20ed4","md5":"420d96e90bc104221773ee898cae7408","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-basic-filter.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-basic-font.mod","type":"file","name":"svg-basic-font.mod","base_name":"svg-basic-font","extension":".mod","size":10575,"date":"2019-10-25","sha1":"a3825868e8817b8318e17f26392fbc6dd4aa1538","md5":"a11b0f54e9888a9571188513545d3999","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-basic-font.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-basic-graphics-attrib.mod","type":"file","name":"svg-basic-graphics-attrib.mod","base_name":"svg-basic-graphics-attrib","extension":".mod","size":1530,"date":"2019-10-25","sha1":"123f10260427805e743dca3484aaa47762dd3a0d","md5":"ec6f2ea5514aeca494997c532f773552","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-basic-graphics-attrib.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-basic-structure.mod","type":"file","name":"svg-basic-structure.mod","base_name":"svg-basic-structure","extension":".mod","size":9740,"date":"2019-10-25","sha1":"524be7ff4d9614245bb98684897abedb9a207890","md5":"60de958b58cd371a5ecd81a4fb1d2025","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-basic-structure.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-basic-text.mod","type":"file","name":"svg-basic-text.mod","base_name":"svg-basic-text","extension":".mod","size":5867,"date":"2019-10-25","sha1":"64cc55ffc7f1acc34c34667f8d677d5fdf5d6857","md5":"102c3a916bae8033bd125f2762498ed7","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-basic-text.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-clip.mod","type":"file","name":"svg-clip.mod","base_name":"svg-clip","extension":".mod","size":3096,"date":"2019-10-25","sha1":"54d3891a493180d221cddfd473115cf0603dff22","md5":"b21293cbf985d79a2b1fcb8f805e6d20","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-clip.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-conditional.mod","type":"file","name":"svg-conditional.mod","base_name":"svg-conditional","extension":".mod","size":4208,"date":"2019-10-25","sha1":"38ae29d947efff230c3fbc0dae7a103b680abc42","md5":"687dec564f58f6deb694f8e6447c4057","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-conditional.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-container-attrib.mod","type":"file","name":"svg-container-attrib.mod","base_name":"svg-container-attrib","extension":".mod","size":1282,"date":"2019-10-25","sha1":"11f6684b90edd014959d68b44f4825535d723709","md5":"c93ba0bf7ea46a9d74a36bbc67527865","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-container-attrib.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-core-attrib.mod","type":"file","name":"svg-core-attrib.mod","base_name":"svg-core-attrib","extension":".mod","size":1378,"date":"2019-10-25","sha1":"864893f3ca615c971fa4d72bd6226ffdb3b05d1f","md5":"8b830f6b7807fb9e8531afc2b9f31596","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-core-attrib.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-cursor.mod","type":"file","name":"svg-cursor.mod","base_name":"svg-cursor","extension":".mod","size":2318,"date":"2019-10-25","sha1":"dffaedcda1bdd736bc4722ff81e2241fd3a00481","md5":"18bfede216af71f08af682aee2b9ea82","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-cursor.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-datatypes.mod","type":"file","name":"svg-datatypes.mod","base_name":"svg-datatypes","extension":".mod","size":2580,"date":"2019-10-25","sha1":"dbbcfbf346d989a8d650c7b31bb53c03553e8eeb","md5":"d1c312e27ccb2d998e4802f8a1806aab","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-datatypes.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-docevents-attrib.mod","type":"file","name":"svg-docevents-attrib.mod","base_name":"svg-docevents-attrib","extension":".mod","size":1677,"date":"2019-10-25","sha1":"adfff30e74abc9740669b2fe1ee3c59eb7204f30","md5":"9286d158a547dc7a11f9adff3b6da13f","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-docevents-attrib.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-extensibility.mod","type":"file","name":"svg-extensibility.mod","base_name":"svg-extensibility","extension":".mod","size":3660,"date":"2019-10-25","sha1":"3cd09b9bd1e150b9e0ead6f85ed1b2c530085329","md5":"12890d1b955a0496f4b0aeef3f45bf2a","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-extensibility.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-extresources-attrib.mod","type":"file","name":"svg-extresources-attrib.mod","base_name":"svg-extresources-attrib","extension":".mod","size":1191,"date":"2019-10-25","sha1":"f6e5874af7cf4280ee06788b9ca675f890be681b","md5":"57d80d058ec90b3a079e24da9ceb6515","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-extresources-attrib.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-filter.mod","type":"file","name":"svg-filter.mod","base_name":"svg-filter","extension":".mod","size":26885,"date":"2019-10-25","sha1":"7d2f8e9373fa6e627778b6531be517be4dae181b","md5":"27c8088fb0c978a3b1d04fcd13fc762c","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-filter.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-font.mod","type":"file","name":"svg-font.mod","base_name":"svg-font","extension":".mod","size":12726,"date":"2019-10-25","sha1":"19aff46ea8681d2d03f57c4e2570a2d9fd757eec","md5":"c51443111b10a87eb47c83dd626f7aee","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-font.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-framework.mod","type":"file","name":"svg-framework.mod","base_name":"svg-framework","extension":".mod","size":1697,"date":"2019-10-25","sha1":"479649a55c4820c122ac622c52434083bfbd7f43","md5":"f9092b4e48e4eae781320d690fd2dff6","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-framework.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-gradient.mod","type":"file","name":"svg-gradient.mod","base_name":"svg-gradient","extension":".mod","size":4933,"date":"2019-10-25","sha1":"b916e69fce412f750f7673fc0eb25f11e8c0978b","md5":"32a53f12e11200d3fa8e7b41e55f4d37","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-gradient.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-graphevents-attrib.mod","type":"file","name":"svg-graphevents-attrib.mod","base_name":"svg-graphevents-attrib","extension":".mod","size":2239,"date":"2019-10-25","sha1":"b0a7f048b062fd67e7d5c53579116d0c6002f599","md5":"218e00cb1360e36add12b6008afdb0ac","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-graphevents-attrib.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-graphics-attrib.mod","type":"file","name":"svg-graphics-attrib.mod","base_name":"svg-graphics-attrib","extension":".mod","size":2405,"date":"2019-10-25","sha1":"36ab1664463370d3d4f18f8245f6af51b4bf877e","md5":"9b6dcfd39a6755c30588bfab19039d2d","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-graphics-attrib.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-hyperlink.mod","type":"file","name":"svg-hyperlink.mod","base_name":"svg-hyperlink","extension":".mod","size":3908,"date":"2019-10-25","sha1":"72564b78881829ede956f433c625a733fe5b3634","md5":"0dd5ba4f6322857bfd3260d4eb116d64","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-hyperlink.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-image.mod","type":"file","name":"svg-image.mod","base_name":"svg-image","extension":".mod","size":2856,"date":"2019-10-25","sha1":"d62619ce4166d05d8b769adbb44cf8ee9b77d445","md5":"056933eaede1ca1bb84e0e8997bb7695","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-image.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-marker.mod","type":"file","name":"svg-marker.mod","base_name":"svg-marker","extension":".mod","size":4391,"date":"2019-10-25","sha1":"31dcaa5e6b0af7207e002005ad9d92c392fb4bca","md5":"3b65f918ceb3737d8b04841b9ce6f250","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-marker.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-mask.mod","type":"file","name":"svg-mask.mod","base_name":"svg-mask","extension":".mod","size":4205,"date":"2019-10-25","sha1":"74c1dd1627acf1205e9c18fb83672f42ea8d55d8","md5":"01c765b3de3e88fcc3b62b71e721bc2f","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-mask.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-opacity-attrib.mod","type":"file","name":"svg-opacity-attrib.mod","base_name":"svg-opacity-attrib","extension":".mod","size":1368,"date":"2019-10-25","sha1":"38b33b58247a675219630e2d4961d00eb6949c37","md5":"dcd7a4e66df0f4091feba44febcd952a","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-opacity-attrib.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-paint-attrib.mod","type":"file","name":"svg-paint-attrib.mod","base_name":"svg-paint-attrib","extension":".mod","size":3421,"date":"2019-10-25","sha1":"ffed1c862053e320c5dfbb060b417d5caaf04996","md5":"81b35932a672c7c5bf7994bef0074093","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-paint-attrib.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-pattern.mod","type":"file","name":"svg-pattern.mod","base_name":"svg-pattern","extension":".mod","size":4248,"date":"2019-10-25","sha1":"68fe5157d53edf8ce3ca97c0987cc0a6df3377bd","md5":"ab123fda0a6ae943de2d3974652c7556","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-pattern.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-profile.mod","type":"file","name":"svg-profile.mod","base_name":"svg-profile","extension":".mod","size":2302,"date":"2019-10-25","sha1":"01f20a45888cc90992ec6a76bfd85534116c0db4","md5":"bbdb3e796837d2413e1c713ba18cf3ca","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-profile.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-qname.mod","type":"file","name":"svg-qname.mod","base_name":"svg-qname","extension":".mod","size":9598,"date":"2019-10-25","sha1":"dbfe09de14d60c987ef997018111ad8cab749fab","md5":"3839eaaea23049d5293513af214a4791","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-qname.mod","start_line":12,"end_line":12},{"url":"http://www.w3.org/1999/xlink","start_line":43,"end_line":43}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-script.mod","type":"file","name":"svg-script.mod","base_name":"svg-script","extension":".mod","size":1871,"date":"2019-10-25","sha1":"5acb04b51d8fe1ffcf54ccce200e05535de367f5","md5":"7ed49508c39ca471370cdd34b1f56672","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-script.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-shape.mod","type":"file","name":"svg-shape.mod","base_name":"svg-shape","extension":".mod","size":9294,"date":"2019-10-25","sha1":"b005e926cf69b2d6dda49456724c71430c28e8b3","md5":"7a633f9efa8d16aba25a4b7d99c4eaf5","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-shape.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-structure.mod","type":"file","name":"svg-structure.mod","base_name":"svg-structure","extension":".mod","size":10928,"date":"2019-10-25","sha1":"c8d0544f3ba3058401761aaff3d0189c61d5d8ac","md5":"5c9062bf947b701d1faf17aaaaf3d645","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-structure.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-style.mod","type":"file","name":"svg-style.mod","base_name":"svg-style","extension":".mod","size":2317,"date":"2019-10-25","sha1":"9aa31e5d13b760aa5069e93e81b7c698b03a839e","md5":"ae3e03b1c7c868f96de50f7f36115710","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-style.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-text.mod","type":"file","name":"svg-text.mod","base_name":"svg-text","extension":".mod","size":14159,"date":"2019-10-25","sha1":"0799581cb01d94c79869e7b042948362ae521fb2","md5":"3632418bf3a4597e94aa736ff361d123","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-text.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-view.mod","type":"file","name":"svg-view.mod","base_name":"svg-view","extension":".mod","size":1924,"date":"2019-10-25","sha1":"f6e26d1c96e227e9fe4b89a7f9f34d0bffaf832e","md5":"87181c86a2b51bcf87cd229e5e5fc02c","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-view.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-viewport-attrib.mod","type":"file","name":"svg-viewport-attrib.mod","base_name":"svg-viewport-attrib","extension":".mod","size":1323,"date":"2019-10-25","sha1":"5e649c02c012d9703d388933a2f6fae9f1f312e6","md5":"f2085a534a1bbfcd77c142e113d73a4e","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-viewport-attrib.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg-xlink-attrib.mod","type":"file","name":"svg-xlink-attrib.mod","base_name":"svg-xlink-attrib","extension":".mod","size":2782,"date":"2019-10-25","sha1":"b7ae91c7e35c55a2df4b668e9dcba68f9ea99886","md5":"4e09bfa76e762dfc1df3dcc8b50d96ff","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-xlink-attrib.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg10.dtd","type":"file","name":"svg10.dtd","base_name":"svg10","extension":".dtd","size":54613,"date":"2019-10-25","sha1":"52611a5bc185a026bb1287d95aa4c3c467d53e8b","md5":"cc8517207b58def7284184ab95cd086a","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":"VB.net","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 2000 W3C (MIT, INRIA, Keio)","start_line":8,"end_line":8}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":8,"end_line":8}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/1999/xlink","start_line":144,"end_line":144}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg11-attribs.mod","type":"file","name":"svg11-attribs.mod","base_name":"svg11-attribs","extension":".mod","size":6687,"date":"2019-10-25","sha1":"8186a1408682a61a0304c590222fbdb7cbc8a64e","md5":"8eb0601e04eb6b95de5957a755909e6d","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-attribs.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg11-basic-attribs.mod","type":"file","name":"svg11-basic-attribs.mod","base_name":"svg11-basic-attribs","extension":".mod","size":6339,"date":"2019-10-25","sha1":"a2ea2e3cce88ec9c92af906c9ada2c2298f7e765","md5":"c05eca6ce2fc3e0ce2ddfdbc47626810","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic-attribs.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg11-basic-flat.dtd","type":"file","name":"svg11-basic-flat.dtd","base_name":"svg11-basic-flat","extension":".dtd","size":171337,"date":"2019-10-25","sha1":"250533abba34fdc74430ba69ede824645b76fa89","md5":"95111ace0c5b82ab160f1997c4d85ebd","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"libpbm","score":30.36,"name":"PBM Library License","short_name":"PBM Library License","category":"Permissive","is_exception":false,"owner":"ACME Labs","homepage_url":"http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c","text_url":"http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:libpbm","spdx_license_key":null,"spdx_url":"","start_line":16,"end_line":18,"matched_rule":{"identifier":"libpbm.LICENSE","license_expression":"libpbm","licenses":["libpbm"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":56,"matched_length":17,"match_coverage":30.36,"rule_relevance":100}}],"license_expressions":["libpbm"],"copyrights":[{"value":"Copyright 2001, 2002 World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":11,"end_line":14},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":78,"end_line":78},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":109,"end_line":109},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":203,"end_line":203},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":465,"end_line":465},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":661,"end_line":661},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":853,"end_line":853},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":911,"end_line":911},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":961,"end_line":961},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1082,"end_line":1082},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1134,"end_line":1134},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1211,"end_line":1211},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1278,"end_line":1278},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1366,"end_line":1366},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1423,"end_line":1423},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1511,"end_line":1511},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1555,"end_line":1555},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1904,"end_line":1904},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2045,"end_line":2045},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2146,"end_line":2146},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2235,"end_line":2235},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2562,"end_line":2562},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2998,"end_line":2998},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3079,"end_line":3079},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3237,"end_line":3237},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3372,"end_line":3372},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3481,"end_line":3481},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3622,"end_line":3622},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":4184,"end_line":4184},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":4270,"end_line":4270},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":4401,"end_line":4401},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":4473,"end_line":4473},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":4544,"end_line":4544},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":4830,"end_line":4830},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":5216,"end_line":5216}],"holders":[{"value":"World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":11,"end_line":14},{"value":"W3C (MIT, INRIA, Keio)","start_line":78,"end_line":78},{"value":"W3C (MIT, INRIA, Keio)","start_line":109,"end_line":109},{"value":"W3C (MIT, INRIA, Keio)","start_line":203,"end_line":203},{"value":"W3C (MIT, INRIA, Keio)","start_line":465,"end_line":465},{"value":"W3C (MIT, INRIA, Keio)","start_line":661,"end_line":661},{"value":"W3C (MIT, INRIA, Keio)","start_line":853,"end_line":853},{"value":"W3C (MIT, INRIA, Keio)","start_line":911,"end_line":911},{"value":"W3C (MIT, INRIA, Keio)","start_line":961,"end_line":961},{"value":"W3C (MIT, INRIA, Keio)","start_line":1082,"end_line":1082},{"value":"W3C (MIT, INRIA, Keio)","start_line":1134,"end_line":1134},{"value":"W3C (MIT, INRIA, Keio)","start_line":1211,"end_line":1211},{"value":"W3C (MIT, INRIA, Keio)","start_line":1278,"end_line":1278},{"value":"W3C (MIT, INRIA, Keio)","start_line":1366,"end_line":1366},{"value":"W3C (MIT, INRIA, Keio)","start_line":1423,"end_line":1423},{"value":"W3C (MIT, INRIA, Keio)","start_line":1511,"end_line":1511},{"value":"W3C (MIT, INRIA, Keio)","start_line":1555,"end_line":1555},{"value":"W3C (MIT, INRIA, Keio)","start_line":1904,"end_line":1904},{"value":"W3C (MIT, INRIA, Keio)","start_line":2045,"end_line":2045},{"value":"W3C (MIT, INRIA, Keio)","start_line":2146,"end_line":2146},{"value":"W3C (MIT, INRIA, Keio)","start_line":2235,"end_line":2235},{"value":"W3C (MIT, INRIA, Keio)","start_line":2562,"end_line":2562},{"value":"W3C (MIT, INRIA, Keio)","start_line":2998,"end_line":2998},{"value":"W3C (MIT, INRIA, Keio)","start_line":3079,"end_line":3079},{"value":"W3C (MIT, INRIA, Keio)","start_line":3237,"end_line":3237},{"value":"W3C (MIT, INRIA, Keio)","start_line":3372,"end_line":3372},{"value":"W3C (MIT, INRIA, Keio)","start_line":3481,"end_line":3481},{"value":"W3C (MIT, INRIA, Keio)","start_line":3622,"end_line":3622},{"value":"W3C (MIT, INRIA, Keio)","start_line":4184,"end_line":4184},{"value":"W3C (MIT, INRIA, Keio)","start_line":4270,"end_line":4270},{"value":"W3C (MIT, INRIA, Keio)","start_line":4401,"end_line":4401},{"value":"W3C (MIT, INRIA, Keio)","start_line":4473,"end_line":4473},{"value":"W3C (MIT, INRIA, Keio)","start_line":4544,"end_line":4544},{"value":"W3C (MIT, INRIA, Keio)","start_line":4830,"end_line":4830},{"value":"W3C (MIT, INRIA, Keio)","start_line":5216,"end_line":5216}],"authors":[{"value":"Jun Fujisawa ","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"fujisawa.jun@canon.co.jp","start_line":24,"end_line":24}],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd","start_line":33,"end_line":33},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-framework.mod","start_line":84,"end_line":84},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-datatypes.mod","start_line":115,"end_line":115},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-qname.mod","start_line":209,"end_line":209},{"url":"http://www.w3.org/1999/xlink","start_line":240,"end_line":240},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic-model.mod","start_line":471,"end_line":471},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic-attribs.mod","start_line":667,"end_line":667},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-core-attrib.mod","start_line":859,"end_line":859},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-viewport-attrib.mod","start_line":917,"end_line":917},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-paint-attrib.mod","start_line":967,"end_line":967},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-opacity-attrib.mod","start_line":1088,"end_line":1088},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-graphics-attrib.mod","start_line":1140,"end_line":1140},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-docevents-attrib.mod","start_line":1217,"end_line":1217},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-graphevents-attrib.mod","start_line":1284,"end_line":1284},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-animevents-attrib.mod","start_line":1372,"end_line":1372},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-xlink-attrib.mod","start_line":1429,"end_line":1429},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-extresources-attrib.mod","start_line":1517,"end_line":1517},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-structure.mod","start_line":1561,"end_line":1561},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-conditional.mod","start_line":1910,"end_line":1910},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-image.mod","start_line":2051,"end_line":2051},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-style.mod","start_line":2152,"end_line":2152},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-shape.mod","start_line":2241,"end_line":2241},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-text.mod","start_line":2568,"end_line":2568},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-profile.mod","start_line":3004,"end_line":3004},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-gradient.mod","start_line":3085,"end_line":3085},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-pattern.mod","start_line":3243,"end_line":3243},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-basic-clip.mod","start_line":3378,"end_line":3378},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-mask.mod","start_line":3487,"end_line":3487},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-basic-filter.mod","start_line":3628,"end_line":3628},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-cursor.mod","start_line":4190,"end_line":4190},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-hyperlink.mod","start_line":4276,"end_line":4276},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-view.mod","start_line":4407,"end_line":4407},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-script.mod","start_line":4479,"end_line":4479},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-animation.mod","start_line":4550,"end_line":4550},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-font.mod","start_line":4836,"end_line":4836},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-extensibility.mod","start_line":5222,"end_line":5222}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg11-basic-model.mod","type":"file","name":"svg11-basic-model.mod","base_name":"svg11-basic-model","extension":".mod","size":5783,"date":"2019-10-25","sha1":"ff1874f4dc381ca0a8e10baf5ee776e1cc82fcd1","md5":"42bc6fa7ea6569ad05ede51041f88c90","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic-model.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg11-basic.dtd","type":"file","name":"svg11-basic.dtd","base_name":"svg11-basic","extension":".dtd","size":11532,"date":"2019-10-25","sha1":"5631454a4689999300e50f1e7d88ad18e6b6bd89","md5":"7dfb69a52227bacae3be02882b0e9e87","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"libpbm","score":30.36,"name":"PBM Library License","short_name":"PBM Library License","category":"Permissive","is_exception":false,"owner":"ACME Labs","homepage_url":"http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c","text_url":"http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:libpbm","spdx_license_key":null,"spdx_url":"","start_line":16,"end_line":18,"matched_rule":{"identifier":"libpbm.LICENSE","license_expression":"libpbm","licenses":["libpbm"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":56,"matched_length":17,"match_coverage":30.36,"rule_relevance":100}}],"license_expressions":["libpbm"],"copyrights":[{"value":"Copyright 2001, 2002 World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":11,"end_line":14}],"holders":[{"value":"World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":11,"end_line":14}],"authors":[{"value":"Jun Fujisawa ","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"fujisawa.jun@canon.co.jp","start_line":24,"end_line":24}],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg11-flat.dtd","type":"file","name":"svg11-flat.dtd","base_name":"svg11-flat","extension":".dtd","size":187079,"date":"2019-10-25","sha1":"60d71545c4949dd9ec85a6332aa454dba9eb99e9","md5":"292a2c5b633d412ac40fea8c626053a8","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"libpbm","score":30.36,"name":"PBM Library License","short_name":"PBM Library License","category":"Permissive","is_exception":false,"owner":"ACME Labs","homepage_url":"http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c","text_url":"http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:libpbm","spdx_license_key":null,"spdx_url":"","start_line":16,"end_line":18,"matched_rule":{"identifier":"libpbm.LICENSE","license_expression":"libpbm","licenses":["libpbm"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":56,"matched_length":17,"match_coverage":30.36,"rule_relevance":100}}],"license_expressions":["libpbm"],"copyrights":[{"value":"Copyright 2001, 2002 World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":11,"end_line":14},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":78,"end_line":78},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":109,"end_line":109},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":203,"end_line":203},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":465,"end_line":465},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":667,"end_line":667},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":871,"end_line":871},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":929,"end_line":929},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":974,"end_line":974},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1024,"end_line":1024},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1145,"end_line":1145},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1197,"end_line":1197},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1274,"end_line":1274},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1341,"end_line":1341},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1429,"end_line":1429},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1486,"end_line":1486},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1574,"end_line":1574},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1618,"end_line":1618},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1967,"end_line":1967},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2108,"end_line":2108},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2209,"end_line":2209},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2298,"end_line":2298},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2625,"end_line":2625},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3061,"end_line":3061},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3204,"end_line":3204},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3285,"end_line":3285},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3443,"end_line":3443},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3578,"end_line":3578},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3687,"end_line":3687},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3828,"end_line":3828},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":4643,"end_line":4643},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":4729,"end_line":4729},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":4860,"end_line":4860},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":4932,"end_line":4932},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":5003,"end_line":5003},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":5289,"end_line":5289},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":5675,"end_line":5675}],"holders":[{"value":"World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":11,"end_line":14},{"value":"W3C (MIT, INRIA, Keio)","start_line":78,"end_line":78},{"value":"W3C (MIT, INRIA, Keio)","start_line":109,"end_line":109},{"value":"W3C (MIT, INRIA, Keio)","start_line":203,"end_line":203},{"value":"W3C (MIT, INRIA, Keio)","start_line":465,"end_line":465},{"value":"W3C (MIT, INRIA, Keio)","start_line":667,"end_line":667},{"value":"W3C (MIT, INRIA, Keio)","start_line":871,"end_line":871},{"value":"W3C (MIT, INRIA, Keio)","start_line":929,"end_line":929},{"value":"W3C (MIT, INRIA, Keio)","start_line":974,"end_line":974},{"value":"W3C (MIT, INRIA, Keio)","start_line":1024,"end_line":1024},{"value":"W3C (MIT, INRIA, Keio)","start_line":1145,"end_line":1145},{"value":"W3C (MIT, INRIA, Keio)","start_line":1197,"end_line":1197},{"value":"W3C (MIT, INRIA, Keio)","start_line":1274,"end_line":1274},{"value":"W3C (MIT, INRIA, Keio)","start_line":1341,"end_line":1341},{"value":"W3C (MIT, INRIA, Keio)","start_line":1429,"end_line":1429},{"value":"W3C (MIT, INRIA, Keio)","start_line":1486,"end_line":1486},{"value":"W3C (MIT, INRIA, Keio)","start_line":1574,"end_line":1574},{"value":"W3C (MIT, INRIA, Keio)","start_line":1618,"end_line":1618},{"value":"W3C (MIT, INRIA, Keio)","start_line":1967,"end_line":1967},{"value":"W3C (MIT, INRIA, Keio)","start_line":2108,"end_line":2108},{"value":"W3C (MIT, INRIA, Keio)","start_line":2209,"end_line":2209},{"value":"W3C (MIT, INRIA, Keio)","start_line":2298,"end_line":2298},{"value":"W3C (MIT, INRIA, Keio)","start_line":2625,"end_line":2625},{"value":"W3C (MIT, INRIA, Keio)","start_line":3061,"end_line":3061},{"value":"W3C (MIT, INRIA, Keio)","start_line":3204,"end_line":3204},{"value":"W3C (MIT, INRIA, Keio)","start_line":3285,"end_line":3285},{"value":"W3C (MIT, INRIA, Keio)","start_line":3443,"end_line":3443},{"value":"W3C (MIT, INRIA, Keio)","start_line":3578,"end_line":3578},{"value":"W3C (MIT, INRIA, Keio)","start_line":3687,"end_line":3687},{"value":"W3C (MIT, INRIA, Keio)","start_line":3828,"end_line":3828},{"value":"W3C (MIT, INRIA, Keio)","start_line":4643,"end_line":4643},{"value":"W3C (MIT, INRIA, Keio)","start_line":4729,"end_line":4729},{"value":"W3C (MIT, INRIA, Keio)","start_line":4860,"end_line":4860},{"value":"W3C (MIT, INRIA, Keio)","start_line":4932,"end_line":4932},{"value":"W3C (MIT, INRIA, Keio)","start_line":5003,"end_line":5003},{"value":"W3C (MIT, INRIA, Keio)","start_line":5289,"end_line":5289},{"value":"W3C (MIT, INRIA, Keio)","start_line":5675,"end_line":5675}],"authors":[{"value":"Jun Fujisawa ","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"fujisawa.jun@canon.co.jp","start_line":24,"end_line":24}],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd","start_line":33,"end_line":33},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-framework.mod","start_line":84,"end_line":84},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-datatypes.mod","start_line":115,"end_line":115},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-qname.mod","start_line":209,"end_line":209},{"url":"http://www.w3.org/1999/xlink","start_line":240,"end_line":240},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-model.mod","start_line":471,"end_line":471},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-attribs.mod","start_line":673,"end_line":673},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-core-attrib.mod","start_line":877,"end_line":877},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-container-attrib.mod","start_line":935,"end_line":935},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-viewport-attrib.mod","start_line":980,"end_line":980},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-paint-attrib.mod","start_line":1030,"end_line":1030},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-opacity-attrib.mod","start_line":1151,"end_line":1151},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-graphics-attrib.mod","start_line":1203,"end_line":1203},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-docevents-attrib.mod","start_line":1280,"end_line":1280},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-graphevents-attrib.mod","start_line":1347,"end_line":1347},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-animevents-attrib.mod","start_line":1435,"end_line":1435},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-xlink-attrib.mod","start_line":1492,"end_line":1492},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-extresources-attrib.mod","start_line":1580,"end_line":1580},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-structure.mod","start_line":1624,"end_line":1624},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-conditional.mod","start_line":1973,"end_line":1973},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-image.mod","start_line":2114,"end_line":2114},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-style.mod","start_line":2215,"end_line":2215},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-shape.mod","start_line":2304,"end_line":2304},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-text.mod","start_line":2631,"end_line":2631},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-marker.mod","start_line":3067,"end_line":3067},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-profile.mod","start_line":3210,"end_line":3210},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-gradient.mod","start_line":3291,"end_line":3291},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-pattern.mod","start_line":3449,"end_line":3449},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-clip.mod","start_line":3584,"end_line":3584},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-mask.mod","start_line":3693,"end_line":3693},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-filter.mod","start_line":3834,"end_line":3834},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-cursor.mod","start_line":4649,"end_line":4649},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-hyperlink.mod","start_line":4735,"end_line":4735},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-view.mod","start_line":4866,"end_line":4866},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-script.mod","start_line":4938,"end_line":4938},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-animation.mod","start_line":5009,"end_line":5009},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-font.mod","start_line":5295,"end_line":5295},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-extensibility.mod","start_line":5681,"end_line":5681}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg11-model.mod","type":"file","name":"svg11-model.mod","base_name":"svg11-model","extension":".mod","size":6106,"date":"2019-10-25","sha1":"ac96984295c78e297037614f17b7f86fd776201e","md5":"7a64b61c51eeff51113eed8de230de8e","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-model.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg11-tiny-attribs.mod","type":"file","name":"svg11-tiny-attribs.mod","base_name":"svg11-tiny-attribs","extension":".mod","size":2216,"date":"2019-10-25","sha1":"05b12c8de829405791186cb6c460feeddc8274ef","md5":"560358cef5610f801b0ee18080931e14","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny-attribs.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg11-tiny-flat.dtd","type":"file","name":"svg11-tiny-flat.dtd","base_name":"svg11-tiny-flat","extension":".dtd","size":109195,"date":"2019-10-25","sha1":"1be63011160c9780904128442246fbdecec0bb23","md5":"cfbd5b47f61652aa982e48bdc9dfa6ef","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"libpbm","score":30.36,"name":"PBM Library License","short_name":"PBM Library License","category":"Permissive","is_exception":false,"owner":"ACME Labs","homepage_url":"http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c","text_url":"http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:libpbm","spdx_license_key":null,"spdx_url":"","start_line":16,"end_line":18,"matched_rule":{"identifier":"libpbm.LICENSE","license_expression":"libpbm","licenses":["libpbm"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":56,"matched_length":17,"match_coverage":30.36,"rule_relevance":100}}],"license_expressions":["libpbm"],"copyrights":[{"value":"Copyright 2001, 2002 World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":11,"end_line":14},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":78,"end_line":78},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":109,"end_line":109},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":203,"end_line":203},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":465,"end_line":465},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":609,"end_line":609},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":689,"end_line":689},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":747,"end_line":747},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":868,"end_line":868},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":919,"end_line":919},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":986,"end_line":986},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1074,"end_line":1074},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1131,"end_line":1131},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1219,"end_line":1219},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1263,"end_line":1263},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1580,"end_line":1580},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1721,"end_line":1721},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1822,"end_line":1822},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1911,"end_line":1911},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2238,"end_line":2238},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2440,"end_line":2440},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2571,"end_line":2571},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2643,"end_line":2643},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2714,"end_line":2714},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3000,"end_line":3000},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3336,"end_line":3336}],"holders":[{"value":"World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":11,"end_line":14},{"value":"W3C (MIT, INRIA, Keio)","start_line":78,"end_line":78},{"value":"W3C (MIT, INRIA, Keio)","start_line":109,"end_line":109},{"value":"W3C (MIT, INRIA, Keio)","start_line":203,"end_line":203},{"value":"W3C (MIT, INRIA, Keio)","start_line":465,"end_line":465},{"value":"W3C (MIT, INRIA, Keio)","start_line":609,"end_line":609},{"value":"W3C (MIT, INRIA, Keio)","start_line":689,"end_line":689},{"value":"W3C (MIT, INRIA, Keio)","start_line":747,"end_line":747},{"value":"W3C (MIT, INRIA, Keio)","start_line":868,"end_line":868},{"value":"W3C (MIT, INRIA, Keio)","start_line":919,"end_line":919},{"value":"W3C (MIT, INRIA, Keio)","start_line":986,"end_line":986},{"value":"W3C (MIT, INRIA, Keio)","start_line":1074,"end_line":1074},{"value":"W3C (MIT, INRIA, Keio)","start_line":1131,"end_line":1131},{"value":"W3C (MIT, INRIA, Keio)","start_line":1219,"end_line":1219},{"value":"W3C (MIT, INRIA, Keio)","start_line":1263,"end_line":1263},{"value":"W3C (MIT, INRIA, Keio)","start_line":1580,"end_line":1580},{"value":"W3C (MIT, INRIA, Keio)","start_line":1721,"end_line":1721},{"value":"W3C (MIT, INRIA, Keio)","start_line":1822,"end_line":1822},{"value":"W3C (MIT, INRIA, Keio)","start_line":1911,"end_line":1911},{"value":"W3C (MIT, INRIA, Keio)","start_line":2238,"end_line":2238},{"value":"W3C (MIT, INRIA, Keio)","start_line":2440,"end_line":2440},{"value":"W3C (MIT, INRIA, Keio)","start_line":2571,"end_line":2571},{"value":"W3C (MIT, INRIA, Keio)","start_line":2643,"end_line":2643},{"value":"W3C (MIT, INRIA, Keio)","start_line":2714,"end_line":2714},{"value":"W3C (MIT, INRIA, Keio)","start_line":3000,"end_line":3000},{"value":"W3C (MIT, INRIA, Keio)","start_line":3336,"end_line":3336}],"authors":[{"value":"Jun Fujisawa ","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"fujisawa.jun@canon.co.jp","start_line":24,"end_line":24}],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd","start_line":33,"end_line":33},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-framework.mod","start_line":84,"end_line":84},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-datatypes.mod","start_line":115,"end_line":115},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-qname.mod","start_line":209,"end_line":209},{"url":"http://www.w3.org/1999/xlink","start_line":240,"end_line":240},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny-model.mod","start_line":471,"end_line":471},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny-attribs.mod","start_line":615,"end_line":615},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-core-attrib.mod","start_line":695,"end_line":695},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-paint-attrib.mod","start_line":753,"end_line":753},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-basic-graphics-attrib.mod","start_line":874,"end_line":874},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-docevents-attrib.mod","start_line":925,"end_line":925},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-graphevents-attrib.mod","start_line":992,"end_line":992},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-animevents-attrib.mod","start_line":1080,"end_line":1080},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-xlink-attrib.mod","start_line":1137,"end_line":1137},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-extresources-attrib.mod","start_line":1225,"end_line":1225},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-basic-structure.mod","start_line":1269,"end_line":1269},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-conditional.mod","start_line":1586,"end_line":1586},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-image.mod","start_line":1727,"end_line":1727},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-style.mod","start_line":1828,"end_line":1828},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-shape.mod","start_line":1917,"end_line":1917},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-basic-text.mod","start_line":2244,"end_line":2244},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-hyperlink.mod","start_line":2446,"end_line":2446},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-view.mod","start_line":2577,"end_line":2577},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-script.mod","start_line":2649,"end_line":2649},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-animation.mod","start_line":2720,"end_line":2720},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-basic-font.mod","start_line":3006,"end_line":3006},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-extensibility.mod","start_line":3342,"end_line":3342}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg11-tiny-model.mod","type":"file","name":"svg11-tiny-model.mod","base_name":"svg11-tiny-model","extension":".mod","size":4220,"date":"2019-10-25","sha1":"bdb2e1d9a0f77aa18a649ea0b4d604c0b9e663a3","md5":"f180bdb6128ad6870b07d5a0cade1272","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"holders":[{"value":"W3C (MIT, INRIA, Keio)","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny-model.mod","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg11-tiny.dtd","type":"file","name":"svg11-tiny.dtd","base_name":"svg11-tiny","extension":".dtd","size":9067,"date":"2019-10-25","sha1":"18178c2e4f511c14a134a27629d5f75b9b3e503f","md5":"2553ecfcc44ae4c5481bdd89de587133","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"libpbm","score":30.36,"name":"PBM Library License","short_name":"PBM Library License","category":"Permissive","is_exception":false,"owner":"ACME Labs","homepage_url":"http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c","text_url":"http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:libpbm","spdx_license_key":null,"spdx_url":"","start_line":16,"end_line":18,"matched_rule":{"identifier":"libpbm.LICENSE","license_expression":"libpbm","licenses":["libpbm"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":56,"matched_length":17,"match_coverage":30.36,"rule_relevance":100}}],"license_expressions":["libpbm"],"copyrights":[{"value":"Copyright 2001, 2002 World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":11,"end_line":14}],"holders":[{"value":"World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":11,"end_line":14}],"authors":[{"value":"Jun Fujisawa ","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"fujisawa.jun@canon.co.jp","start_line":24,"end_line":24}],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg11.dtd","type":"file","name":"svg11.dtd","base_name":"svg11","extension":".dtd","size":12058,"date":"2019-10-25","sha1":"63feee872d0c0e7a20003f93c259b94036112107","md5":"0206e7c9bd674d3faca7e387f41ac081","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"libpbm","score":30.36,"name":"PBM Library License","short_name":"PBM Library License","category":"Permissive","is_exception":false,"owner":"ACME Labs","homepage_url":"http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c","text_url":"http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:libpbm","spdx_license_key":null,"spdx_url":"","start_line":16,"end_line":18,"matched_rule":{"identifier":"libpbm.LICENSE","license_expression":"libpbm","licenses":["libpbm"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":56,"matched_length":17,"match_coverage":30.36,"rule_relevance":100}}],"license_expressions":["libpbm"],"copyrights":[{"value":"Copyright 2001, 2002 World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":11,"end_line":14}],"holders":[{"value":"World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":11,"end_line":14}],"authors":[{"value":"Jun Fujisawa ","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"fujisawa.jun@canon.co.jp","start_line":24,"end_line":24}],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/main/resources/org/apache/batik/dom/svg/resources/svg12-flat.dtd","type":"file","name":"svg12-flat.dtd","base_name":"svg12-flat","extension":".dtd","size":187079,"date":"2019-10-25","sha1":"8438971e8724336c48b0790e310f6e246ccd3495","md5":"dfc11a899779ee2597daa4203a976df4","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"libpbm","score":30.36,"name":"PBM Library License","short_name":"PBM Library License","category":"Permissive","is_exception":false,"owner":"ACME Labs","homepage_url":"http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c","text_url":"http://web.mit.edu/tex/fontutil/fontutils-0.6/pbm/libpbm1.c","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:libpbm","spdx_license_key":null,"spdx_url":"","start_line":16,"end_line":18,"matched_rule":{"identifier":"libpbm.LICENSE","license_expression":"libpbm","licenses":["libpbm"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":56,"matched_length":17,"match_coverage":30.36,"rule_relevance":100}}],"license_expressions":["libpbm"],"copyrights":[{"value":"Copyright 2001, 2002 World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":11,"end_line":14},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":78,"end_line":78},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":109,"end_line":109},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":203,"end_line":203},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":465,"end_line":465},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":667,"end_line":667},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":871,"end_line":871},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":929,"end_line":929},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":974,"end_line":974},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1024,"end_line":1024},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1145,"end_line":1145},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1197,"end_line":1197},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1274,"end_line":1274},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1341,"end_line":1341},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1429,"end_line":1429},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1486,"end_line":1486},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1574,"end_line":1574},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1618,"end_line":1618},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":1967,"end_line":1967},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2108,"end_line":2108},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2209,"end_line":2209},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2298,"end_line":2298},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":2625,"end_line":2625},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3061,"end_line":3061},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3204,"end_line":3204},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3285,"end_line":3285},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3443,"end_line":3443},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3578,"end_line":3578},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3687,"end_line":3687},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":3828,"end_line":3828},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":4643,"end_line":4643},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":4729,"end_line":4729},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":4860,"end_line":4860},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":4932,"end_line":4932},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":5003,"end_line":5003},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":5289,"end_line":5289},{"value":"Copyright 2001, 2002 W3C (MIT, INRIA, Keio)","start_line":5675,"end_line":5675}],"holders":[{"value":"World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":11,"end_line":14},{"value":"W3C (MIT, INRIA, Keio)","start_line":78,"end_line":78},{"value":"W3C (MIT, INRIA, Keio)","start_line":109,"end_line":109},{"value":"W3C (MIT, INRIA, Keio)","start_line":203,"end_line":203},{"value":"W3C (MIT, INRIA, Keio)","start_line":465,"end_line":465},{"value":"W3C (MIT, INRIA, Keio)","start_line":667,"end_line":667},{"value":"W3C (MIT, INRIA, Keio)","start_line":871,"end_line":871},{"value":"W3C (MIT, INRIA, Keio)","start_line":929,"end_line":929},{"value":"W3C (MIT, INRIA, Keio)","start_line":974,"end_line":974},{"value":"W3C (MIT, INRIA, Keio)","start_line":1024,"end_line":1024},{"value":"W3C (MIT, INRIA, Keio)","start_line":1145,"end_line":1145},{"value":"W3C (MIT, INRIA, Keio)","start_line":1197,"end_line":1197},{"value":"W3C (MIT, INRIA, Keio)","start_line":1274,"end_line":1274},{"value":"W3C (MIT, INRIA, Keio)","start_line":1341,"end_line":1341},{"value":"W3C (MIT, INRIA, Keio)","start_line":1429,"end_line":1429},{"value":"W3C (MIT, INRIA, Keio)","start_line":1486,"end_line":1486},{"value":"W3C (MIT, INRIA, Keio)","start_line":1574,"end_line":1574},{"value":"W3C (MIT, INRIA, Keio)","start_line":1618,"end_line":1618},{"value":"W3C (MIT, INRIA, Keio)","start_line":1967,"end_line":1967},{"value":"W3C (MIT, INRIA, Keio)","start_line":2108,"end_line":2108},{"value":"W3C (MIT, INRIA, Keio)","start_line":2209,"end_line":2209},{"value":"W3C (MIT, INRIA, Keio)","start_line":2298,"end_line":2298},{"value":"W3C (MIT, INRIA, Keio)","start_line":2625,"end_line":2625},{"value":"W3C (MIT, INRIA, Keio)","start_line":3061,"end_line":3061},{"value":"W3C (MIT, INRIA, Keio)","start_line":3204,"end_line":3204},{"value":"W3C (MIT, INRIA, Keio)","start_line":3285,"end_line":3285},{"value":"W3C (MIT, INRIA, Keio)","start_line":3443,"end_line":3443},{"value":"W3C (MIT, INRIA, Keio)","start_line":3578,"end_line":3578},{"value":"W3C (MIT, INRIA, Keio)","start_line":3687,"end_line":3687},{"value":"W3C (MIT, INRIA, Keio)","start_line":3828,"end_line":3828},{"value":"W3C (MIT, INRIA, Keio)","start_line":4643,"end_line":4643},{"value":"W3C (MIT, INRIA, Keio)","start_line":4729,"end_line":4729},{"value":"W3C (MIT, INRIA, Keio)","start_line":4860,"end_line":4860},{"value":"W3C (MIT, INRIA, Keio)","start_line":4932,"end_line":4932},{"value":"W3C (MIT, INRIA, Keio)","start_line":5003,"end_line":5003},{"value":"W3C (MIT, INRIA, Keio)","start_line":5289,"end_line":5289},{"value":"W3C (MIT, INRIA, Keio)","start_line":5675,"end_line":5675}],"authors":[{"value":"Jun Fujisawa ","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"fujisawa.jun@canon.co.jp","start_line":24,"end_line":24}],"urls":[{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd","start_line":33,"end_line":33},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-framework.mod","start_line":84,"end_line":84},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-datatypes.mod","start_line":115,"end_line":115},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-qname.mod","start_line":209,"end_line":209},{"url":"http://www.w3.org/1999/xlink","start_line":240,"end_line":240},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-model.mod","start_line":471,"end_line":471},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-attribs.mod","start_line":673,"end_line":673},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-core-attrib.mod","start_line":877,"end_line":877},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-container-attrib.mod","start_line":935,"end_line":935},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-viewport-attrib.mod","start_line":980,"end_line":980},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-paint-attrib.mod","start_line":1030,"end_line":1030},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-opacity-attrib.mod","start_line":1151,"end_line":1151},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-graphics-attrib.mod","start_line":1203,"end_line":1203},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-docevents-attrib.mod","start_line":1280,"end_line":1280},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-graphevents-attrib.mod","start_line":1347,"end_line":1347},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-animevents-attrib.mod","start_line":1435,"end_line":1435},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-xlink-attrib.mod","start_line":1492,"end_line":1492},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-extresources-attrib.mod","start_line":1580,"end_line":1580},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-structure.mod","start_line":1624,"end_line":1624},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-conditional.mod","start_line":1973,"end_line":1973},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-image.mod","start_line":2114,"end_line":2114},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-style.mod","start_line":2215,"end_line":2215},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-shape.mod","start_line":2304,"end_line":2304},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-text.mod","start_line":2631,"end_line":2631},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-marker.mod","start_line":3067,"end_line":3067},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-profile.mod","start_line":3210,"end_line":3210},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-gradient.mod","start_line":3291,"end_line":3291},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-pattern.mod","start_line":3449,"end_line":3449},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-clip.mod","start_line":3584,"end_line":3584},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-mask.mod","start_line":3693,"end_line":3693},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-filter.mod","start_line":3834,"end_line":3834},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-cursor.mod","start_line":4649,"end_line":4649},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-hyperlink.mod","start_line":4735,"end_line":4735},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-view.mod","start_line":4866,"end_line":4866},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-script.mod","start_line":4938,"end_line":4938},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-animation.mod","start_line":5009,"end_line":5009},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-font.mod","start_line":5295,"end_line":5295},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg-extensibility.mod","start_line":5681,"end_line":5681}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svg-dom/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser","type":"directory","name":"batik-svgbrowser","base_name":"batik-svgbrowser","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":109,"dirs_count":17,"size_count":998231,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":3328,"date":"2019-10-25","sha1":"e876b6096bd5911fdbc72b055a423fbf3e99a77f","md5":"aa121f8062b1205dfb12447a54cc8296","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-svgbrowser","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-svgbrowser\nBatik SVG Browser Application Library","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-anim","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-bridge","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-dom","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-gvt","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-swing","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-transcoder","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-xml","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/xml-apis/xml-apis-ext","requirement":"${xmlapisext.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-svgbrowser@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-svgbrowser@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svgbrowser/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svgbrowser/1.12/batik-svgbrowser-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svgbrowser/1.12/batik-svgbrowser-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":108,"dirs_count":16,"size_count":994903,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":108,"dirs_count":15,"size_count":994903,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":5,"size_count":613964,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":4,"size_count":613964,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":3,"size_count":613964,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":2,"size_count":613964,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps","type":"directory","name":"apps","base_name":"apps","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":1,"size_count":613964,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser","type":"directory","name":"svgbrowser","base_name":"svgbrowser","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":0,"size_count":613964,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/AboutDialog.java","type":"file","name":"AboutDialog.java","base_name":"AboutDialog","extension":".java","size":4982,"date":"2019-10-25","sha1":"feac237e20e6ab9e71f47db17527489fb0e1e9b4","md5":"f3fb92587c614e0ae7ff627082d5ffdb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":47,"end_line":47}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/AbstractCompoundCommand.java","type":"file","name":"AbstractCompoundCommand.java","base_name":"AbstractCompoundCommand","extension":".java","size":2990,"date":"2019-10-25","sha1":"7d5468b6693d68e5186f95e272ad467ef773c65c","md5":"e29426f2c60af1a2c58445068c3e693c","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/AbstractUndoableCommand.java","type":"file","name":"AbstractUndoableCommand.java","base_name":"AbstractUndoableCommand","extension":".java","size":1576,"date":"2019-10-25","sha1":"eac2105f0aa3ae3fcf67210bfa31ca24427e1a86","md5":"8d38c9e7b9d599f3e7d660925ce3991b","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/Application.java","type":"file","name":"Application.java","base_name":"Application","extension":".java","size":3283,"date":"2019-10-25","sha1":"d30f982dbf0c00f3fa9444b6d20ee9b806ffc067","md5":"40e685e728c70b252d09e9d65790e799","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/DOMDocumentTree.java","type":"file","name":"DOMDocumentTree.java","base_name":"DOMDocumentTree","extension":".java","size":33798,"date":"2019-10-25","sha1":"4bd0d84539e8073a30de9a0056eb2ad0ffb3f78d","md5":"34c88bdf6e57754542c6fee2f7f5da9b","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4378091","start_line":318,"end_line":318}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/DOMDocumentTreeController.java","type":"file","name":"DOMDocumentTreeController.java","base_name":"DOMDocumentTreeController","extension":".java","size":1082,"date":"2019-10-25","sha1":"36676617dfafb2eb835f532fca95707ca19043bd","md5":"e29fb45ddb7bcdbd0fcf4f9a4d533c6a","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/DOMViewer.java","type":"file","name":"DOMViewer.java","base_name":"DOMViewer","extension":".java","size":79433,"date":"2019-10-25","sha1":"e7c595ac43ff4ea968990e58fadedc1199ad0883","md5":"0dc50e6435badb44465a1966d78f7a1b","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":119,"end_line":119}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/DOMViewerController.java","type":"file","name":"DOMViewerController.java","base_name":"DOMViewerController","extension":".java","size":2253,"date":"2019-10-25","sha1":"b31aff13d6df396126006be13ce820da7ae32485","md5":"2cf05ea7f76cfd0b1d581ccc82204fce","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/DropDownHistoryModel.java","type":"file","name":"DropDownHistoryModel.java","base_name":"DropDownHistoryModel","extension":".java","size":13834,"date":"2019-10-25","sha1":"258e43c03a685875fc1830e051b597575ed27508","md5":"e9daed79c577bbe64f8363ab77c7f9e0","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/ElementOverlayController.java","type":"file","name":"ElementOverlayController.java","base_name":"ElementOverlayController","extension":".java","size":1147,"date":"2019-10-25","sha1":"8ada4ee21cb41f96c48dc658ec6a4032d4cbfb9a","md5":"fc84e99230514f9f1114772366c0a654","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/ElementOverlayManager.java","type":"file","name":"ElementOverlayManager.java","base_name":"ElementOverlayManager","extension":".java","size":9520,"date":"2019-10-25","sha1":"00369290bbac5e9315da296a74c32e0057725942","md5":"d63e3a330bfb09eb4964019ddf8a30a9","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/FindDialog.java","type":"file","name":"FindDialog.java","base_name":"FindDialog","extension":".java","size":14985,"date":"2019-10-25","sha1":"e5e21e1de30f4ecd32041d7d14892f9de701d54d","md5":"a727304233a52a41bbfe65ad630b2089","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":65,"end_line":65}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/HistoryBrowser.java","type":"file","name":"HistoryBrowser.java","base_name":"HistoryBrowser","extension":".java","size":18034,"date":"2019-10-25","sha1":"5e5ed7495505ba1a7a7b9e60184dfd0508888b78","md5":"e80d82ecb47cc870165c203bde65d239","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/HistoryBrowserInterface.java","type":"file","name":"HistoryBrowserInterface.java","base_name":"HistoryBrowserInterface","extension":".java","size":42498,"date":"2019-10-25","sha1":"12357ed8dcf8e83cfb4fa77893f04e7cc2f42568","md5":"920191706dde69020813937dbe52d97a","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/JAuthenticator.java","type":"file","name":"JAuthenticator.java","base_name":"JAuthenticator","extension":".java","size":8385,"date":"2019-10-25","sha1":"def7f57b3751c0348d2a24e1f8863c1f7fd8e8f2","md5":"db45e426584ce7d16ce6ce8b99c8ebd5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":48,"end_line":48}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/JPEGOptionPanel.java","type":"file","name":"JPEGOptionPanel.java","base_name":"JPEGOptionPanel","extension":".java","size":3500,"date":"2019-10-25","sha1":"1e78ed4e1f8ea4634106a74eeecf329b385fe9fa","md5":"8db2b75479847a5e79a7dcb7d088b7fe","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/JSVGViewerFrame.java","type":"file","name":"JSVGViewerFrame.java","base_name":"JSVGViewerFrame","extension":".java","size":110139,"date":"2019-10-25","sha1":"1c06b8cda4cbb127177132029f6ae599dee6199d","md5":"bb4445d6e1e58283f937623a15169ed3","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":156,"end_line":156}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/LocalHistory.java","type":"file","name":"LocalHistory.java","base_name":"LocalHistory","extension":".java","size":7448,"date":"2019-10-25","sha1":"e916530472361f284eb55121e942c5789aff2422","md5":"a07e80c60a08f4ec58e90bb57ade1d39","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/Main.java","type":"file","name":"Main.java","base_name":"Main","extension":".java","size":35820,"date":"2019-10-25","sha1":"395cbeba885fdc17a19b21a72224d22b681c84ef","md5":"1ad126f4fe12601aa5d3f4d220e59a21","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":74,"end_line":74}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/NodePickerController.java","type":"file","name":"NodePickerController.java","base_name":"NodePickerController","extension":".java","size":1432,"date":"2019-10-25","sha1":"a72e262e9d797f42bdaf5f8729c0012942eeadfe","md5":"4f238eade1c97da4e84e70a9be83ba56","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/NodePickerPanel.java","type":"file","name":"NodePickerPanel.java","base_name":"NodePickerPanel","extension":".java","size":50401,"date":"2019-10-25","sha1":"4a63d27ea5f13744e0f1ee0b6623ceb84cb87901","md5":"6d03731048c31ca267d6746fdb4f86f3","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/NodeTemplates.java","type":"file","name":"NodeTemplates.java","base_name":"NodeTemplates","extension":".java","size":46087,"date":"2019-10-25","sha1":"a2875a3b70a74dc02c75afb3ca3e15768a643ef1","md5":"b3e42951a09d8e81a0bb3c8b946ff49c","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/OptionPanel.java","type":"file","name":"OptionPanel.java","base_name":"OptionPanel","extension":".java","size":3381,"date":"2019-10-25","sha1":"dca96eb9f5b17264d054f0f9b21e729b477981b2","md5":"1ade47e3fafdb68498876861ca37da82","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/PNGOptionPanel.java","type":"file","name":"PNGOptionPanel.java","base_name":"PNGOptionPanel","extension":".java","size":2742,"date":"2019-10-25","sha1":"cdfd1e1d9289cb74a0d09655981097a5da2c5754","md5":"1c4399d894ebfcf9e1e28253033e033a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"jun@oop-reserch.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/PreferenceDialog.java","type":"file","name":"PreferenceDialog.java","base_name":"PreferenceDialog","extension":".java","size":51093,"date":"2019-10-25","sha1":"3f9d9b6cb1b30dcc85ba9a99206cab7c38f8cfba","md5":"6908493746cc59ad3d6b48a0d06f89e7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":83,"end_line":83}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/ResourceOrigin.java","type":"file","name":"ResourceOrigin.java","base_name":"ResourceOrigin","extension":".java","size":1346,"date":"2019-10-25","sha1":"0e0c178f85e06a82acf01756e338ef4e484a5b56","md5":"e7658eff39cfd645e5be0c767dce89f2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/Resources.java","type":"file","name":"Resources.java","base_name":"Resources","extension":".java","size":3092,"date":"2019-10-25","sha1":"06149e3326609d96b6b2b7c9eddd4a090556453e","md5":"751aa50769d29def4db159b60a0894a8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/SquiggleInputHandler.java","type":"file","name":"SquiggleInputHandler.java","base_name":"SquiggleInputHandler","extension":".java","size":2219,"date":"2019-10-25","sha1":"73bb68205a06f5196ce6a06a7ee1bf834d4a5a19","md5":"9d3bde8fa663b401bcdbe04efea14369","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/SquiggleInputHandlerFilter.java","type":"file","name":"SquiggleInputHandlerFilter.java","base_name":"SquiggleInputHandlerFilter","extension":".java","size":1966,"date":"2019-10-25","sha1":"af2a02cacc867f59e44c8398e6334cc66898ae24","md5":"66e4286c762f8a946d3c9fc2f65b4788","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/StatusBar.java","type":"file","name":"StatusBar.java","base_name":"StatusBar","extension":".java","size":7217,"date":"2019-10-25","sha1":"7e6490dcc53121145f2e4e923290fca8f9c0fdb0","md5":"48aed6f818a1dba7963958f796c4b32a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/SVGInputHandler.java","type":"file","name":"SVGInputHandler.java","base_name":"SVGInputHandler","extension":".java","size":3129,"date":"2019-10-25","sha1":"d288398cfccfaf3e7e9891b2877bd6960ae01552","md5":"884b22a76455d053d4c57638e5bfc556","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/SVGOptionPanel.java","type":"file","name":"SVGOptionPanel.java","base_name":"SVGOptionPanel","extension":".java","size":2857,"date":"2019-10-25","sha1":"d88bef64c7203ab88d5932491cc9c755b10bb766","md5":"b93f393aa2f8065eddc275c1706f3ad2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/ThumbnailDialog.java","type":"file","name":"ThumbnailDialog.java","base_name":"ThumbnailDialog","extension":".java","size":14098,"date":"2019-10-25","sha1":"a85a9c325ed379c42c09c04c6ca75ecdb951cc95","md5":"35b7867a913ce344f02db19276c8e23c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":67,"end_line":67}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/TransformHistory.java","type":"file","name":"TransformHistory.java","base_name":"TransformHistory","extension":".java","size":2613,"date":"2019-10-25","sha1":"259eeb764ffa8dc4dcf9407e2271d956dba0bbc3","md5":"3188c21ef82e9894f5267a01067b8874","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/UndoableCommand.java","type":"file","name":"UndoableCommand.java","base_name":"UndoableCommand","extension":".java","size":1431,"date":"2019-10-25","sha1":"9ee683891fb67f0a6b189bdb823c4813d860b3bf","md5":"7dcf07460d05460db7fa1c886e3435d0","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/WindowsAltFileSystemView.java","type":"file","name":"WindowsAltFileSystemView.java","base_name":"WindowsAltFileSystemView","extension":".java","size":5475,"date":"2019-10-25","sha1":"5335459c969b22f73aa95b48f28c6a980340714c","md5":"f750e4676ac95a9e8313b6fc860f000c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://forums.java.sun.com/thread.jsp?forum=38&thread=71491","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/XMLInputHandler.java","type":"file","name":"XMLInputHandler.java","base_name":"XMLInputHandler","extension":".java","size":11570,"date":"2019-10-25","sha1":"a30c06c76a79f963b7ef1cb25c08e6f85890c801","md5":"373396b66232e97eaf24358ead8d93ec","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":61,"end_line":61}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/java/org/apache/batik/apps/svgbrowser/XMLPreferenceManager.java","type":"file","name":"XMLPreferenceManager.java","base_name":"XMLPreferenceManager","extension":".java","size":7108,"date":"2019-10-25","sha1":"c0385eb9935cdeb6f218b313ffdc30d367dc650b","md5":"ffed169aa64e643e2db7078bb8901560","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":47,"end_line":47}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/batik/preferences","start_line":121,"end_line":121}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":70,"dirs_count":8,"size_count":380939,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/META-INF","type":"directory","name":"META-INF","base_name":"META-INF","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":1120,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/META-INF/services","type":"directory","name":"services","base_name":"services","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1120,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/META-INF/services/org.apache.batik.apps.svgbrowser.SquiggleInputHandler","type":"file","name":"org.apache.batik.apps.svgbrowser.SquiggleInputHandler","base_name":"org.apache.batik.apps.svgbrowser","extension":".SquiggleInputHandler","size":1120,"date":"2019-10-25","sha1":"e25e8141b8fbfd26af7a3a6347a7cda9b5fb265c","md5":"0494b4214c59c715341f26a103d68271","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":69,"dirs_count":5,"size_count":379819,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":69,"dirs_count":4,"size_count":379819,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":69,"dirs_count":3,"size_count":379819,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps","type":"directory","name":"apps","base_name":"apps","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":69,"dirs_count":2,"size_count":379819,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser","type":"directory","name":"svgbrowser","base_name":"svgbrowser","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":69,"dirs_count":1,"size_count":379819,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":69,"dirs_count":0,"size_count":379819,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/batik.gif","type":"file","name":"batik.gif","base_name":"batik","extension":".gif","size":447,"date":"2019-10-25","sha1":"534a5810267e024be044a4a0e79a636b32d43619","md5":"bb8f2414eed4049513570975107dddb2","mime_type":"image/gif","file_type":"GIF image data, version 89a, 33 x 33","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/blank.gif","type":"file","name":"blank.gif","base_name":"blank","extension":".gif","size":61,"date":"2019-10-25","sha1":"707d0a7a543c9ed67cc2be81be73f5b2f0d200e9","md5":"496c10fb7f0ee4fa828f064e96ba48ed","mime_type":"image/gif","file_type":"GIF image data, version 89a, 16 x 16","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/captureClick.png","type":"file","name":"captureClick.png","base_name":"captureClick","extension":".png","size":763,"date":"2019-10-25","sha1":"bdc4629f9f8157d5dfe2eea56a3f110a8ccd286e","md5":"fee70468fe2d6906a9370d5ca59d43e4","mime_type":"image/png","file_type":"PNG image data, 24 x 24, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/comment.gif","type":"file","name":"comment.gif","base_name":"comment","extension":".gif","size":171,"date":"2019-10-25","sha1":"64c713019dc5f8faf312168aa2d647667c60fc3e","md5":"204781bd4010d6eb8adb6f8838147a16","mime_type":"image/gif","file_type":"GIF image data, version 89a, 22 x 22","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/disabledRedo.png","type":"file","name":"disabledRedo.png","base_name":"disabledRedo","extension":".png","size":599,"date":"2019-10-25","sha1":"94f48e2cbb9484dcced2b6d0fc4c92582ebee747","md5":"93f17adcde79c79af7bb7a9e5050e303","mime_type":"image/png","file_type":"PNG image data, 24 x 24, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/disabledUndo.png","type":"file","name":"disabledUndo.png","base_name":"disabledUndo","extension":".png","size":626,"date":"2019-10-25","sha1":"49654183d61c60d45e8c044d14c1a5d7811d5208","md5":"aae1e30856e416ffcaf935fcc60cda40","mime_type":"image/png","file_type":"PNG image data, 24 x 24, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/document-open-small.png","type":"file","name":"document-open-small.png","base_name":"document-open-small","extension":".png","size":537,"date":"2019-10-25","sha1":"b9a3d43049879f1a59b88dc79ef8b6ff08a6c1c8","md5":"4a16ff6b7e6f418b8bc5740421ebe7ba","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/document-open.png","type":"file","name":"document-open.png","base_name":"document-open","extension":".png","size":1001,"date":"2019-10-25","sha1":"61ac998ef903cb814474f0f5e24ea80af23f48d2","md5":"82ebf95f9c09f326b2244177062e2c5f","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/document-print-small.png","type":"file","name":"document-print-small.png","base_name":"document-print-small","extension":".png","size":544,"date":"2019-10-25","sha1":"d6f1dfb8878297cc3e4686b54690ddac27c40372","md5":"84340402ebbd3dbc18aebf3948326226","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/document-print.png","type":"file","name":"document-print.png","base_name":"document-print","extension":".png","size":869,"date":"2019-10-25","sha1":"8beb3f43c85257ce3cf5ad1873336612772ed4a7","md5":"414fd85732b0ff6480aa02bfc6eed724","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/dom-viewer-small.png","type":"file","name":"dom-viewer-small.png","base_name":"dom-viewer-small","extension":".png","size":357,"date":"2019-10-25","sha1":"4697363626afcfbabccc9b9701dc129a527d0103","md5":"5b34bfde78315a3ebbe683ff736bd841","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/dom-viewer.png","type":"file","name":"dom-viewer.png","base_name":"dom-viewer","extension":".png","size":576,"date":"2019-10-25","sha1":"60df688abd6cf3e479b77cfee240a719be3edfac","md5":"307fa3923ccef197606683356a3d3560","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/DOMViewerMessages.properties","type":"file","name":"DOMViewerMessages.properties","base_name":"DOMViewerMessages","extension":".properties","size":3171,"date":"2019-10-25","sha1":"6417b83abe6b45f021b8c05593f1b4d86c3eea43","md5":"c4692687024ce06c64f2fa878e640b1b","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"stephane@hillion.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/DropDownHistoryModelMessages.properties","type":"file","name":"DropDownHistoryModelMessages.properties","base_name":"DropDownHistoryModelMessages","extension":".properties","size":1206,"date":"2019-10-25","sha1":"d079f17712f490a91b185f3f3f13e561d4586d01","md5":"8099d2fb4f6b4c4e39b196e3100fe6e3","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/edit-find-small.png","type":"file","name":"edit-find-small.png","base_name":"edit-find-small","extension":".png","size":617,"date":"2019-10-25","sha1":"4c526b7af1d71eb1d6507e9c68b3514a50c59ed3","md5":"0d9da21739bd48b23cb48723f98b9324","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/edit-find.png","type":"file","name":"edit-find.png","base_name":"edit-find","extension":".png","size":1090,"date":"2019-10-25","sha1":"fc9157cbc829d0d95abee1499bb958878b9db7b2","md5":"5af387278c74828ec6fe3cbe9cce6416","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/element.gif","type":"file","name":"element.gif","base_name":"element","extension":".gif","size":166,"date":"2019-10-25","sha1":"9440d627a54f3c2326c9d66947549fd7e739e468","md5":"0ffc0c92c27d0d009aa2ebf98442a9e5","mime_type":"image/gif","file_type":"GIF image data, version 89a, 22 x 22","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/enableOverlay.png","type":"file","name":"enableOverlay.png","base_name":"enableOverlay","extension":".png","size":525,"date":"2019-10-25","sha1":"4603d9ad9af74f9a4116c38a2838156e3b55f1b3","md5":"c1de5afd5c48523e37c92e84f35c15bf","mime_type":"image/png","file_type":"PNG image data, 24 x 24, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/FindDialog.properties","type":"file","name":"FindDialog.properties","base_name":"FindDialog","extension":".properties","size":1913,"date":"2019-10-25","sha1":"c30d4f2d04e8d2623160256f0db387b5ec6378ba","md5":"0493925508f05f97f126495aa39975fc","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/go-next-small.png","type":"file","name":"go-next-small.png","base_name":"go-next-small","extension":".png","size":676,"date":"2019-10-25","sha1":"4074aff631d38bbcfa777336665ca44bf8e32e38","md5":"c71b163127145cf4b318f8d569f46162","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/go-next.png","type":"file","name":"go-next.png","base_name":"go-next","extension":".png","size":930,"date":"2019-10-25","sha1":"da838af53c1b8c2ae656f59812ceda329434cb53","md5":"98e9d56d4e58c2a6c2234a39c69b9a80","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/go-previous-small.png","type":"file","name":"go-previous-small.png","base_name":"go-previous-small","extension":".png","size":655,"date":"2019-10-25","sha1":"1bf0d01acb74d38306698d661b7bc737584309e0","md5":"370c740ede43e123c4d0df6c6e0ec9e9","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/go-previous.png","type":"file","name":"go-previous.png","base_name":"go-previous","extension":".png","size":955,"date":"2019-10-25","sha1":"4e33fe93541673673f05eef8de92361a1d26403b","md5":"a4b492530f51f1ff7ac6ab0017675fed","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/GUI.properties","type":"file","name":"GUI.properties","base_name":"GUI","extension":".properties","size":23112,"date":"2019-10-25","sha1":"9284c7356c13c2196795a51207af2c95f5f171b7","md5":"0cb43e9cf927868387513b6da1f57a94","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"stephane@hillion.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/icon-general-dark.png","type":"file","name":"icon-general-dark.png","base_name":"icon-general-dark","extension":".png","size":1060,"date":"2019-10-25","sha1":"bafd29808f941fbbcef3cbdd127df1133dca8853","md5":"3d76dbea2a51f9e622a58f22867a55d3","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/icon-general.png","type":"file","name":"icon-general.png","base_name":"icon-general","extension":".png","size":1144,"date":"2019-10-25","sha1":"7c5ef25b0b5762f50e42e89bc726f8e8d46d77d5","md5":"8c672bb1d0fdf3dfb2bd854d314d2475","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/icon-language-dark.png","type":"file","name":"icon-language-dark.png","base_name":"icon-language-dark","extension":".png","size":1726,"date":"2019-10-25","sha1":"3fee661473054b05fe9abe7f9d3c31e9a7c99972","md5":"3c421d7729bc50840fa5c46bc68f362b","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/icon-language.png","type":"file","name":"icon-language.png","base_name":"icon-language","extension":".png","size":1784,"date":"2019-10-25","sha1":"38354b762b933bcfa4e7ad81f75042d007003984","md5":"5f53d158d50d6dce91b9f436d3459ac8","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/icon-network-dark.png","type":"file","name":"icon-network-dark.png","base_name":"icon-network-dark","extension":".png","size":2277,"date":"2019-10-25","sha1":"9fcb3a8bd28709a1a3d98774a9e3dffe7757793d","md5":"3e1eba293f8ea09664ebf728244dbf90","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/icon-network.png","type":"file","name":"icon-network.png","base_name":"icon-network","extension":".png","size":2382,"date":"2019-10-25","sha1":"02f457cb5b312cb83ed37c415f747ab4d6a46fc4","md5":"e07eaa8da7b371795793de109de3eaad","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/icon-security-dark.png","type":"file","name":"icon-security-dark.png","base_name":"icon-security-dark","extension":".png","size":1392,"date":"2019-10-25","sha1":"c8814ea589e68833f4a2ad0f5257451fa9adadf6","md5":"5ecc13c1a77934483e0f342c1542756b","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/icon-security.png","type":"file","name":"icon-security.png","base_name":"icon-security","extension":".png","size":1391,"date":"2019-10-25","sha1":"e6fe1a4f09a458b7837ca63717296c734d132756","md5":"4e3a6f096b50499ec1b82dbe29995ff5","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/icon-stylesheet-dark.png","type":"file","name":"icon-stylesheet-dark.png","base_name":"icon-stylesheet-dark","extension":".png","size":1576,"date":"2019-10-25","sha1":"b709c06872d488722e3c2a869b130209e00dbdf0","md5":"b82a93689875f82f0755e1e61f915efe","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/icon-stylesheet.png","type":"file","name":"icon-stylesheet.png","base_name":"icon-stylesheet","extension":".png","size":1658,"date":"2019-10-25","sha1":"a408ed98fc9a5e35291e0eb6f7d9fc445e8e3370","md5":"b7452626c61af6c867b26b9601a487c4","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/init.svg","type":"file","name":"init.svg","base_name":"init","extension":".svg","size":6079,"date":"2019-10-25","sha1":"4d6d5979eec77f4198d9443001e59d66722baabb","md5":"5e66b410c87a9b120ef9c5e8a81c3d53","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/LICENSE.icons.txt","type":"file","name":"LICENSE.icons.txt","base_name":"LICENSE.icons","extension":".txt","size":14800,"date":"2019-10-25","sha1":"1ebcb7dc221dbfaaa50012981e84a5a94266f28a","md5":"81f0e2e97fa20081d0ae18fdb39c6d1a","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,"licenses":[{"key":"cc-by-sa-2.5","score":100.0,"name":"Creative Commons Attribution Share Alike License 2.5","short_name":"CC-BY-SA-2.5","category":"Copyleft Limited","is_exception":false,"owner":"Creative Commons","homepage_url":"http://creativecommons.org/licenses/by-sa/2.5/","text_url":"http://creativecommons.org/licenses/by-sa/2.5/legalcode","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:cc-by-sa-2.5","spdx_license_key":"CC-BY-SA-2.5","spdx_url":"https://spdx.org/licenses/CC-BY-SA-2.5","start_line":34,"end_line":36,"matched_rule":{"identifier":"cc-by-sa-2.5_8.RULE","license_expression":"cc-by-sa-2.5","licenses":["cc-by-sa-2.5"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":33,"matched_length":33,"match_coverage":100.0,"rule_relevance":100}},{"key":"cc-by-sa-2.5","score":90.17,"name":"Creative Commons Attribution Share Alike License 2.5","short_name":"CC-BY-SA-2.5","category":"Copyleft Limited","is_exception":false,"owner":"Creative Commons","homepage_url":"http://creativecommons.org/licenses/by-sa/2.5/","text_url":"http://creativecommons.org/licenses/by-sa/2.5/legalcode","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:cc-by-sa-2.5","spdx_license_key":"CC-BY-SA-2.5","spdx_url":"https://spdx.org/licenses/CC-BY-SA-2.5","start_line":34,"end_line":251,"matched_rule":{"identifier":"cc-by-sa-2.5.LICENSE","license_expression":"cc-by-sa-2.5","licenses":["cc-by-sa-2.5"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":2207,"matched_length":1990,"match_coverage":90.17,"rule_relevance":100}}],"license_expressions":["cc-by-sa-2.5","cc-by-sa-2.5"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://tango.freedesktop.org/","start_line":2,"end_line":2},{"url":"http://www.jesusda.com/projects/pasodoble","start_line":27,"end_line":27},{"url":"http://creativecommons.org/licenses/by-sa/2.5","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/Main.properties","type":"file","name":"Main.properties","base_name":"Main","extension":".properties","size":1650,"date":"2019-10-25","sha1":"0a1d94e4010c76515d8d341f923a3cc6d61ae8cd","md5":"6e1917e603e4c155168d50e31253a974","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[{"value":"(c) Apache Software Foundation http://xmlgraphics.apache.org/batik","start_line":38,"end_line":39}],"holders":[{"value":"Apache Software Foundation","start_line":38,"end_line":39}],"authors":[{"value":"stephane@hillion.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xmlgraphics.apache.org/batik","start_line":39,"end_line":39}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/media-playback-pause-small.png","type":"file","name":"media-playback-pause-small.png","base_name":"media-playback-pause-small","extension":".png","size":464,"date":"2019-10-25","sha1":"6ff13884fd8c69720b25a13057464e4a4376f92c","md5":"6f57357695261cbfc184f8ce754cbc24","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/media-playback-pause.png","type":"file","name":"media-playback-pause.png","base_name":"media-playback-pause","extension":".png","size":655,"date":"2019-10-25","sha1":"eeca8e8298ee7ff2cff4b0189979c0b46e827380","md5":"5e2034a98d2d578a4cb75c0a2fc2f63f","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/media-playback-start-small.png","type":"file","name":"media-playback-start-small.png","base_name":"media-playback-start-small","extension":".png","size":660,"date":"2019-10-25","sha1":"d45373afdc90aa3ee06e193cc7c65bee616924f5","md5":"dcd919acd1f99b901939164ad6381ff3","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/media-playback-start.png","type":"file","name":"media-playback-start.png","base_name":"media-playback-start","extension":".png","size":961,"date":"2019-10-25","sha1":"7ce55f48b76140813a64cb7dfd3163ae0cc64d70","md5":"3a5aada1c7cc0a4f8ef226095c6edacb","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/NameEditorDialogMessages.properties","type":"file","name":"NameEditorDialogMessages.properties","base_name":"NameEditorDialogMessages","extension":".properties","size":1322,"date":"2019-10-25","sha1":"e51d7d646be60e086c14b166b314b52ec3dcabee","md5":"6bb4ccf03985e7cb33858ea09adf3e99","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/NodePickerPanelMessages.properties","type":"file","name":"NodePickerPanelMessages.properties","base_name":"NodePickerPanelMessages","extension":".properties","size":1689,"date":"2019-10-25","sha1":"7b2d4f64d1d72a4b5af5c977880dfbdadcd31f85","md5":"5e3bcd6703f4c41ed73481cb8b1b0971","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/pi.gif","type":"file","name":"pi.gif","base_name":"pi","extension":".gif","size":188,"date":"2019-10-25","sha1":"eeff59acc538979c171fffdcaed59157dcdcce3c","md5":"2f0ff9bb5494d54860a29c245dbf542a","mime_type":"image/gif","file_type":"GIF image data, version 89a, 22 x 22","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/process-stop-small.png","type":"file","name":"process-stop-small.png","base_name":"process-stop-small","extension":".png","size":820,"date":"2019-10-25","sha1":"fdccb1f19027b1ceb2ea87cee49d8ada3867a5a0","md5":"8c2991b857d223fda62db3fba73234e7","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/process-stop.png","type":"file","name":"process-stop.png","base_name":"process-stop","extension":".png","size":1272,"date":"2019-10-25","sha1":"1ddfb133ac64d035cff8d0eec5a3edd40726b9ee","md5":"948cef9141c30a412f01e7ec0e774f97","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/README.icons.txt","type":"file","name":"README.icons.txt","base_name":"README.icons","extension":".txt","size":1180,"date":"2019-10-25","sha1":"6fd9f340e06f9cb834a0810e2cf8a70c18a7d3f1","md5":"ae7cc74eaf1f5d7921a23a680d34b11a","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,"licenses":[{"key":"cc-by-sa-2.5","score":100.0,"name":"Creative Commons Attribution Share Alike License 2.5","short_name":"CC-BY-SA-2.5","category":"Copyleft Limited","is_exception":false,"owner":"Creative Commons","homepage_url":"http://creativecommons.org/licenses/by-sa/2.5/","text_url":"http://creativecommons.org/licenses/by-sa/2.5/legalcode","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:cc-by-sa-2.5","spdx_license_key":"CC-BY-SA-2.5","spdx_url":"https://spdx.org/licenses/CC-BY-SA-2.5","start_line":34,"end_line":36,"matched_rule":{"identifier":"cc-by-sa-2.5_8.RULE","license_expression":"cc-by-sa-2.5","licenses":["cc-by-sa-2.5"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":33,"matched_length":33,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["cc-by-sa-2.5"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://tango.freedesktop.org/","start_line":2,"end_line":2},{"url":"http://www.jesusda.com/projects/pasodoble","start_line":27,"end_line":27},{"url":"http://creativecommons.org/licenses/by-sa/2.5","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/redo.png","type":"file","name":"redo.png","base_name":"redo","extension":".png","size":597,"date":"2019-10-25","sha1":"2f7f2abafb65caffb0328b5b7e0d88d4faec282e","md5":"eb4af15ce19506fda7ddb51e6c422102","mime_type":"image/png","file_type":"PNG image data, 24 x 24, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/squiggle.png","type":"file","name":"squiggle.png","base_name":"squiggle","extension":".png","size":141044,"date":"2019-10-25","sha1":"dcc12c96e957c576b4a402f3d0f756b4418ef9fa","md5":"c1299fb52d15c05e494cc8d94c5a4efc","mime_type":"image/png","file_type":"PNG image data, 600 x 425, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/squiggle.svg","type":"file","name":"squiggle.svg","base_name":"squiggle","extension":".svg","size":120737,"date":"2019-10-25","sha1":"ff63c2c04d4f06c556afc56419fb2963ea724255","md5":"6dfcb076ed83f8b2573ebf7cb0b5bd23","mime_type":"text/plain","file_type":"exported SGML document, UTF-8 Unicode text, with very long lines","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30},{"url":"http://xmlgraphics.apache.org/batik/","start_line":707,"end_line":707}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/squiggleIcon.png","type":"file","name":"squiggleIcon.png","base_name":"squiggleIcon","extension":".png","size":816,"date":"2019-10-25","sha1":"fc45c960a0bb5113abd3d39358ad83ecc31b97cf","md5":"8e917085cd85167d19cfe6639cc3d0db","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/StatusBarMessages.properties","type":"file","name":"StatusBarMessages.properties","base_name":"StatusBarMessages","extension":".properties","size":1236,"date":"2019-10-25","sha1":"17b76b956da00c4b697d1893e96a29b97f9362c6","md5":"14541b39497f9f4eebfe67d0c13ba237","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"stephane@hillion.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/svgbrowser.bin.policy","type":"file","name":"svgbrowser.bin.policy","base_name":"svgbrowser.bin","extension":".policy","size":3747,"date":"2019-10-25","sha1":"e0f1783e236eae1556394af2340e5ca3a2306952","md5":"96c4d5dde0b28c4d819725ea099ab79a","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/svgbrowser.policy","type":"file","name":"svgbrowser.policy","base_name":"svgbrowser","extension":".policy","size":4805,"date":"2019-10-25","sha1":"a72a4a480ce8a168152a9f57c1bdd28c91d8fa31","md5":"30c96d01fed3cb6b2e029248edfde670","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/svgbrowser.policy.ref","type":"file","name":"svgbrowser.policy.ref","base_name":"svgbrowser.policy","extension":".ref","size":4620,"date":"2019-10-25","sha1":"2cecf15d30e2e4985efa2103fe441807492df63d","md5":"0b248427ee95a995efccfd918f900d60","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"jarsLibDir@xml-apis-1.3.04.jar","start_line":21,"end_line":21},{"email":"jarsLibDir@xml-apis-ext-1.3.04.jar","start_line":25,"end_line":25},{"email":"jarsLibDir@xalan-2.7.0.jar","start_line":29,"end_line":29},{"email":"jarsLibDir@js.jar","start_line":117,"end_line":117}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/system-search.png","type":"file","name":"system-search.png","base_name":"system-search","extension":".png","size":1267,"date":"2019-10-25","sha1":"a9f709cfd1e71a04c11bbbf387b2087bf9b3689a","md5":"15599648edf1498c841b7be697d23cef","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/text.gif","type":"file","name":"text.gif","base_name":"text","extension":".gif","size":161,"date":"2019-10-25","sha1":"d50c32fdcc79b5818df92ad2ef8ffc213aff3569","md5":"214030259fa0a0e340aec22deade575e","mime_type":"image/gif","file_type":"GIF image data, version 89a, 22 x 22","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/ThumbnailDialog.properties","type":"file","name":"ThumbnailDialog.properties","base_name":"ThumbnailDialog","extension":".properties","size":1135,"date":"2019-10-25","sha1":"c79e48b6618042a16030f2bcd1e0cf278eb99215","md5":"e391946a113965b2df2f67d1e0de44ba","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/undo.png","type":"file","name":"undo.png","base_name":"undo","extension":".png","size":598,"date":"2019-10-25","sha1":"bb579287db4abbdb04aec6a2f7146c948c472deb","md5":"550c84c839a22e78d28cbf3c86297a32","mime_type":"image/png","file_type":"PNG image data, 24 x 24, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/utilities-system-monitor-small.png","type":"file","name":"utilities-system-monitor-small.png","base_name":"utilities-system-monitor-small","extension":".png","size":611,"date":"2019-10-25","sha1":"3a623f4268b8e0801312dfba010ad432a95be44b","md5":"c91cac6d52ffd298fa7d08590bb9d52c","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/utilities-system-monitor.png","type":"file","name":"utilities-system-monitor.png","base_name":"utilities-system-monitor","extension":".png","size":990,"date":"2019-10-25","sha1":"c3661610e4fa37f72ead6115b7d5c818e4785c49","md5":"e422ef6bf2ba1fbbfb51a2324de49178","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/view-refresh-small.png","type":"file","name":"view-refresh-small.png","base_name":"view-refresh-small","extension":".png","size":912,"date":"2019-10-25","sha1":"5e83c001a0fc9d22b2dd8b0c90eb185f7950f680","md5":"9c9dd4cd3020f8231574bf9181d0b57b","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/view-refresh.png","type":"file","name":"view-refresh.png","base_name":"view-refresh","extension":".png","size":1364,"date":"2019-10-25","sha1":"090eb11eef2103e4cf2b2a0790c1b30d3b42c554","md5":"a1712a3ef783a27a0f3818abbf08d82c","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/window-new-small.png","type":"file","name":"window-new-small.png","base_name":"window-new-small","extension":".png","size":583,"date":"2019-10-25","sha1":"b01f1bc4db06dbcee1ba84daa82aa18a7eed595c","md5":"92488af313c081c7ead69ff7bf805bd2","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/window-new.png","type":"file","name":"window-new.png","base_name":"window-new","extension":".png","size":718,"date":"2019-10-25","sha1":"a74881d72785bb27584ed3f2ad50120ae107c2cf","md5":"fde5b6abb115426abf5430f7abb1407e","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/zoom-in-small.png","type":"file","name":"zoom-in-small.png","base_name":"zoom-in-small","extension":".png","size":858,"date":"2019-10-25","sha1":"5fc978f83cf48d296ae76c4c53751553a4692ac1","md5":"6da17efd240a8b1c90364776477877f3","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/zoom-in.png","type":"file","name":"zoom-in.png","base_name":"zoom-in","extension":".png","size":1246,"date":"2019-10-25","sha1":"31b2fdacb340d591e17923cb8c3cd6b59e063d6e","md5":"f78fb26cdcef639accfe88936eaca1a7","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/zoom-out-small.png","type":"file","name":"zoom-out-small.png","base_name":"zoom-out-small","extension":".png","size":841,"date":"2019-10-25","sha1":"22287761bafecd99eab06adf93b109aa831ee4f1","md5":"8f1f87368878f918297441a576f4ae17","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/zoom-out.png","type":"file","name":"zoom-out.png","base_name":"zoom-out","extension":".png","size":1236,"date":"2019-10-25","sha1":"922bd9bbdd109ef7fa4450e4c97164609588d6c6","md5":"2bcb6013b0b21f34d741cb7bcf4bf74b","mime_type":"image/png","file_type":"PNG image data, 22 x 22, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen","type":"directory","name":"batik-svggen","base_name":"batik-svggen","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":152,"dirs_count":19,"size_count":680911,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2125,"date":"2019-10-25","sha1":"67623af83b4c645bf9f536c53946850aaedf48fd","md5":"ac11feacc9741d56090714b01d8f1ba9","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-svggen","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-svggen\nBatik Java2D SVG generator","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-awt-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-svggen@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-svggen@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svggen/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svggen/1.12/batik-svggen-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svggen/1.12/batik-svggen-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":151,"dirs_count":18,"size_count":678786,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":151,"dirs_count":14,"size_count":678786,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":150,"dirs_count":6,"size_count":676136,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":150,"dirs_count":5,"size_count":676136,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":150,"dirs_count":4,"size_count":676136,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":150,"dirs_count":3,"size_count":676136,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen","type":"directory","name":"svggen","base_name":"svggen","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":150,"dirs_count":2,"size_count":676136,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/AbstractImageHandlerEncoder.java","type":"file","name":"AbstractImageHandlerEncoder.java","base_name":"AbstractImageHandlerEncoder","extension":".java","size":9001,"date":"2019-10-25","sha1":"6a321e45523c5c04a3005ae53de0ac5083b8b50c","md5":"51a1a89e1d2ca894f6d28817c56e25be","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/AbstractSVGConverter.java","type":"file","name":"AbstractSVGConverter.java","base_name":"AbstractSVGConverter","extension":".java","size":2944,"date":"2019-10-25","sha1":"e8074b124d0e0dc958a8f71c68c4cb827d6ae1fa","md5":"90bd58be9bfac5639248407c736e0445","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/AbstractSVGFilterConverter.java","type":"file","name":"AbstractSVGFilterConverter.java","base_name":"AbstractSVGFilterConverter","extension":".java","size":2968,"date":"2019-10-25","sha1":"1e0d8ddcdad708836cee3f28344afbf729176446","md5":"c2c47513a3e45390e5687cb0f02af2fb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/CachedImageHandler.java","type":"file","name":"CachedImageHandler.java","base_name":"CachedImageHandler","extension":".java","size":1339,"date":"2019-10-25","sha1":"1a281a8b0e9890239f105597bfb19fec28fc81c8","md5":"c973681a7c467884aa7b8ff3ae4bdf42","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"paul_evenblij@compuware.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/CachedImageHandlerBase64Encoder.java","type":"file","name":"CachedImageHandlerBase64Encoder.java","base_name":"CachedImageHandlerBase64Encoder","extension":".java","size":4114,"date":"2019-10-25","sha1":"6bbc58c84b19885fd7d3c0e65eb87a3fb31252f3","md5":"1e452a86ac7f8ef2d043e440f562b3a1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"paul_evenblij@compuware.com","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/CachedImageHandlerJPEGEncoder.java","type":"file","name":"CachedImageHandlerJPEGEncoder.java","base_name":"CachedImageHandlerJPEGEncoder","extension":".java","size":2826,"date":"2019-10-25","sha1":"90169f684e459794c23e3e5c8d63b215d1b743ca","md5":"9567814503f1c59f2899cc306d34917a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"paul_evenblij@compuware.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/CachedImageHandlerPNGEncoder.java","type":"file","name":"CachedImageHandlerPNGEncoder.java","base_name":"CachedImageHandlerPNGEncoder","extension":".java","size":2643,"date":"2019-10-25","sha1":"f150baf177c6c8d3642bf0fc2896eb746d72633a","md5":"52638b3997bf6af7d677937019e603bc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"paul_evenblij@compuware.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/DefaultCachedImageHandler.java","type":"file","name":"DefaultCachedImageHandler.java","base_name":"DefaultCachedImageHandler","extension":".java","size":16545,"date":"2019-10-25","sha1":"ff367ae8798bf85401302b4dd02cd6f7ec083ae4","md5":"125af69174e3446296ef02b6fa95e15f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":51,"end_line":51}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/DefaultErrorHandler.java","type":"file","name":"DefaultErrorHandler.java","base_name":"DefaultErrorHandler","extension":".java","size":1762,"date":"2019-10-25","sha1":"1c24debff4f6a8bb622cf12c8d74210688c5d70d","md5":"b656a5a8310ccb4d41bbba1f5ab9851f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/DefaultExtensionHandler.java","type":"file","name":"DefaultExtensionHandler.java","base_name":"DefaultExtensionHandler","extension":".java","size":2950,"date":"2019-10-25","sha1":"407e0396fcecfec5cd7eba70208511c4ff1fe4cb","md5":"a54446e7a9d33f95511da050043b21fa","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/DefaultImageHandler.java","type":"file","name":"DefaultImageHandler.java","base_name":"DefaultImageHandler","extension":".java","size":6218,"date":"2019-10-25","sha1":"3da2e4c6ac9c749137c2d0f6ed6e8f73adb83357","md5":"c70324599f13580835d788379a587e8a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/DefaultStyleHandler.java","type":"file","name":"DefaultStyleHandler.java","base_name":"DefaultStyleHandler","extension":".java","size":3711,"date":"2019-10-25","sha1":"328bb0496f83a3e60fd5bafb0632768d25dd99d1","md5":"205aa34da4c00b48dbc702f6bc9fd6b3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/DOMGroupManager.java","type":"file","name":"DOMGroupManager.java","base_name":"DOMGroupManager","extension":".java","size":13511,"date":"2019-10-25","sha1":"ff704e661d1a8291a24da187e47157a3ac601489","md5":"c362206b2d2ce761e0f0c3cdcbeb3b66","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":56,"end_line":56},{"email":"vincent.hardy@eng.sun.com","start_line":57,"end_line":57}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/DOMTreeManager.java","type":"file","name":"DOMTreeManager.java","base_name":"DOMTreeManager","extension":".java","size":15137,"date":"2019-10-25","sha1":"238279a6e57e393585bbe22d38aa3b507f4c5145","md5":"d5c207b27910fd17f1b35828364b7879","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":60,"end_line":60}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/ErrorConstants.java","type":"file","name":"ErrorConstants.java","base_name":"ErrorConstants","extension":".java","size":3967,"date":"2019-10-25","sha1":"01c1c1abef8e2fe62e6d6df0c570043e7bc6e66d","md5":"e2a88796b82a7e14557fadf35f37ae3f","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/ErrorHandler.java","type":"file","name":"ErrorHandler.java","base_name":"ErrorHandler","extension":".java","size":1515,"date":"2019-10-25","sha1":"cd1ae7546fd6b242721f86c78f0b0f67d5f70f00","md5":"4063c1bdb34bf2b92f64345d91de3696","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/ExtensionHandler.java","type":"file","name":"ExtensionHandler.java","base_name":"ExtensionHandler","extension":".java","size":2760,"date":"2019-10-25","sha1":"2546969442104586d24ebfdb7be329a00a0998d2","md5":"30aff536b666120ac8f4650b1a8ea4cc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/GenericImageHandler.java","type":"file","name":"GenericImageHandler.java","base_name":"GenericImageHandler","extension":".java","size":4187,"date":"2019-10-25","sha1":"21480896d47599386f93747207bc9e8c9037336d","md5":"cb045c2978ff1fa680c3184192892a96","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/ImageCacher.java","type":"file","name":"ImageCacher.java","base_name":"ImageCacher","extension":".java","size":14028,"date":"2019-10-25","sha1":"44109ae42107337f2178d2f60c3c76f873b2ddd6","md5":"24d4ca65c225a9a0ded52a6df8fbdfae","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"paul_evenblij@compuware.com","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/ImageHandler.java","type":"file","name":"ImageHandler.java","base_name":"ImageHandler","extension":".java","size":2324,"date":"2019-10-25","sha1":"0ff08a36352fc79e5c57f046ac994cb08567fa1e","md5":"df52ff6e63b9997873e6806d949dc06d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/ImageHandlerBase64Encoder.java","type":"file","name":"ImageHandlerBase64Encoder.java","base_name":"ImageHandlerBase64Encoder","extension":".java","size":6328,"date":"2019-10-25","sha1":"6abf8d2b2697278795dbf0067d2b4fa14713849b","md5":"25aad9ff0b55fab9e15122b14eaf46bf","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/ImageHandlerJPEGEncoder.java","type":"file","name":"ImageHandlerJPEGEncoder.java","base_name":"ImageHandlerJPEGEncoder","extension":".java","size":3831,"date":"2019-10-25","sha1":"32e4fb76e301b945531e6a0338ac05cc7281047b","md5":"491ca284d1a57df268a1a9b8cc314b73","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/ImageHandlerPNGEncoder.java","type":"file","name":"ImageHandlerPNGEncoder.java","base_name":"ImageHandlerPNGEncoder","extension":".java","size":3639,"date":"2019-10-25","sha1":"077b12c0501bf657cbf7ed4ff9ff93c9999e358e","md5":"5f7bde7d72d9c3dd66b9e6d2b09f7b06","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/NullOp.java","type":"file","name":"NullOp.java","base_name":"NullOp","extension":".java","size":2732,"date":"2019-10-25","sha1":"d33b9bea748b3d72039378c85d9b033ecc64472b","md5":"c88ea3897d8b8439ecd998f56154da0b","mime_type":"text/x-c++","file_type":"C++ source, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":353,"date":"2019-10-25","sha1":"082215ef764be1ac8b73957f85cd53bf1cf0cc0c","md5":"cc7b334781585175fb6547a952972184","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SimpleImageHandler.java","type":"file","name":"SimpleImageHandler.java","base_name":"SimpleImageHandler","extension":".java","size":7268,"date":"2019-10-25","sha1":"18197b4f999df40337c0e33b3134b0abfc723ef0","md5":"d576018d7c1e90378c0bc8e274d31abb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":41,"end_line":41}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/StyleHandler.java","type":"file","name":"StyleHandler.java","base_name":"StyleHandler","extension":".java","size":1597,"date":"2019-10-25","sha1":"4cc4c57f062016c31a664e3288eecef19848966d","md5":"56e6a35d8d0954a7f2941f235e638a0c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGAlphaComposite.java","type":"file","name":"SVGAlphaComposite.java","base_name":"SVGAlphaComposite","extension":".java","size":11646,"date":"2019-10-25","sha1":"fa802705fae1135f87add8b897dcc24c59b0dd1d","md5":"eb71556c51d09dd4740fd42dfff18ede","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":44,"end_line":44}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGArc.java","type":"file","name":"SVGArc.java","base_name":"SVGArc","extension":".java","size":4562,"date":"2019-10-25","sha1":"5ad97e42fd5a8dc997206bd5efd4b6cb80dd3de7","md5":"4914fe01dc5e57ce3255e3142c27eb9f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGAttribute.java","type":"file","name":"SVGAttribute.java","base_name":"SVGAttribute","extension":".java","size":2672,"date":"2019-10-25","sha1":"21ee32d2619713677cabccad52c02d76be9b64ca","md5":"c99919f6f5c4122377a00871276bc3ac","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGAttributeMap.java","type":"file","name":"SVGAttributeMap.java","base_name":"SVGAttributeMap","extension":".java","size":1492,"date":"2019-10-25","sha1":"5b1fe21d72d808be49aa825d4a9217e5b8f3327b","md5":"1f5287e1e49ee67e60c5ca92da06e1a9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGBasicStroke.java","type":"file","name":"SVGBasicStroke.java","base_name":"SVGBasicStroke","extension":".java","size":4422,"date":"2019-10-25","sha1":"0dbb1daa43d749c7833efd4ec5be1a6e5216f6a4","md5":"01f8d7972e45b0d27b5a5022fe018863","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGBufferedImageOp.java","type":"file","name":"SVGBufferedImageOp.java","base_name":"SVGBufferedImageOp","extension":".java","size":4582,"date":"2019-10-25","sha1":"34428f27bf67cec02e99c8e7650b208377216717","md5":"2aa24d178b2ecc0ea04bcd2502bda1c3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGClip.java","type":"file","name":"SVGClip.java","base_name":"SVGClip","extension":".java","size":5974,"date":"2019-10-25","sha1":"c549d11b1c4a20f9d9aa53e348b612a875e2bb6b","md5":"55b3ae77b5c464146a003d89fdb5eb63","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGClipDescriptor.java","type":"file","name":"SVGClipDescriptor.java","base_name":"SVGClipDescriptor","extension":".java","size":3071,"date":"2019-10-25","sha1":"5e30cf598e4e527d0e1c2a3f79d589f9e717335e","md5":"82c898e871d4b02117ff55ad970499bf","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGColor.java","type":"file","name":"SVGColor.java","base_name":"SVGColor","extension":".java","size":4953,"date":"2019-10-25","sha1":"30c5bf5b06f311bf55d5194c5c3e6002c36e7d0d","md5":"ac1c07a0a31afb69a97f228b84c9bf7f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGComposite.java","type":"file","name":"SVGComposite.java","base_name":"SVGComposite","extension":".java","size":3892,"date":"2019-10-25","sha1":"bd7b2e6b59bea6af87da6293a07f459a67e89f9d","md5":"cde2ee79a1b6bc9529dc3fcc70e077b8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGCompositeDescriptor.java","type":"file","name":"SVGCompositeDescriptor.java","base_name":"SVGCompositeDescriptor","extension":".java","size":2489,"date":"2019-10-25","sha1":"785378535f64ba1b7b3124ac96400a54073dc4bf","md5":"98a05de1f9508f0013c8f3263a8c4e6a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGConverter.java","type":"file","name":"SVGConverter.java","base_name":"SVGConverter","extension":".java","size":2063,"date":"2019-10-25","sha1":"eb6737d4a995aaf5ad873983d15cd4c8c1474a1e","md5":"6863642a1af469cba6f27adca92cc39a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGConvolveOp.java","type":"file","name":"SVGConvolveOp.java","base_name":"SVGConvolveOp","extension":".java","size":5482,"date":"2019-10-25","sha1":"42e2c658467a0257b1b18dc13e8feb4ef1de3095","md5":"d1e3a3c4fe385879762ded5a3e28df56","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGCSSStyler.java","type":"file","name":"SVGCSSStyler.java","base_name":"SVGCSSStyler","extension":".java","size":3872,"date":"2019-10-25","sha1":"4feae48da051c2e18e446a3d163aeb68e5662b8c","md5":"ae07b1d67da1258b5e911591182dcddc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGCustomBufferedImageOp.java","type":"file","name":"SVGCustomBufferedImageOp.java","base_name":"SVGCustomBufferedImageOp","extension":".java","size":2920,"date":"2019-10-25","sha1":"d777afcae12153400bb5e95b380bc88a794c78f4","md5":"410cc12411b848c74becc822a3aa0111","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGCustomComposite.java","type":"file","name":"SVGCustomComposite.java","base_name":"SVGCustomComposite","extension":".java","size":3099,"date":"2019-10-25","sha1":"c4e383ffc63fa96b6ae6afbadc4b3801a33b3ce4","md5":"e4b8dbc1fdac6a5d28fdf09afdfcdd1f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGCustomPaint.java","type":"file","name":"SVGCustomPaint.java","base_name":"SVGCustomPaint","extension":".java","size":2905,"date":"2019-10-25","sha1":"0201ac860ffb408b60e9222f359d84b5b0212df4","md5":"f5f556479f4391444e307c9be628a354","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGDescriptor.java","type":"file","name":"SVGDescriptor.java","base_name":"SVGDescriptor","extension":".java","size":2096,"date":"2019-10-25","sha1":"a8d42d52c06f6685fb3cdab65ccc1418be8c9dcc","md5":"dda9b3588b9e70fa3c95415d6dda8781","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGEllipse.java","type":"file","name":"SVGEllipse.java","base_name":"SVGEllipse","extension":".java","size":4778,"date":"2019-10-25","sha1":"5a1f02348538ef813fe2cdbf563f3bf5a8142124","md5":"766188f381b0c7dcc0cecf9bac880d65","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGFilterConverter.java","type":"file","name":"SVGFilterConverter.java","base_name":"SVGFilterConverter","extension":".java","size":2229,"date":"2019-10-25","sha1":"8e4131664909419008b21b09ffedde61c0637c26","md5":"5f01342432ccd9c3a4caf14284d3937d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGFilterDescriptor.java","type":"file","name":"SVGFilterDescriptor.java","base_name":"SVGFilterDescriptor","extension":".java","size":1607,"date":"2019-10-25","sha1":"3b183d4dc2e0a8a47c3060ccf0ab7408bb722d85","md5":"8be6ebae0fad21328ec919af9dca1a13","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGFont.java","type":"file","name":"SVGFont.java","base_name":"SVGFont","extension":".java","size":21980,"date":"2019-10-25","sha1":"8a32415efcd69fcff7d1ef9c08746659b8b32df4","md5":"14ba9de8ed2c89971ac1e33e743e421b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":41,"end_line":41},{"email":"vincent.hardy@eng.sun.com","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGFontDescriptor.java","type":"file","name":"SVGFontDescriptor.java","base_name":"SVGFontDescriptor","extension":".java","size":2735,"date":"2019-10-25","sha1":"25b2096c2c87e76f78edd072fe0a846a5efd934d","md5":"548f9e20d3ed52725876a56bd05536ae","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGGeneratorContext.java","type":"file","name":"SVGGeneratorContext.java","base_name":"SVGGeneratorContext","extension":".java","size":13556,"date":"2019-10-25","sha1":"e539a233b6971210c79249ce77e0ef967f4e846d","md5":"005c201ac732e124c132e7cf2e4f8af2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGGraphicContext.java","type":"file","name":"SVGGraphicContext.java","base_name":"SVGGraphicContext","extension":".java","size":4904,"date":"2019-10-25","sha1":"6214e66393f8bc3b459fdc387c74079ceca73508","md5":"f5e283e6efee3ea0726e63f3cf72cf60","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGGraphicContextConverter.java","type":"file","name":"SVGGraphicContextConverter.java","base_name":"SVGGraphicContextConverter","extension":".java","size":4802,"date":"2019-10-25","sha1":"be958280bad232cb69214d7bca325d62ab37350e","md5":"ce79298bb21f8fbf3778c50728a41ada","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGGraphicObjectConverter.java","type":"file","name":"SVGGraphicObjectConverter.java","base_name":"SVGGraphicObjectConverter","extension":".java","size":1800,"date":"2019-10-25","sha1":"bdaa7812b5a169261084686863c1edaacbf9e9fa","md5":"0f9710543983292193d2b731a5f48f86","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGGraphics2D.java","type":"file","name":"SVGGraphics2D.java","base_name":"SVGGraphics2D","extension":".java","size":60608,"date":"2019-10-25","sha1":"898a6736bdd989d9ef606fcb1242f76cb2f5349a","md5":"dffdf9ded89935dd83507243a822db86","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":81,"end_line":81}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/","start_line":72,"end_line":72}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGGraphics2DIOException.java","type":"file","name":"SVGGraphics2DIOException.java","base_name":"SVGGraphics2DIOException","extension":".java","size":2681,"date":"2019-10-25","sha1":"45b3d32a9305715c6835097ed65df5b20c9f9a7f","md5":"db1498b81a1fa41f970d833ce9dac25d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGGraphics2DRuntimeException.java","type":"file","name":"SVGGraphics2DRuntimeException.java","base_name":"SVGGraphics2DRuntimeException","extension":".java","size":2689,"date":"2019-10-25","sha1":"7df8ef7aff06ee2b466b926ff4bb86ecd3a502c2","md5":"d8beeda073240408ea513ddb185c0c9c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGHintsDescriptor.java","type":"file","name":"SVGHintsDescriptor.java","base_name":"SVGHintsDescriptor","extension":".java","size":2895,"date":"2019-10-25","sha1":"77e7e4fdf31b83319c6c2c15b1144a2a1c2c5e6d","md5":"017fdb1f2e13a098f188e32317c9c9ca","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGIDGenerator.java","type":"file","name":"SVGIDGenerator.java","base_name":"SVGIDGenerator","extension":".java","size":1886,"date":"2019-10-25","sha1":"97c53929af6ba9b38b44806f3b42a154bdc5cc16","md5":"b846bc7a8154f93f2b6af8c9306992de","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":27,"end_line":27},{"email":"vincent.hardy@eng.sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGLine.java","type":"file","name":"SVGLine.java","base_name":"SVGLine","extension":".java","size":2060,"date":"2019-10-25","sha1":"93d1fc183c80b4f66687e3b7e4ae3841d235dfed","md5":"3a2e7668549d06459b6aecb5cbb8a303","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGLinearGradient.java","type":"file","name":"SVGLinearGradient.java","base_name":"SVGLinearGradient","extension":".java","size":6445,"date":"2019-10-25","sha1":"e466d255170868b5ac542606f750a07f2474815e","md5":"3d66f6b44b1f84ff5e4e91c931573662","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGLookupOp.java","type":"file","name":"SVGLookupOp.java","base_name":"SVGLookupOp","extension":".java","size":12182,"date":"2019-10-25","sha1":"19b02bfc5811b1d253cfe65a2647f34735333bb2","md5":"b8ac32a9e61a5095c1e72ee5ca31f027","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGPaint.java","type":"file","name":"SVGPaint.java","base_name":"SVGPaint","extension":".java","size":4676,"date":"2019-10-25","sha1":"fdbcb6e834c6e1d582bfff54a2ab517026e20037","md5":"82925fbce7f2580bf1c1c2e6c8e93600","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":34,"end_line":34},{"email":"vincent.hardy@eng.sun.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGPaintDescriptor.java","type":"file","name":"SVGPaintDescriptor.java","base_name":"SVGPaintDescriptor","extension":".java","size":2583,"date":"2019-10-25","sha1":"51004adb91bfc63dd2484e37350f48f4c175126d","md5":"123821aede81449b763ac426ceccfea3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGPath.java","type":"file","name":"SVGPath.java","base_name":"SVGPath","extension":".java","size":5623,"date":"2019-10-25","sha1":"acfd7ff0ece248fefcf218f594de60da87b86412","md5":"d00edbc9501ea02ac86619727fb2081b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":43,"end_line":43},{"email":"vincent.hardy@eng.sun.com","start_line":44,"end_line":44}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGPolygon.java","type":"file","name":"SVGPolygon.java","base_name":"SVGPolygon","extension":".java","size":2968,"date":"2019-10-25","sha1":"2f50d5fb80588ec129b1227f554b9cd366b10d67","md5":"06d8b6d9a95c87c938beda39d77b39b5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGRectangle.java","type":"file","name":"SVGRectangle.java","base_name":"SVGRectangle","extension":".java","size":4114,"date":"2019-10-25","sha1":"54ab2e61e7158ea1e80522240dfd33ec98f726d5","md5":"0dda8fa6552a74949832ef2322cc8db2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGRenderingHints.java","type":"file","name":"SVGRenderingHints.java","base_name":"SVGRenderingHints","extension":".java","size":7755,"date":"2019-10-25","sha1":"b10de69b211cabb837fc18902b752ab52cabaa1c","md5":"bbcacbeb0bdaf74bb83de7865a61a264","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGRescaleOp.java","type":"file","name":"SVGRescaleOp.java","base_name":"SVGRescaleOp","extension":".java","size":8970,"date":"2019-10-25","sha1":"e7679dc43e06694a875633a727dec9096b37d11a","md5":"cad06d0cc7479159d511f27e01c41e91","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGShape.java","type":"file","name":"SVGShape.java","base_name":"SVGShape","extension":".java","size":3335,"date":"2019-10-25","sha1":"b5daf533a1769c3368fec3cfbbea8fa2889f6352","md5":"e01cb662cbb8c2ca4c7ad894cf230bdf","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGStrokeDescriptor.java","type":"file","name":"SVGStrokeDescriptor.java","base_name":"SVGStrokeDescriptor","extension":".java","size":3152,"date":"2019-10-25","sha1":"539b600cfe9082181541aad7d224e9993f8e0995","md5":"4136e875984ae06f248c34fad71918f1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGStylingAttributes.java","type":"file","name":"SVGStylingAttributes.java","base_name":"SVGStylingAttributes","extension":".java","size":2804,"date":"2019-10-25","sha1":"4240f568bfbaf6f99636c74ff59af050569c3c26","md5":"d93f3184063738d7f4d69f50701b9227","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGSyntax.java","type":"file","name":"SVGSyntax.java","base_name":"SVGSyntax","extension":".java","size":3407,"date":"2019-10-25","sha1":"44f968cbde6b68e710aa510dcf28608f64cc3f41","md5":"c91a212effb8e8a328e2afbefa4911cb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGTexturePaint.java","type":"file","name":"SVGTexturePaint.java","base_name":"SVGTexturePaint","extension":".java","size":6814,"date":"2019-10-25","sha1":"2d59f3e2db40180fec16c89b25841956566b3c6b","md5":"dd2f57222c6aa05e29fcf7a2173818b5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGTransform.java","type":"file","name":"SVGTransform.java","base_name":"SVGTransform","extension":".java","size":10906,"date":"2019-10-25","sha1":"2bab854c2b13c4f6a121f867a28fc1168b9e29f1","md5":"3f3289b2d7acadc253ea093e18f90fba","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":31,"end_line":31},{"email":"paul_evenblij@compuware.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SVGTransformDescriptor.java","type":"file","name":"SVGTransformDescriptor.java","base_name":"SVGTransformDescriptor","extension":".java","size":2543,"date":"2019-10-25","sha1":"e49fce3a1baa53ac8e593486bd35623f50776efd","md5":"80a6afa133d0b13d208d1aaaf38b2f44","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/SwingSVGPrettyPrint.java","type":"file","name":"SwingSVGPrettyPrint.java","base_name":"SwingSVGPrettyPrint","extension":".java","size":7202,"date":"2019-10-25","sha1":"948faf3ae2cd95d980cd965d71fca4a297aa756e","md5":"c2901dfc79cc1d727294d2a130787ef7","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Vincent Hardy","start_line":42,"end_line":43}],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/XmlWriter.java","type":"file","name":"XmlWriter.java","base_name":"XmlWriter","extension":".java","size":18639,"date":"2019-10-25","sha1":"61a6003bdf60e0e1b2e38e8912997488daf372c5","md5":"600a73dc464a94ad3c9e2eeb733edc57","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":44,"end_line":44}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font","type":"directory","name":"font","base_name":"font","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":72,"dirs_count":1,"size_count":218418,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/Font.java","type":"file","name":"Font.java","base_name":"Font","extension":".java","size":5758,"date":"2019-10-25","sha1":"7593e6b65b97e3bf9902f8bc5dbc761c22527f50","md5":"898425266732769d2eba71f9be26b63d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/Glyph.java","type":"file","name":"Glyph.java","base_name":"Glyph","extension":".java","size":3148,"date":"2019-10-25","sha1":"d8d26df7020d93ad10526895e894cc37006340df","md5":"a9fbc6c7ea3210a56fabc27509b0b0d0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2319,"date":"2019-10-25","sha1":"502f15ae9fbb4c26b23f39b21445811a418a112e","md5":"14616c5ff7b2f89e44a8c81764e81c00","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/Point.java","type":"file","name":"Point.java","base_name":"Point","extension":".java","size":1361,"date":"2019-10-25","sha1":"c64f5fca104e1feefad6c7b68a1f99fcb271221f","md5":"d202dfa06c5dde51793f2cc4772db79b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/SVGFont.java","type":"file","name":"SVGFont.java","base_name":"SVGFont","extension":".java","size":33463,"date":"2019-10-25","sha1":"8f43d02307c3a2c6c7c85db85beb7f09f36e0100","md5":"070154cd469cda97bb9af967a4fa4153","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":47,"end_line":47}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table","type":"directory","name":"table","base_name":"table","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":67,"dirs_count":0,"size_count":172369,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/ClassDef.java","type":"file","name":"ClassDef.java","base_name":"ClassDef","extension":".java","size":1466,"date":"2019-10-25","sha1":"07e2e0c9bae0d17bbf1ffd21e2416b80622cd82a","md5":"ccb61231639eaaa856de8ca1e2c03909","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/ClassDefFormat1.java","type":"file","name":"ClassDefFormat1.java","base_name":"ClassDefFormat1","extension":".java","size":1624,"date":"2019-10-25","sha1":"c69aeeeb73fbe5297aa087edc1db5908c4535110","md5":"018290cc8b940b3c8719b777c046c78e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/ClassDefFormat2.java","type":"file","name":"ClassDefFormat2.java","base_name":"ClassDefFormat2","extension":".java","size":1601,"date":"2019-10-25","sha1":"06c7989765c620432f55d774aef1a6ac52227165","md5":"9b45a7eead61cc0bf15e25389889aa39","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/CmapFormat.java","type":"file","name":"CmapFormat.java","base_name":"CmapFormat","extension":".java","size":2292,"date":"2019-10-25","sha1":"db3c1222af9d36a9225ca2359471728e4475e83e","md5":"e634e6f87743b9f8c5b64a01318276ea","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/CmapFormat0.java","type":"file","name":"CmapFormat0.java","base_name":"CmapFormat0","extension":".java","size":1910,"date":"2019-10-25","sha1":"b38478a7fe1a69cc105cfbb53a4ce9fb7603eb1e","md5":"93ed2536d63e5725b844475b5843e3df","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/CmapFormat2.java","type":"file","name":"CmapFormat2.java","base_name":"CmapFormat2","extension":".java","size":1531,"date":"2019-10-25","sha1":"d414e6111acf4332cbd55ad6aae4c0eb9ceb342a","md5":"88615a9b452c3b292b24903537b608b5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/CmapFormat4.java","type":"file","name":"CmapFormat4.java","base_name":"CmapFormat4","extension":".java","size":5900,"date":"2019-10-25","sha1":"390a90b7e925ba2c2abe4b9c887fca8da53e4c95","md5":"cc20603a1bf17f380f0a43dd915c5501","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://developer.apple.com/fonts/TTRefMan/RM06/Chap6cmap.html#Surrogates","start_line":87,"end_line":87}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/CmapFormat6.java","type":"file","name":"CmapFormat6.java","base_name":"CmapFormat6","extension":".java","size":1552,"date":"2019-10-25","sha1":"63b7d48c5a140146c80355acb48c0023c0056ccb","md5":"0e02a4d6462e45ad312c0b33ed4b6e62","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/CmapIndexEntry.java","type":"file","name":"CmapIndexEntry.java","base_name":"CmapIndexEntry","extension":".java","size":2696,"date":"2019-10-25","sha1":"da38368089b426f81aaa47b2d87d4a1bf2a420e5","md5":"135cc79916669f8ef57e41f22095b1bd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/CmapTable.java","type":"file","name":"CmapTable.java","base_name":"CmapTable","extension":".java","size":2886,"date":"2019-10-25","sha1":"c94b7fc2451dbef3d6aa65a56d125111268a75a3","md5":"27bcab0551b92c7a5d324adae42eacc3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/Coverage.java","type":"file","name":"Coverage.java","base_name":"Coverage","extension":".java","size":1688,"date":"2019-10-25","sha1":"e85d71650af54f0988c74600034ceaa80f698e32","md5":"1898f1b6ff27b79df4073a6d54e2144b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/CoverageFormat1.java","type":"file","name":"CoverageFormat1.java","base_name":"CoverageFormat1","extension":".java","size":1749,"date":"2019-10-25","sha1":"2586e59b418e1c06a5795e8d031a5cf5a80b0cc6","md5":"7367f8729254f296c05b527487f43b21","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/CoverageFormat2.java","type":"file","name":"CoverageFormat2.java","base_name":"CoverageFormat2","extension":".java","size":1821,"date":"2019-10-25","sha1":"15705fcbbb7cdd3f3ec985c257a4d17e234d689f","md5":"5b29eb3bbc2304dbfc31e573a99ed1bd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/CvtTable.java","type":"file","name":"CvtTable.java","base_name":"CvtTable","extension":".java","size":1535,"date":"2019-10-25","sha1":"59c63ac9d9e1a5e51f48f9e7774e1aa155ee21aa","md5":"d27895078d784a3bc0866f850b85d9e1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/Device.java","type":"file","name":"Device.java","base_name":"Device","extension":".java","size":1946,"date":"2019-10-25","sha1":"e339ca9a168ea01c3b94ad7aadcba5d63d4f19f9","md5":"e307fdf53e378eb7e3a9f7c5a7784075","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/DirectoryEntry.java","type":"file","name":"DirectoryEntry.java","base_name":"DirectoryEntry","extension":".java","size":2146,"date":"2019-10-25","sha1":"2cf19b88da8761c5e43eb1f10f64c35823cad519","md5":"e3c97dee2df8900cd02b54ec62e7bc1d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/Feature.java","type":"file","name":"Feature.java","base_name":"Feature","extension":".java","size":1738,"date":"2019-10-25","sha1":"616176b4e0d2a70d08742b60cc164ed19d9529a6","md5":"8fd0d8ddf61ea0532ed3b9dd24570a95","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/FeatureList.java","type":"file","name":"FeatureList.java","base_name":"FeatureList","extension":".java","size":2293,"date":"2019-10-25","sha1":"2690f4651474e641dc2c44300fa2181dfb859fcd","md5":"f9801e7819a4da78ad6545afb8190cf5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/FeatureRecord.java","type":"file","name":"FeatureRecord.java","base_name":"FeatureRecord","extension":".java","size":1444,"date":"2019-10-25","sha1":"80d4d7da8a46fea47ecaaffe0cdff4ca58f08ebe","md5":"204bc24106bd6998f46d8a43c2a86c44","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/FeatureTags.java","type":"file","name":"FeatureTags.java","base_name":"FeatureTags","extension":".java","size":1177,"date":"2019-10-25","sha1":"c72ae6cd8cb9e18152bcadee951aaf74799753eb","md5":"7a30a2646b0a7c27de8b043d9901f86d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/FpgmTable.java","type":"file","name":"FpgmTable.java","base_name":"FpgmTable","extension":".java","size":1348,"date":"2019-10-25","sha1":"2672677096a6f84df9ffb05d604d2152fa36e988","md5":"4f133e33ebf5d1b9747248e9d2c1a79e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/GlyfCompositeComp.java","type":"file","name":"GlyfCompositeComp.java","base_name":"GlyfCompositeComp","extension":".java","size":5407,"date":"2019-10-25","sha1":"fa83a88fc80cecab761b04a2efaab6733234109a","md5":"776660795ad3618dfb158234d5f47495","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/GlyfCompositeDescript.java","type":"file","name":"GlyfCompositeDescript.java","base_name":"GlyfCompositeDescript","extension":".java","size":6449,"date":"2019-10-25","sha1":"2a0541e005d33b863d3c2b312da6a47cae3acc91","md5":"f4cb8cafd256a24e3fe6c32a278ae46b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/GlyfDescript.java","type":"file","name":"GlyfDescript.java","base_name":"GlyfDescript","extension":".java","size":2353,"date":"2019-10-25","sha1":"e8eb3147c7b6b9eedf628dea409d3a3c46a0b207","md5":"250cb8677a7c31039fe19594065932c3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/GlyfSimpleDescript.java","type":"file","name":"GlyfSimpleDescript.java","base_name":"GlyfSimpleDescript","extension":".java","size":4636,"date":"2019-10-25","sha1":"acca706d5366aac0fdddf755978a397c1c9fec5a","md5":"e1e5125d281895fc6ec65eb235d2c3d4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/GlyfTable.java","type":"file","name":"GlyfTable.java","base_name":"GlyfTable","extension":".java","size":3797,"date":"2019-10-25","sha1":"d5d679bd83d3715d56eb731ceb2b2728f00c858a","md5":"3bfb31a80099ed8931a1a82eaa745b3a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/GlyphDescription.java","type":"file","name":"GlyphDescription.java","base_name":"GlyphDescription","extension":".java","size":1506,"date":"2019-10-25","sha1":"b5a1979cc1a941638b3b1c06f4925306845bb6b0","md5":"6d5b0c6d0f17fd1f0e972a8e387a83ab","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/GposTable.java","type":"file","name":"GposTable.java","base_name":"GposTable","extension":".java","size":2751,"date":"2019-10-25","sha1":"d0e3b8003177804546b5ab5cdc2a681ea0a43577","md5":"008a18993ccfa8b2988942c0149f12c0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/GsubTable.java","type":"file","name":"GsubTable.java","base_name":"GsubTable","extension":".java","size":3470,"date":"2019-10-25","sha1":"52a41fb042a39fbabcdfa4750ebe8318c41fb2ad","md5":"87f62791831b804ac634f3a4bc52b4ef","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/HeadTable.java","type":"file","name":"HeadTable.java","base_name":"HeadTable","extension":".java","size":4609,"date":"2019-10-25","sha1":"224e505c1b04c55fae52ece6465394cdab3db7c3","md5":"eedfec541983db87ad93cf165264e628","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/HheaTable.java","type":"file","name":"HheaTable.java","base_name":"HheaTable","extension":".java","size":3074,"date":"2019-10-25","sha1":"a45f7b6038558dcaddb5e774c1fbe05f09a6836f","md5":"b099ea829dfc0bf3e7190d44ac0eb187","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/HmtxTable.java","type":"file","name":"HmtxTable.java","base_name":"HmtxTable","extension":".java","size":3496,"date":"2019-10-25","sha1":"d14a2dc59bd50ba37b461f6df3557ac5cc4b9a37","md5":"8809e5c33f6ac4f899d3268606335fd8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/KerningPair.java","type":"file","name":"KerningPair.java","base_name":"KerningPair","extension":".java","size":1562,"date":"2019-10-25","sha1":"d451f0269437235c7c42561431cdb497347f32b5","md5":"bb50ad4a533eddf9e94447093c6efa81","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/KernSubtable.java","type":"file","name":"KernSubtable.java","base_name":"KernSubtable","extension":".java","size":1876,"date":"2019-10-25","sha1":"c239f0ff3a958e4587b9736f2595470532a142db","md5":"2ecc6c7be5d4a357b09faa543ede3c4a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/KernSubtableFormat0.java","type":"file","name":"KernSubtableFormat0.java","base_name":"KernSubtableFormat0","extension":".java","size":1908,"date":"2019-10-25","sha1":"6249b47f480d004adebf2a3dad90080ecfc85bcc","md5":"6f308599f7c28a08d04901fb4fc629ba","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/KernSubtableFormat2.java","type":"file","name":"KernSubtableFormat2.java","base_name":"KernSubtableFormat2","extension":".java","size":1699,"date":"2019-10-25","sha1":"e22b3b3bcc2d5bd1ddbf0c21e09fdeb8d5ec4125","md5":"c48a826dbc9b3dd8731f65c373442b2d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/KernTable.java","type":"file","name":"KernTable.java","base_name":"KernTable","extension":".java","size":1888,"date":"2019-10-25","sha1":"e6d48dbe664bbbd3e66d9bc7c36f6ea1c0125b85","md5":"93a5da00a7aa43ad6d1f46c95f2d6ca5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/LangSys.java","type":"file","name":"LangSys.java","base_name":"LangSys","extension":".java","size":1849,"date":"2019-10-25","sha1":"b3808d0b601c04510c9bb9bdecb2f78513b7cccd","md5":"63532e8803fdb3e2f67dbb5228708cea","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/LangSysRecord.java","type":"file","name":"LangSysRecord.java","base_name":"LangSysRecord","extension":".java","size":1444,"date":"2019-10-25","sha1":"9872db125f1b200c27a457e4f69a763fc9f4e973","md5":"d2c496fac65b77e1532b0e4b13f65e79","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/Ligature.java","type":"file","name":"Ligature.java","base_name":"Ligature","extension":".java","size":1692,"date":"2019-10-25","sha1":"d5a722153ad61c6b70ba7b75a70572aa8a0826f7","md5":"9f660f0a023132aac66de767f5c71588","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/LigatureSet.java","type":"file","name":"LigatureSet.java","base_name":"LigatureSet","extension":".java","size":1766,"date":"2019-10-25","sha1":"094188e89cd1f6687c7ac6e1adf7a889967cfa5d","md5":"9847fd077c7b3a077478655290030408","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/LigatureSubst.java","type":"file","name":"LigatureSubst.java","base_name":"LigatureSubst","extension":".java","size":1447,"date":"2019-10-25","sha1":"05ed3a51a24d4186e14153d4ec2930a062e355eb","md5":"94a2bc6d882479a351ac363cba2d9422","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/LigatureSubstFormat1.java","type":"file","name":"LigatureSubstFormat1.java","base_name":"LigatureSubstFormat1","extension":".java","size":2044,"date":"2019-10-25","sha1":"cf47268c4c150cb76462676c8037dcf3e605443f","md5":"b7148537d1c329e82618e5e7fca17aa0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/LocaTable.java","type":"file","name":"LocaTable.java","base_name":"LocaTable","extension":".java","size":2302,"date":"2019-10-25","sha1":"659bbdf3eaf6d1becc131cbadab9cb0b3e3ae341","md5":"ec19616d2c70c80c4c3c00376738ab40","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/Lookup.java","type":"file","name":"Lookup.java","base_name":"Lookup","extension":".java","size":2379,"date":"2019-10-25","sha1":"20a3e31d1f5e54ad3857596327819660166488f6","md5":"4e3ba85e83da95c35ee81d4e045fd73d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/LookupList.java","type":"file","name":"LookupList.java","base_name":"LookupList","extension":".java","size":1982,"date":"2019-10-25","sha1":"bbad2ffae943f8004bf5d80d147a1b4013dd4c82","md5":"aa95d1bfb1841657588a1cf01997ba59","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/LookupSubtable.java","type":"file","name":"LookupSubtable.java","base_name":"LookupSubtable","extension":".java","size":1048,"date":"2019-10-25","sha1":"b35cf96fca7042c358d0cb49f38837b25c3fc957","md5":"16cd7be97d9042caae98b2d042f65cde","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/LookupSubtableFactory.java","type":"file","name":"LookupSubtableFactory.java","base_name":"LookupSubtableFactory","extension":".java","size":1210,"date":"2019-10-25","sha1":"9521aba558c919d576ed56bd53eb4ab4b2e6286e","md5":"aabacd95081373140679b7cea49e530e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/MaxpTable.java","type":"file","name":"MaxpTable.java","base_name":"MaxpTable","extension":".java","size":3606,"date":"2019-10-25","sha1":"e204d3e4d4982c2c2d63d52477fa4b3d09d6b69e","md5":"ad6d56cffddcd68bb9b70ee8b46f8f18","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/NameRecord.java","type":"file","name":"NameRecord.java","base_name":"NameRecord","extension":".java","size":3125,"date":"2019-10-25","sha1":"eb051085e9195d9a9f3fb29c1389e87291514dc9","md5":"787354daf1a73cd9a08938e0770c8861","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/NameTable.java","type":"file","name":"NameTable.java","base_name":"NameTable","extension":".java","size":2329,"date":"2019-10-25","sha1":"b343c40bc21d5e847b726df4589d1089ce97e6a3","md5":"9e2e4a4ff314ca2fc0fed481870bd0ab","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/Os2Table.java","type":"file","name":"Os2Table.java","base_name":"Os2Table","extension":".java","size":6170,"date":"2019-10-25","sha1":"1e1afd060ecfdf708562777c58063ef055ba2f08","md5":"9f44543336eefa0e45cd8f135abe22f7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/Panose.java","type":"file","name":"Panose.java","base_name":"Panose","extension":".java","size":2840,"date":"2019-10-25","sha1":"fef4dff16a3882cb2ace5bc483a151780c82a267","md5":"1ef57ac24b465799217d89c93e78965a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/PostTable.java","type":"file","name":"PostTable.java","base_name":"PostTable","extension":".java","size":11435,"date":"2019-10-25","sha1":"a2107331250e597a2e019d49f91b672e50376155","md5":"6f490551fc8dab0e36bdfdc7fa689a39","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/PrepTable.java","type":"file","name":"PrepTable.java","base_name":"PrepTable","extension":".java","size":1345,"date":"2019-10-25","sha1":"34a652c6bde7741fe01ce64eeda94caa3d93516a","md5":"8c4be62ac85bfac32067facddb01ad80","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/Program.java","type":"file","name":"Program.java","base_name":"Program","extension":".java","size":1718,"date":"2019-10-25","sha1":"fb996dfe082da5380e70167a2d7bb6f6018e504b","md5":"2f4a2604451e9de0ac816847f5d8ab3f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/RangeRecord.java","type":"file","name":"RangeRecord.java","base_name":"RangeRecord","extension":".java","size":1776,"date":"2019-10-25","sha1":"e3b4950c4c9a02e55f842edc0f49881318ca4299","md5":"083577f85a014a5dc4c8c4ac3d93a788","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/Script.java","type":"file","name":"Script.java","base_name":"Script","extension":".java","size":2285,"date":"2019-10-25","sha1":"006837b007e060300cc419ee6b0a87906b6f539b","md5":"031d48e6d489e0ec3a502ba31a76738c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/ScriptList.java","type":"file","name":"ScriptList.java","base_name":"ScriptList","extension":".java","size":2353,"date":"2019-10-25","sha1":"7ef044b484156e269b6599c917aef37654a97e9b","md5":"a717706a86926be7957462afd7f34a98","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/ScriptRecord.java","type":"file","name":"ScriptRecord.java","base_name":"ScriptRecord","extension":".java","size":1447,"date":"2019-10-25","sha1":"fb45b46a8e353ca14af3bf9cbc760c2621dfbb45","md5":"c26071f73043850078f0aa57df7fd595","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/ScriptTags.java","type":"file","name":"ScriptTags.java","base_name":"ScriptTags","extension":".java","size":1097,"date":"2019-10-25","sha1":"dd5c92e8fa7aaa631319a585726c2cdf9f07ef57","md5":"ae49be043972919cf00a46a0d4a07d77","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/SingleSubst.java","type":"file","name":"SingleSubst.java","base_name":"SingleSubst","extension":".java","size":1614,"date":"2019-10-25","sha1":"a2775341b94b495efeac4638c8e7e142ce649ebf","md5":"a068b0b3af7cbc2089cb2a90e4f9021a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/SingleSubstFormat1.java","type":"file","name":"SingleSubstFormat1.java","base_name":"SingleSubstFormat1","extension":".java","size":1781,"date":"2019-10-25","sha1":"cf9a70654221b55c80c3ccfe8044c36d55f660c9","md5":"0d6f1a4e97272a61c9a0e9abe8e2106b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/SingleSubstFormat2.java","type":"file","name":"SingleSubstFormat2.java","base_name":"SingleSubstFormat2","extension":".java","size":1960,"date":"2019-10-25","sha1":"1f49294e940ea60ce627884460484a26a8fcd2d2","md5":"3bf962f98293b1221a25601ffcfa97aa","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/Table.java","type":"file","name":"Table.java","base_name":"Table","extension":".java","size":7206,"date":"2019-10-25","sha1":"966c3298dc6917fa9702e580428dfeb0b85654ea","md5":"16035e3bd6bc5a2178747885d636969c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/TableDirectory.java","type":"file","name":"TableDirectory.java","base_name":"TableDirectory","extension":".java","size":2879,"date":"2019-10-25","sha1":"0fb28fa1d0954449490b24b33cfcd2a51f225e9a","md5":"a98e092a5f4f95ba36587b515c1f1c0f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/java/org/apache/batik/svggen/font/table/TableFactory.java","type":"file","name":"TableFactory.java","base_name":"TableFactory","extension":".java","size":3416,"date":"2019-10-25","sha1":"b9d6fe246bb296dfb1d428285f2e87d34a49cdbe","md5":"277a7cf25d1192655edda24a8b954a4d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@steadystate.co.uk","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":6,"size_count":2650,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":5,"size_count":2650,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":4,"size_count":2650,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":3,"size_count":2650,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/resources/org/apache/batik/svggen","type":"directory","name":"svggen","base_name":"svggen","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":2,"size_count":2650,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/resources/org/apache/batik/svggen/font","type":"directory","name":"font","base_name":"font","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":2650,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/resources/org/apache/batik/svggen/font/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":2650,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/main/resources/org/apache/batik/svggen/font/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":2650,"date":"2019-10-25","sha1":"ea93ca8119dfaff97b408a66a2d9f9386323b4d1","md5":"327fcdf36a1f46aa24e83396f90452f9","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svggen/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp","type":"directory","name":"batik-svgpp","base_name":"batik-svgpp","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":18,"size_count":14930,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2597,"date":"2019-10-25","sha1":"5272148ce271096adb45b8d4fab857f5fc8fe1ca","md5":"1edba28d0adfe16c497f8a621a460f72","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-svgpp","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-svgpp\nBatik SVG Pretty Printer Application","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-transcoder","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-svgpp@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-svgpp@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svgpp/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svgpp/1.12/batik-svgpp-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svgpp/1.12/batik-svgpp-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":17,"size_count":12333,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":13,"size_count":12333,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":5,"size_count":9999,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":4,"size_count":9999,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":3,"size_count":9999,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":2,"size_count":9999,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main/java/org/apache/batik/apps","type":"directory","name":"apps","base_name":"apps","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":9999,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main/java/org/apache/batik/apps/svgpp","type":"directory","name":"svgpp","base_name":"svgpp","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":9999,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main/java/org/apache/batik/apps/svgpp/Main.java","type":"file","name":"Main.java","base_name":"Main","extension":".java","size":9999,"date":"2019-10-25","sha1":"fed670259f377f24e313cd4b275f10d34844ee24","md5":"032c66b9a4f814f3876ed782795b50ab","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":6,"size_count":2334,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":5,"size_count":2334,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":4,"size_count":2334,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":3,"size_count":2334,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main/resources/org/apache/batik/apps","type":"directory","name":"apps","base_name":"apps","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":2,"size_count":2334,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main/resources/org/apache/batik/apps/svgpp","type":"directory","name":"svgpp","base_name":"svgpp","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":2334,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main/resources/org/apache/batik/apps/svgpp/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":2334,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/main/resources/org/apache/batik/apps/svgpp/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":2334,"date":"2019-10-25","sha1":"8b34aa50d96f4527374b60f2819416074ce8b139","md5":"87c0f1c6642d9548d08e48eb80347e84","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[{"value":"(c) Apache Software Foundation http://xmlgraphics.apache.org/batik","start_line":26,"end_line":27}],"holders":[{"value":"Apache Software Foundation","start_line":26,"end_line":27}],"authors":[{"value":"stephane@hillion.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xmlgraphics.apache.org/batik","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgpp/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer","type":"directory","name":"batik-svgrasterizer","base_name":"batik-svgrasterizer","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":15,"dirs_count":18,"size_count":125640,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2469,"date":"2019-10-25","sha1":"a78ff488f109a486db40756396eaac1de84e6f05","md5":"0994ca1fc6f4b7b75ec5dd6d513508c3","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-svgrasterizer","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-svgrasterizer\nBatik SVG Rasterizer Library","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-parser","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-transcoder","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-codec","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-svgrasterizer@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-svgrasterizer@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svgrasterizer/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svgrasterizer/1.12/batik-svgrasterizer-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-svgrasterizer/1.12/batik-svgrasterizer-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":14,"dirs_count":17,"size_count":123171,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":14,"dirs_count":13,"size_count":123171,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":10,"dirs_count":5,"size_count":101403,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":10,"dirs_count":4,"size_count":101403,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":10,"dirs_count":3,"size_count":101403,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":10,"dirs_count":2,"size_count":101403,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java/org/apache/batik/apps","type":"directory","name":"apps","base_name":"apps","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":10,"dirs_count":1,"size_count":101403,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java/org/apache/batik/apps/rasterizer","type":"directory","name":"rasterizer","base_name":"rasterizer","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":10,"dirs_count":0,"size_count":101403,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java/org/apache/batik/apps/rasterizer/DefaultSVGConverterController.java","type":"file","name":"DefaultSVGConverterController.java","base_name":"DefaultSVGConverterController","extension":".java","size":3322,"date":"2019-10-25","sha1":"71aa803e209182d266d52a4410574680ec4d8ec1","md5":"8caab8a6a3306c95beaf6b1867818b94","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java/org/apache/batik/apps/rasterizer/DestinationType.java","type":"file","name":"DestinationType.java","base_name":"DestinationType","extension":".java","size":4255,"date":"2019-10-25","sha1":"56418f792042ca7ab139bb7ea9aa83a939c74480","md5":"cb07f0f6380dc9446ba29cba2285ee97","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Henri Ruini","start_line":30,"end_line":32}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java/org/apache/batik/apps/rasterizer/Main.java","type":"file","name":"Main.java","base_name":"Main","extension":".java","size":40232,"date":"2019-10-25","sha1":"afd4095a1298034eb8dc052b2e2fb882ba0528a3","md5":"3060ac9734ff141ceb2eb40b31afbb61","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":44,"end_line":44}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java/org/apache/batik/apps/rasterizer/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2674,"date":"2019-10-25","sha1":"ec82addfe7d20fc68528b9f4c4046568772676a2","md5":"7520e55358df2dd141016537a0fa4a7d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java/org/apache/batik/apps/rasterizer/SVGConverter.java","type":"file","name":"SVGConverter.java","base_name":"SVGConverter","extension":".java","size":37222,"date":"2019-10-25","sha1":"f0d158307cf30438ae287d442737579d88f7e030","md5":"5fb1c0b6f3e8a843f18ff388ffd5b20b","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Henri.Ruini@nokia.com","start_line":96,"end_line":96},{"email":"vhardy@apache.org","start_line":97,"end_line":97}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java/org/apache/batik/apps/rasterizer/SVGConverterController.java","type":"file","name":"SVGConverterController.java","base_name":"SVGConverterController","extension":".java","size":3065,"date":"2019-10-25","sha1":"6800c12db7e938adb5bba148e445e9ae7cf15a82","md5":"ff5774423a0c38d60af8d932847a18b8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java/org/apache/batik/apps/rasterizer/SVGConverterException.java","type":"file","name":"SVGConverterException.java","base_name":"SVGConverterException","extension":".java","size":2305,"date":"2019-10-25","sha1":"30a448cd1bb5e139e8ab7b1ddc7ca35dc5d997fb","md5":"886f4de2cbdd90664e5daf32ce835df0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java/org/apache/batik/apps/rasterizer/SVGConverterFileSource.java","type":"file","name":"SVGConverterFileSource.java","base_name":"SVGConverterFileSource","extension":".java","size":2771,"date":"2019-10-25","sha1":"6d7f6d68859806e824de6885e65b6c56e69a7210","md5":"b73cf141e97b4dc8a5b74d71a624417e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java/org/apache/batik/apps/rasterizer/SVGConverterSource.java","type":"file","name":"SVGConverterSource.java","base_name":"SVGConverterSource","extension":".java","size":1709,"date":"2019-10-25","sha1":"b4e439818736acae356a4061de0d69f8a5a6d35f","md5":"68db9fa9ef9dc949ca2f105bbeecdf8f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/java/org/apache/batik/apps/rasterizer/SVGConverterURLSource.java","type":"file","name":"SVGConverterURLSource.java","base_name":"SVGConverterURLSource","extension":".java","size":3848,"date":"2019-10-25","sha1":"2634accea7f1650b7ccc5e1a3e81ec3354928656","md5":"1df9f233219dc4a554a47d94f29ca92c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":6,"size_count":21768,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":5,"size_count":21768,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":4,"size_count":21768,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":3,"size_count":21768,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/resources/org/apache/batik/apps","type":"directory","name":"apps","base_name":"apps","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":2,"size_count":21768,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/resources/org/apache/batik/apps/rasterizer","type":"directory","name":"rasterizer","base_name":"rasterizer","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":1,"size_count":21768,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/resources/org/apache/batik/apps/rasterizer/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":21768,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/resources/org/apache/batik/apps/rasterizer/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":11031,"date":"2019-10-25","sha1":"8b99145456fbd0ae4d2a82d932d62be38240cd1d","md5":"1ac5408f5e29d1dc963d663c66f6da72","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/resources/org/apache/batik/apps/rasterizer/resources/rasterizer.bin.policy","type":"file","name":"rasterizer.bin.policy","base_name":"rasterizer.bin","extension":".policy","size":3612,"date":"2019-10-25","sha1":"62fb1caf383b2b0c16c9c96e5d289eedeb378b04","md5":"e995b5076221cbb93640039ce86c9f99","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/resources/org/apache/batik/apps/rasterizer/resources/rasterizer.policy","type":"file","name":"rasterizer.policy","base_name":"rasterizer","extension":".policy","size":2366,"date":"2019-10-25","sha1":"ff616d83600c7599a64f39ee0c7fdf86a436790d","md5":"cb75d812a67160a04a633b369462d5c9","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/main/resources/org/apache/batik/apps/rasterizer/resources/rasterizer.policy.ref","type":"file","name":"rasterizer.policy.ref","base_name":"rasterizer.policy","extension":".ref","size":4759,"date":"2019-10-25","sha1":"e3ceebde3a4ff20a1b52df6d4251d955a34a3aa9","md5":"18056ef7ca82cd326685d023918a20b8","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"jarsLibDir@xml-apis-ext-1.3.04.jar","start_line":21,"end_line":21},{"email":"jarsLibDir@xml-apis-1.3.04.jar","start_line":25,"end_line":25},{"email":"jarsLibDir@xalan-2.7.0.jar","start_line":29,"end_line":29},{"email":"jarsLibDir@js.jar","start_line":121,"end_line":121}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-svgrasterizer/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing","type":"directory","name":"batik-swing","base_name":"batik-swing","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":49,"dirs_count":20,"size_count":369665,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":3608,"date":"2019-10-25","sha1":"f42b3b7ca5316042bfbc6dddabd0ce7ad93fba95","md5":"ed9af74add229e03e30c5177d4e3b86e","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-swing","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-swing\nBatik SVG Swing components","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-anim","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-awt-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-bridge","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-css","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-dom","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-ext","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-gui-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-gvt","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-script","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/xml-apis/xml-apis-ext","requirement":"${xmlapisext.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-swing@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-swing@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-swing/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-swing/1.12/batik-swing-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-swing/1.12/batik-swing-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":48,"dirs_count":19,"size_count":366057,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":48,"dirs_count":15,"size_count":366057,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":41,"dirs_count":6,"size_count":356373,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":41,"dirs_count":5,"size_count":356373,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":41,"dirs_count":4,"size_count":356373,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":41,"dirs_count":3,"size_count":356373,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing","type":"directory","name":"swing","base_name":"swing","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":41,"dirs_count":2,"size_count":356373,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/JSVGCanvas.java","type":"file","name":"JSVGCanvas.java","base_name":"JSVGCanvas","extension":".java","size":44671,"date":"2019-10-25","sha1":"049ffef01d5dccc15cb87cc57eabe95e6a1e3695","md5":"ad2db42f5ccc9f6660c6d7b7b33bbd5d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":82,"end_line":82},{"email":"stephane@hillion.org","start_line":83,"end_line":83}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/JSVGCanvasBeanInfo.java","type":"file","name":"JSVGCanvasBeanInfo.java","base_name":"JSVGCanvasBeanInfo","extension":".java","size":2303,"date":"2019-10-25","sha1":"66e02b5c9b75f8170220f197feea3530355e8941","md5":"e98a3c584e2774e49787304f15643f27","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/JSVGScrollPane.java","type":"file","name":"JSVGScrollPane.java","base_name":"JSVGScrollPane","extension":".java","size":21948,"date":"2019-10-25","sha1":"5cb2746577e03e244c153943225746f8cf65948a","md5":"41ae63eaa6ca9507116739e391c7a532","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Zach DelProposto","start_line":77,"end_line":81}],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2318,"date":"2019-10-25","sha1":"8661cc87c3d349ea86ffb902bbc5a512c0abce58","md5":"2854fb1a5a3a79b70f2a90a6d0d018dd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt","type":"directory","name":"gvt","base_name":"gvt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":16,"dirs_count":0,"size_count":94336,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/AbstractImageZoomInteractor.java","type":"file","name":"AbstractImageZoomInteractor.java","base_name":"AbstractImageZoomInteractor","extension":".java","size":3819,"date":"2019-10-25","sha1":"31b84c6de4e7933e9aecb706477c97af76adfc0f","md5":"55b62ca6b768aaac25246a61c7606693","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/AbstractPanInteractor.java","type":"file","name":"AbstractPanInteractor.java","base_name":"AbstractPanInteractor","extension":".java","size":4477,"date":"2019-10-25","sha1":"7f6b8859eb1c5e2f4507d4e2a8d1844a940b369e","md5":"7618f8116dfa9297f7ae472037a4d54d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/AbstractResetTransformInteractor.java","type":"file","name":"AbstractResetTransformInteractor.java","base_name":"AbstractResetTransformInteractor","extension":".java","size":3890,"date":"2019-10-25","sha1":"a8c4b3e51dfa7196a97a03ef20146b4f1b4862ba","md5":"a5add9398985fa4231a9cae7f991ce30","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/AbstractRotateInteractor.java","type":"file","name":"AbstractRotateInteractor.java","base_name":"AbstractRotateInteractor","extension":".java","size":3888,"date":"2019-10-25","sha1":"d81b193d3962206c0615b40128c0cfeb6535f8a3","md5":"fed007a333b2f4b9a2e19cef4676a32b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/AbstractZoomInteractor.java","type":"file","name":"AbstractZoomInteractor.java","base_name":"AbstractZoomInteractor","extension":".java","size":7366,"date":"2019-10-25","sha1":"aec159dbb950d26e3d8a7b01bb1f3f7b8b15da48","md5":"ea375c91a40c30d56855c2f0be0d4f5a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/GVTTreeRenderer.java","type":"file","name":"GVTTreeRenderer.java","base_name":"GVTTreeRenderer","extension":".java","size":6674,"date":"2019-10-25","sha1":"0f0e6f5511558cd6e74b9b80083f781826aa5f80","md5":"8fd2a2814472185285d076bcaef6a45f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/GVTTreeRendererAdapter.java","type":"file","name":"GVTTreeRendererAdapter.java","base_name":"GVTTreeRendererAdapter","extension":".java","size":1815,"date":"2019-10-25","sha1":"caee991d5cee71bf1c79d4180e5b67507911cddf","md5":"dec960d3d02c019f286b67cde5df54b6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/GVTTreeRendererEvent.java","type":"file","name":"GVTTreeRendererEvent.java","base_name":"GVTTreeRendererEvent","extension":".java","size":1784,"date":"2019-10-25","sha1":"7bef7026694db6470738ff3be9c9c9103d6b3dc2","md5":"dd014a0ad625eb8921bbbc3c06adc25f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/GVTTreeRendererListener.java","type":"file","name":"GVTTreeRendererListener.java","base_name":"GVTTreeRendererListener","extension":".java","size":1711,"date":"2019-10-25","sha1":"d10ffb3c5d6fa4b1436becc75f7d642732ac1042","md5":"facdedab0b9ce07a18f8a7542ca3a566","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/Interactor.java","type":"file","name":"Interactor.java","base_name":"Interactor","extension":".java","size":1556,"date":"2019-10-25","sha1":"78d583566609cf83e32000ffe94e2c04c588b9d1","md5":"ad1458244af354bdc8e2da52b1887bab","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/InteractorAdapter.java","type":"file","name":"InteractorAdapter.java","base_name":"InteractorAdapter","extension":".java","size":3354,"date":"2019-10-25","sha1":"79db195372482b4667d49dfdf4c2b1246dadf508","md5":"daf3f7290e20fc04480afa760b887753","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/JGVTComponent.java","type":"file","name":"JGVTComponent.java","base_name":"JGVTComponent","extension":".java","size":39262,"date":"2019-10-25","sha1":"9f81112bdff86185af8041cea46370dc3aca7207","md5":"5dc40eb0838211ef9fa3939ed79a146c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":70,"end_line":70}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/JGVTComponentAdapter.java","type":"file","name":"JGVTComponentAdapter.java","base_name":"JGVTComponentAdapter","extension":".java","size":1347,"date":"2019-10-25","sha1":"b2a88e6d7a335d30fee913a39827f228d7127625","md5":"226b0820d9d87c88749148dafa32d2b0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/JGVTComponentListener.java","type":"file","name":"JGVTComponentListener.java","base_name":"JGVTComponentListener","extension":".java","size":1399,"date":"2019-10-25","sha1":"b2ca613d466f8b39cc37cc663d09e491f95f19a0","md5":"fdf48200feb0420a795bbac0b7723344","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/Overlay.java","type":"file","name":"Overlay.java","base_name":"Overlay","extension":".java","size":1212,"date":"2019-10-25","sha1":"3ca8dbc802962cbe4d55a037bb05810c4110ae14","md5":"765dc3cb22ff796066f7e860a4e3bcd7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/gvt/TextSelectionManager.java","type":"file","name":"TextSelectionManager.java","base_name":"TextSelectionManager","extension":".java","size":10782,"date":"2019-10-25","sha1":"fdd35cb57cf02ce97976d4a2d6784e5e375e43e5","md5":"6e9b06eaba5192bf9ea0976b9c8ce56b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg","type":"directory","name":"svg","base_name":"svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":21,"dirs_count":0,"size_count":190797,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/GVTTreeBuilder.java","type":"file","name":"GVTTreeBuilder.java","base_name":"GVTTreeBuilder","extension":".java","size":5788,"date":"2019-10-25","sha1":"0dc19e19d6fdf68021431960e36056f4b25f2dbd","md5":"e78168b83012e112171f9ee0d7f29627","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/GVTTreeBuilderAdapter.java","type":"file","name":"GVTTreeBuilderAdapter.java","base_name":"GVTTreeBuilderAdapter","extension":".java","size":1689,"date":"2019-10-25","sha1":"59562255aa3fa84695bc1d293101445de264c8f0","md5":"c458a8975593502a94e2cadc20c6c6cd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/GVTTreeBuilderEvent.java","type":"file","name":"GVTTreeBuilderEvent.java","base_name":"GVTTreeBuilderEvent","extension":".java","size":1823,"date":"2019-10-25","sha1":"416f57f5c95175f1cf65a50d173ce485cf890824","md5":"98f6023c525cb057caa00d3ab02640b3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/GVTTreeBuilderListener.java","type":"file","name":"GVTTreeBuilderListener.java","base_name":"GVTTreeBuilderListener","extension":".java","size":1543,"date":"2019-10-25","sha1":"5290594e30313555d524a64c671983b1cbaffd38","md5":"e68d3686820b545e860a11f2ef4d1b61","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/JSVGComponent.java","type":"file","name":"JSVGComponent.java","base_name":"JSVGComponent","extension":".java","size":126462,"date":"2019-10-25","sha1":"ef0a95cc2d41c1d4983064365834260c03e87f59","md5":"b3a8762993f73870df75671a83d486a8","mime_type":"text/plain","file_type":"UTF-8 Unicode text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":200,"end_line":200}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://java.sun.com/docs/books/tutorial/uiswing/overview/threads.html","start_line":185,"end_line":185}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/LinkActivationEvent.java","type":"file","name":"LinkActivationEvent.java","base_name":"LinkActivationEvent","extension":".java","size":1838,"date":"2019-10-25","sha1":"96d44840c41ae7973b90706cff7e0869d07d0a4f","md5":"c221789c09807793f04d8b5b58885f3b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/LinkActivationListener.java","type":"file","name":"LinkActivationListener.java","base_name":"LinkActivationListener","extension":".java","size":1226,"date":"2019-10-25","sha1":"43804fc33b923cef3da4eb838caed1ec16563873","md5":"910682e14b49d8fbad6b8a94a2b2615e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2329,"date":"2019-10-25","sha1":"aa86ac5edc89fc34df57140940c87f56665e3c02","md5":"e684d579f6a5cd1c3096f5be0aa9fe5e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/SVGDocumentLoader.java","type":"file","name":"SVGDocumentLoader.java","base_name":"SVGDocumentLoader","extension":".java","size":5231,"date":"2019-10-25","sha1":"141c2e851fc8e6882b16815856089bbaac9f44b3","md5":"1989ce07e11713d0b78ffdd8b3ea589e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/SVGDocumentLoaderAdapter.java","type":"file","name":"SVGDocumentLoaderAdapter.java","base_name":"SVGDocumentLoaderAdapter","extension":".java","size":1772,"date":"2019-10-25","sha1":"56043043d988a9a0b30f097532c17c82158519aa","md5":"16734d7f8f2c39151cef3b1eed3cac5a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/SVGDocumentLoaderEvent.java","type":"file","name":"SVGDocumentLoaderEvent.java","base_name":"SVGDocumentLoaderEvent","extension":".java","size":1873,"date":"2019-10-25","sha1":"aaa92d75ca6e046aa9293aaf32b210d810e0d8d4","md5":"ec807cf5e40b881376b1d6a0f54b6683","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/SVGDocumentLoaderListener.java","type":"file","name":"SVGDocumentLoaderListener.java","base_name":"SVGDocumentLoaderListener","extension":".java","size":1671,"date":"2019-10-25","sha1":"f552bd6c634ced88507f6c9243aafcd45c0b784c","md5":"21739a061fab3eb69bb4c156d6a9b439","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/SVGFileFilter.java","type":"file","name":"SVGFileFilter.java","base_name":"SVGFileFilter","extension":".java","size":1896,"date":"2019-10-25","sha1":"952c5db06cf77e08fff02ec086de2d875ae87974","md5":"9a59f7f3a9a3d018332cf1ae1eae051a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":29,"end_line":29},{"email":"cjolif@ilog.fr","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/SVGLoadEventDispatcher.java","type":"file","name":"SVGLoadEventDispatcher.java","base_name":"SVGLoadEventDispatcher","extension":".java","size":6017,"date":"2019-10-25","sha1":"dbd30b90eacf83ff47cad1f756533e9b5a2b1176","md5":"cb02dc0232a8a1862870af23147242cd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/SVGLoadEventDispatcherAdapter.java","type":"file","name":"SVGLoadEventDispatcherAdapter.java","base_name":"SVGLoadEventDispatcherAdapter","extension":".java","size":1810,"date":"2019-10-25","sha1":"00978b7e73527a1069d30ccc1ce97fa0ad6fde6d","md5":"51d16729df80e7fa20322c6ed041f4fb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/SVGLoadEventDispatcherEvent.java","type":"file","name":"SVGLoadEventDispatcherEvent.java","base_name":"SVGLoadEventDispatcherEvent","extension":".java","size":1871,"date":"2019-10-25","sha1":"a401eaa12b1ba6f02aa82cde26ec637265e1f868","md5":"207854c373105f968feacc9f81bcfba2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/SVGLoadEventDispatcherListener.java","type":"file","name":"SVGLoadEventDispatcherListener.java","base_name":"SVGLoadEventDispatcherListener","extension":".java","size":1714,"date":"2019-10-25","sha1":"33a2aa78cdbc7cd65ff43d9025135e3d557688e5","md5":"31bb393767a33558df2be82d0f8f12f0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/SVGUpdateOverlay.java","type":"file","name":"SVGUpdateOverlay.java","base_name":"SVGUpdateOverlay","extension":".java","size":2849,"date":"2019-10-25","sha1":"10b1c1aa5bc6072b83f163b66f0f4387126e4a3f","md5":"3d5191ab154846c7e1e3a0dd11677f8c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/SVGUserAgent.java","type":"file","name":"SVGUserAgent.java","base_name":"SVGUserAgent","extension":".java","size":6987,"date":"2019-10-25","sha1":"4da8c6677e65d926b643992db68e70816ce3cccb","md5":"7d1adaa750f4751201534b915a067d0d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/SVGUserAgentAdapter.java","type":"file","name":"SVGUserAgentAdapter.java","base_name":"SVGUserAgentAdapter","extension":".java","size":10962,"date":"2019-10-25","sha1":"a89efd6667e2aab53e029741fa5dbd4857145de6","md5":"1f1354555a50d583c0f8eaa1247d2d40","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":49,"end_line":49}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/java/org/apache/batik/swing/svg/SVGUserAgentGUIAdapter.java","type":"file","name":"SVGUserAgentGUIAdapter.java","base_name":"SVGUserAgentGUIAdapter","extension":".java","size":3446,"date":"2019-10-25","sha1":"13f632974d3d5754060bc355eae23dcca86c5bc0","md5":"f1c20942b5b00b6152c775349ba80047","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":7,"size_count":9684,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":6,"size_count":9684,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":5,"size_count":9684,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":4,"size_count":9684,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/resources/org/apache/batik/swing","type":"directory","name":"swing","base_name":"swing","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":3,"size_count":9684,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/resources/org/apache/batik/swing/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":3425,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/resources/org/apache/batik/swing/resources/batikColor16x16.gif","type":"file","name":"batikColor16x16.gif","base_name":"batikColor16x16","extension":".gif","size":92,"date":"2019-10-25","sha1":"9cfcd187e1ce799b6b27adc664ed9a88e45b0091","md5":"d7f769617dc2ccf61871ccd804d8acb4","mime_type":"image/gif","file_type":"GIF image data, version 89a, 16 x 16","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/resources/org/apache/batik/swing/resources/batikColor32x32.gif","type":"file","name":"batikColor32x32.gif","base_name":"batikColor32x32","extension":".gif","size":164,"date":"2019-10-25","sha1":"ec55bb22e85d51ad416205eacd397d1be7f04b67","md5":"41e4dce3de6b2db695357f27be0eb10b","mime_type":"image/gif","file_type":"GIF image data, version 89a, 32 x 32","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/resources/org/apache/batik/swing/resources/batikMono16x16.gif","type":"file","name":"batikMono16x16.gif","base_name":"batikMono16x16","extension":".gif","size":870,"date":"2019-10-25","sha1":"1f82684350b52a35415d6c56e55322befc4d8659","md5":"9510113911c44a1033885b224a143e55","mime_type":"image/gif","file_type":"GIF image data, version 89a, 16 x 16","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/resources/org/apache/batik/swing/resources/batikMono32x32.gif","type":"file","name":"batikMono32x32.gif","base_name":"batikMono32x32","extension":".gif","size":936,"date":"2019-10-25","sha1":"b3ae00c82fa3b821d4d71c28392a052b3019d3c7","md5":"3d064caa5161d729202d0dc28bc3cc46","mime_type":"image/gif","file_type":"GIF image data, version 89a, 32 x 32","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/resources/org/apache/batik/swing/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":1363,"date":"2019-10-25","sha1":"fae3a78138b23c85f9ec4007f36b9726fa24282e","md5":"ffc3e4e7108c85e036c6fc9c4157965d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/resources/org/apache/batik/swing/svg","type":"directory","name":"svg","base_name":"svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":1,"size_count":6259,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/resources/org/apache/batik/swing/svg/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":6259,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/resources/org/apache/batik/swing/svg/resources/BrokenLink.svg","type":"file","name":"BrokenLink.svg","base_name":"BrokenLink","extension":".svg","size":5056,"date":"2019-10-25","sha1":"60a2ca624c31c6e0be8fddc04cca7dea2e164563","md5":"f466e3ea2e6c828805bf59d061f75b12","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":24,"end_line":24}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/main/resources/org/apache/batik/swing/svg/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":1203,"date":"2019-10-25","sha1":"96bcecd73096a9a42f787207e9526abd225e0a16","md5":"9be11bbb434126e6ad4d663e5202243c","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-swing/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test","type":"directory","name":"batik-test","base_name":"batik-test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":39,"dirs_count":8,"size_count":176325,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2425,"date":"2019-10-25","sha1":"ffa9f46e632d3b4b56e2af4b186efcb630bdc8b0","md5":"0e3fd08a4bd8ba3a16daec9dd1a1fe2e","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-test","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-test\nBatik Test Harness","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-constants","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-i18n","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-test@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-test@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-test/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-test/1.12/batik-test-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-test/1.12/batik-test-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":7,"size_count":173900,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":6,"size_count":173900,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":5,"size_count":173900,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":4,"size_count":173900,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":3,"size_count":173900,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":2,"size_count":173900,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":1,"size_count":173900,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/AbstractTest.java","type":"file","name":"AbstractTest.java","base_name":"AbstractTest","extension":".java","size":11839,"date":"2019-10-25","sha1":"9e48d69f3e3086702b5efd8e4da3d45deaaeee28","md5":"45ad9fb497d67ea8f45278469bd94955","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.lorg","start_line":82,"end_line":82}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/AbstractTestSuite.java","type":"file","name":"AbstractTestSuite.java","base_name":"AbstractTestSuite","extension":".java","size":1562,"date":"2019-10-25","sha1":"415ed33726f0e6498c2843444459b47dea1a7468","md5":"98b23c9b75bd2b217aca63bf3b9bffbb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.lorg","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/AssertEqualsException.java","type":"file","name":"AssertEqualsException.java","base_name":"AssertEqualsException","extension":".java","size":1995,"date":"2019-10-25","sha1":"49360e8efc814ad97118c24f5cc761b6108bf279","md5":"724137fb52dcb5f9506a7b62363dd213","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/AssertException.java","type":"file","name":"AssertException.java","base_name":"AssertException","extension":".java","size":2063,"date":"2019-10-25","sha1":"d25a047d432ec5a5bf4df289d82d6f3fc07b347b","md5":"9369fdf15c5608970a1dfffb5c257077","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/AssertNullException.java","type":"file","name":"AssertNullException.java","base_name":"AssertNullException","extension":".java","size":1571,"date":"2019-10-25","sha1":"d08b0cda839b50ed24085d275978c2dfe1b90013","md5":"4bf547e6140cd55c1b3ba642c310b88b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/AssertTrueException.java","type":"file","name":"AssertTrueException.java","base_name":"AssertTrueException","extension":".java","size":1571,"date":"2019-10-25","sha1":"7d03a675f9181490ec6340a150c792a97e39252e","md5":"23230b3fb04ae92d7cc005b368c525b7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/DefaultTestReport.java","type":"file","name":"DefaultTestReport.java","base_name":"DefaultTestReport","extension":".java","size":3292,"date":"2019-10-25","sha1":"a7c62d4faa2fd9eeab11cdad0565eb460235ed11","md5":"e1a3706218f8a69af24a31323a076be6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/DefaultTestSuite.java","type":"file","name":"DefaultTestSuite.java","base_name":"DefaultTestSuite","extension":".java","size":3081,"date":"2019-10-25","sha1":"24f5ad9eb53f24649e3abbdec89621ba0fb347d0","md5":"a6c781de60d186d49d2a63fa907adbc6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.lorg","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/DefaultTestSuiteReport.java","type":"file","name":"DefaultTestSuiteReport.java","base_name":"DefaultTestSuiteReport","extension":".java","size":5670,"date":"2019-10-25","sha1":"336497d8f9f013a4441e08c02bd366152d882afc","md5":"e0381fa959b7f4538f3f19b4c8d91cda","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.lorg","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2280,"date":"2019-10-25","sha1":"b537ca67e06ab90301cc194a2b6dc98109f5f1c5","md5":"b3ffd4fa48ccdc9f1715ec639186e17e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/OnePerformanceTest.java","type":"file","name":"OnePerformanceTest.java","base_name":"OnePerformanceTest","extension":".java","size":942,"date":"2019-10-25","sha1":"34d7dfb9c7529124435bcc09ad123a903d7db178","md5":"4be8c3d5b6c2cd447a165bab6a6ac775","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/ParametrizedTest.java","type":"file","name":"ParametrizedTest.java","base_name":"ParametrizedTest","extension":".java","size":2398,"date":"2019-10-25","sha1":"366eb220a30dcdf4f2ae5460dd324da706d29c0e","md5":"19f8af0d1e9375806080d336a3c6a39a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/PerformanceTest.java","type":"file","name":"PerformanceTest.java","base_name":"PerformanceTest","extension":".java","size":7267,"date":"2019-10-25","sha1":"bde8956a80eb49c1241ae0c626d0141c1a154872","md5":"971339fabf80a4328ea5b3466720642f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/PerformanceTestValidator.java","type":"file","name":"PerformanceTestValidator.java","base_name":"PerformanceTestValidator","extension":".java","size":5168,"date":"2019-10-25","sha1":"5588173bc8651f910d3047c5b0ea76e9a788dcb2","md5":"73af4c8b1e8e4fdd0871f4f9925ebc17","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/SimpleTestReportProcessor.java","type":"file","name":"SimpleTestReportProcessor.java","base_name":"SimpleTestReportProcessor","extension":".java","size":4619,"date":"2019-10-25","sha1":"6ab68fca60068c9e2d70437e1458363adf415262","md5":"e5bee1abccf6ecca3027d72a6e1e689a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/SimpleTestRunner.java","type":"file","name":"SimpleTestRunner.java","base_name":"SimpleTestRunner","extension":".java","size":4696,"date":"2019-10-25","sha1":"801c8d69572b4ac3053a0c20c1264ff94134e848","md5":"7eca30ae277a07873bbde93f5d21f36c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/Test.java","type":"file","name":"Test.java","base_name":"Test","extension":".java","size":2651,"date":"2019-10-25","sha1":"e246ab27d7b4a9f36e097d96cedabf74d6f1815d","md5":"85a60eaf0427d98fdbc8204cfe47c829","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.lorg","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/TestErrorConditionException.java","type":"file","name":"TestErrorConditionException.java","base_name":"TestErrorConditionException","extension":".java","size":2451,"date":"2019-10-25","sha1":"3da02f4cc934886890bceff5ac9e095c4a928e30","md5":"203b52924a326bbe8ee0029f62f2e822","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/TestException.java","type":"file","name":"TestException.java","base_name":"TestException","extension":".java","size":2030,"date":"2019-10-25","sha1":"2a03434cd1b68a9162f1746d8bf4ebab34d82861","md5":"6ce4646716febce89e93fb9c8dbb1c4a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/TestFilter.java","type":"file","name":"TestFilter.java","base_name":"TestFilter","extension":".java","size":1316,"date":"2019-10-25","sha1":"fb8eac014fba2d00dc3431296f07e986e402495d","md5":"f98136d0e9dc842d66bc0b7458a1c033","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.lorg","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/TestReport.java","type":"file","name":"TestReport.java","base_name":"TestReport","extension":".java","size":6254,"date":"2019-10-25","sha1":"f4d4a42032e16617859459c13edf9c9f8e19811f","md5":"c8f8d1a40110a85010aec45622de0d45","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.lorg","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/TestReportProcessor.java","type":"file","name":"TestReportProcessor.java","base_name":"TestReportProcessor","extension":".java","size":1893,"date":"2019-10-25","sha1":"3d63930c0a18270bc24d2114e393450ee9e664e3","md5":"fb098282c7b6996483335d49665497bb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/TestReportValidator.java","type":"file","name":"TestReportValidator.java","base_name":"TestReportValidator","extension":".java","size":6368,"date":"2019-10-25","sha1":"eba262e7f2885cb6e5fbb852a73296ffca03dd74","md5":"1886144434ae87e116b26cd5a13c8713","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/TestSuite.java","type":"file","name":"TestSuite.java","base_name":"TestSuite","extension":".java","size":1798,"date":"2019-10-25","sha1":"4d4000f89d20a4cef1f04c6c31c10f4713f57776","md5":"91e52a3fa6574507aeea2e79df0acecd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.lorg","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/TestSuiteReport.java","type":"file","name":"TestSuiteReport.java","base_name":"TestSuiteReport","extension":".java","size":1346,"date":"2019-10-25","sha1":"ec359137334188e69af1c915c0187dd9c493b3cf","md5":"cf57848eeac49b27ec83b5c767cc3599","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.lorg","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/xml","type":"directory","name":"xml","base_name":"xml","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":13,"dirs_count":0,"size_count":87779,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/xml/DummyValidTest.java","type":"file","name":"DummyValidTest.java","base_name":"DummyValidTest","extension":".java","size":1171,"date":"2019-10-25","sha1":"d6e53b83f6ef0ea1a53de96621a79f9a78087409","md5":"274a8a204288502b34677b85a4668b9e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.lorg","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/xml/DummyValidTestSuite.java","type":"file","name":"DummyValidTestSuite.java","base_name":"DummyValidTestSuite","extension":".java","size":1343,"date":"2019-10-25","sha1":"23a2bb84aabb773633cb6ab77de688eb86b793dc","md5":"3a8a20b99cacef916065a76b4c8ef3bd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.lorg","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/xml/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2288,"date":"2019-10-25","sha1":"bbced0ce642ee66eebd596f1478f8711628302e7","md5":"7c5f53d3b432ac31bf9ae6feb352a82a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/xml/XMLReflect.java","type":"file","name":"XMLReflect.java","base_name":"XMLReflect","extension":".java","size":10581,"date":"2019-10-25","sha1":"b44f0ded89879d60cc43762caad19cf3a3b45202","md5":"19d831e2a3c1fb6d65a200a1dbb847b3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/xml/XMLReflectConstants.java","type":"file","name":"XMLReflectConstants.java","base_name":"XMLReflectConstants","extension":".java","size":1714,"date":"2019-10-25","sha1":"c4015e6648c978179ffe4eced99ccc868f0ff4b7","md5":"10978d6a1d94b5347b2f37bfc2b04a68","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/xml/XMLTestReportProcessor.java","type":"file","name":"XMLTestReportProcessor.java","base_name":"XMLTestReportProcessor","extension":".java","size":20793,"date":"2019-10-25","sha1":"4640b4fe89b3a5da5e01ee626391a4615d176baf","md5":"810efb32a44e2eb0554a3759e0a7b4c4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":65,"end_line":65}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/xml/XMLTestSuiteLoader.java","type":"file","name":"XMLTestSuiteLoader.java","base_name":"XMLTestSuiteLoader","extension":".java","size":6315,"date":"2019-10-25","sha1":"bddeb8a3ddf7aa8132bae38b4c99c33bbd4393ac","md5":"a4b55d138ec1910209d079eacfc042cd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/xml/XMLTestSuiteRunner.java","type":"file","name":"XMLTestSuiteRunner.java","base_name":"XMLTestSuiteRunner","extension":".java","size":20129,"date":"2019-10-25","sha1":"4934e4ad12e6ae08f2c0ac38e55e3278b7e2aa3d","md5":"aa8890117d21f27423fbec3c9a2a68bf","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":66,"end_line":66}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/xml/XMLTestSuiteRunnerValidator.java","type":"file","name":"XMLTestSuiteRunnerValidator.java","base_name":"XMLTestSuiteRunnerValidator","extension":".java","size":12818,"date":"2019-10-25","sha1":"eb8526e10c63d40f456ec1a1c154145f952d9d6e","md5":"8eaad8e4de6b717c594608aa342190dd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":66,"end_line":66}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/xml/XSLXMLReportConsumer.java","type":"file","name":"XSLXMLReportConsumer.java","base_name":"XSLXMLReportConsumer","extension":".java","size":4625,"date":"2019-10-25","sha1":"ae9815fb2f5e0a1835a3219b904eadeaab4415af","md5":"1b7f9b90f2efc01a95d60c3031e7dfe5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/xml/XTRConstants.java","type":"file","name":"XTRConstants.java","base_name":"XTRConstants","extension":".java","size":2443,"date":"2019-10-25","sha1":"677e5167e0dc4765767ec7660b630b378a17844b","md5":"4756c8cb9c9f11407890441449de7849","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/xml-batik/test/xtr","start_line":29,"end_line":29}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/xml/XTRunConstants.java","type":"file","name":"XTRunConstants.java","base_name":"XTRunConstants","extension":".java","size":1808,"date":"2019-10-25","sha1":"bc3d732c62999d9c5d3963c71b1a70a05a23077f","md5":"93f4fa6875d2b8c39bbfe79b962bdb47","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/xml-batik/test/xtrun","start_line":29,"end_line":29}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test/src/main/java/org/apache/batik/test/xml/XTSConstants.java","type":"file","name":"XTSConstants.java","base_name":"XTSConstants","extension":".java","size":1751,"date":"2019-10-25","sha1":"df54dcbe1450e08ca7a7703358a9bb3a8e660d18","md5":"b76e8369d24b4f17a1e369a04bbf20c5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/xml-batik/test/xts","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old","type":"directory","name":"batik-test-old","base_name":"batik-test-old","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":125,"dirs_count":36,"size_count":583052,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":4121,"date":"2019-10-25","sha1":"88b6461a75a7851f9d84e4f130b99542f881c09f","md5":"41bd9ec328a2b414319fa79a79f4d2bf","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-test-old","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-test-old\nBatik Test Old","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-test","requirement":"1.12","scope":"test","is_runtime":false,"is_optional":true,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"test","is_runtime":false,"is_optional":true,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-test-swing","requirement":"1.12","scope":"test","is_runtime":false,"is_optional":true,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-test-svg","requirement":"1.12","scope":"test","is_runtime":false,"is_optional":true,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-all","requirement":"1.12","scope":"test","is_runtime":false,"is_optional":true,"is_resolved":false},{"purl":"pkg:maven/junit/junit","requirement":"${junit.version}","scope":"test","is_runtime":false,"is_optional":true,"is_resolved":false},{"purl":"pkg:maven/org.mozilla/rhino","requirement":"${rhino.version}","scope":"test","is_runtime":false,"is_optional":true,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/fop-transcoder-allinone","requirement":"${xmlgraphics.commons.version}","scope":"test","is_runtime":false,"is_optional":true,"is_resolved":false},{"purl":"pkg:maven/xerces/xercesImpl","requirement":"2.12.0","scope":"test","is_runtime":false,"is_optional":true,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-test-old@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-test-old@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-test-old/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-test-old/1.12/batik-test-old-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-test-old/1.12/batik-test-old-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":124,"dirs_count":35,"size_count":578931,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":124,"dirs_count":34,"size_count":578931,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":124,"dirs_count":33,"size_count":578931,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":124,"dirs_count":32,"size_count":578931,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":124,"dirs_count":31,"size_count":578931,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":124,"dirs_count":30,"size_count":578931,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/anim","type":"directory","name":"anim","base_name":"anim","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":2871,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/anim/dom","type":"directory","name":"dom","base_name":"dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":2871,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/anim/dom/SystemIdTest.java","type":"file","name":"SystemIdTest.java","base_name":"SystemIdTest","extension":".java","size":2871,"date":"2019-10-25","sha1":"61d3a17d886d9ad501a768907f549372e7bb93b9","md5":"58433e5a55f4ae1bd3b068c548c5d9f2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/apps","type":"directory","name":"apps","base_name":"apps","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":1,"size_count":65882,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/apps/rasterizer","type":"directory","name":"rasterizer","base_name":"rasterizer","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":65882,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/apps/rasterizer/MainTest.java","type":"file","name":"MainTest.java","base_name":"MainTest","extension":".java","size":26140,"date":"2019-10-25","sha1":"f72addd2236fba62d5f131650ffe0ebccf09ccf9","md5":"0ce9a35f745f4d09a952f548c68819c6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/apps/rasterizer/SVGConverterTest.java","type":"file","name":"SVGConverterTest.java","base_name":"SVGConverterTest","extension":".java","size":39742,"date":"2019-10-25","sha1":"0a0d3fee7a5ea72599941246b30fdcbb987ac8bc","md5":"2b22f67206b336a71dd5b12e48214ff2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/batik/dummy.svg","start_line":294,"end_line":294}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/bridge","type":"directory","name":"bridge","base_name":"bridge","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":0,"size_count":34211,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/bridge/EcmaLoadTest.java","type":"file","name":"EcmaLoadTest.java","base_name":"EcmaLoadTest","extension":".java","size":3004,"date":"2019-10-25","sha1":"5be15eb3339976de5a165ce741572fac7d3f0dfe","md5":"55e128d38f1098bc32359a4b8a4fb8ba","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/bridge/EcmaNoLoadTest.java","type":"file","name":"EcmaNoLoadTest.java","base_name":"EcmaNoLoadTest","extension":".java","size":4971,"date":"2019-10-25","sha1":"2438863ecb1aa4c048c4b5e03675d48d3a5ec8ed","md5":"7041ffbffde8ab52012b565ee6daa9b9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/bridge/ExternalResourcesTest.java","type":"file","name":"ExternalResourcesTest.java","base_name":"ExternalResourcesTest","extension":".java","size":15547,"date":"2019-10-25","sha1":"75a0eb29ee12c8691ec4e5de1f9c8bd2c3f1a0cf","md5":"17f897eb3c81e7860583984560c345a3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":62,"end_line":62}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/batik/test","start_line":145,"end_line":145}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/bridge/JarLoadTest.java","type":"file","name":"JarLoadTest.java","base_name":"JarLoadTest","extension":".java","size":2757,"date":"2019-10-25","sha1":"d50fcefa98d5ce78a751bec897a795ab841c53bd","md5":"92b90960109e2bbf818391ca333a535c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/bridge/JarNoLoadTest.java","type":"file","name":"JarNoLoadTest.java","base_name":"JarNoLoadTest","extension":".java","size":3487,"date":"2019-10-25","sha1":"aabfd7854c6a7cd9a9bb4b197c462804a8c89c5b","md5":"82e73947e65e2587d803b9bf3c00a49e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/bridge/ScriptSelfTest.java","type":"file","name":"ScriptSelfTest.java","base_name":"ScriptSelfTest","extension":".java","size":4445,"date":"2019-10-25","sha1":"1dab88463b98b8c0f99a18527a9f9f5d7db1ed52","md5":"7bb52c7c0cda0cc0585915aa2baad407","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/css","type":"directory","name":"css","base_name":"css","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":3,"size_count":12301,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/css/dom","type":"directory","name":"dom","base_name":"dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1366,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/css/dom/EcmaScriptCSSDOMTest.java","type":"file","name":"EcmaScriptCSSDOMTest.java","base_name":"EcmaScriptCSSDOMTest","extension":".java","size":1366,"date":"2019-10-25","sha1":"b06bc3328af835eca3e55f988b5e6274a60fbde4","md5":"393a35f9ddf4d877e0d6cc2a04b6ef55","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/css/engine","type":"directory","name":"engine","base_name":"engine","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":10935,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/css/engine/value","type":"directory","name":"value","base_name":"value","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":10935,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/css/engine/value/PropertyManagerTest.java","type":"file","name":"PropertyManagerTest.java","base_name":"PropertyManagerTest","extension":".java","size":10935,"date":"2019-10-25","sha1":"909b0d0d07650aa042fc81d4f2f36d08e57278a2","md5":"2687eb866b8fdec47e1b05ca05899553","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom","type":"directory","name":"dom","base_name":"dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":28,"dirs_count":1,"size_count":81663,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/AppendChildTest.java","type":"file","name":"AppendChildTest.java","base_name":"AppendChildTest","extension":".java","size":3446,"date":"2019-10-25","sha1":"d387ea91eca127aeb6f565744c09f7463d5c4af9","md5":"ce0fa0c2b38732de1212e6d5dfee992d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/AttrIsIdTest.java","type":"file","name":"AttrIsIdTest.java","base_name":"AttrIsIdTest","extension":".java","size":1466,"date":"2019-10-25","sha1":"24defbcca7c10b92d50c6472fd6ccd71e459f9b8","md5":"b7865b1492c441d930551edb5bc108eb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/CloneElementTest.java","type":"file","name":"CloneElementTest.java","base_name":"CloneElementTest","extension":".java","size":3670,"date":"2019-10-25","sha1":"301f747f64cac28342bb1890a830f526da004df0","md5":"295a663577b6414d8658db9321335c2e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/DocumentAdoptNodeTest.java","type":"file","name":"DocumentAdoptNodeTest.java","base_name":"DocumentAdoptNodeTest","extension":".java","size":1540,"date":"2019-10-25","sha1":"55b95543a6f470cf17519233fd6972975b997fe7","md5":"6611b3ac08ccc43af5805fc9af2228fb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/DocumentNormalizeDocumentTest.java","type":"file","name":"DocumentNormalizeDocumentTest.java","base_name":"DocumentNormalizeDocumentTest","extension":".java","size":10859,"date":"2019-10-25","sha1":"f30fec1feb32e8d9a9b3e1af6b9f1c426eec337a","md5":"450fc9dde912a8e66c82e3d55c69ebe1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/DocumentRenameNodeTest.java","type":"file","name":"DocumentRenameNodeTest.java","base_name":"DocumentRenameNodeTest","extension":".java","size":1870,"date":"2019-10-25","sha1":"189190ec74aa0944cf9741d69d1b0d9609f9248d","md5":"2bbad2e81de3bc0257c33c6adddbf3f5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/DOM3Test.java","type":"file","name":"DOM3Test.java","base_name":"DOM3Test","extension":".java","size":1861,"date":"2019-10-25","sha1":"2ca088a8c25cf7a9a78625ab2e8459ce8754dc71","md5":"c6dc595c64d4a21fc5e4b0ac7337fb5d","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/2001/xml-events","start_line":36,"end_line":36}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/DOMUtilitiesCharacterEscaping.java","type":"file","name":"DOMUtilitiesCharacterEscaping.java","base_name":"DOMUtilitiesCharacterEscaping","extension":".java","size":3257,"date":"2019-10-25","sha1":"da465adc71484ecb5cdaf3b67ca409f0e3b4bad1","md5":"845e2608ad75fec008a220843dcfb7ac","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/batik/foo.svg","start_line":70,"end_line":70}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/EcmaScriptDOMTest.java","type":"file","name":"EcmaScriptDOMTest.java","base_name":"EcmaScriptDOMTest","extension":".java","size":1345,"date":"2019-10-25","sha1":"3008fc5895c86dbbfbc36ffd10d8e4b5f34b22c2","md5":"3d22a1877f9465dce42a1795cab8a9e6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/ElementSetIdAttributeNSTest.java","type":"file","name":"ElementSetIdAttributeNSTest.java","base_name":"ElementSetIdAttributeNSTest","extension":".java","size":1896,"date":"2019-10-25","sha1":"0ee934d0d87f077e6bb60506a1da09146aaadabe","md5":"2fea40d4c44c2fd6daefc8e67efc1d38","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/ElementTraversalTest.java","type":"file","name":"ElementTraversalTest.java","base_name":"ElementTraversalTest","extension":".java","size":5029,"date":"2019-10-25","sha1":"37049c8ab8d33cc38ded1cb9537f8868adc69800","md5":"a356c193e2564067052a8d6e6f684252","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/EventTargetAddEventListenerNSTest.java","type":"file","name":"EventTargetAddEventListenerNSTest.java","base_name":"EventTargetAddEventListenerNSTest","extension":".java","size":2643,"date":"2019-10-25","sha1":"e0768fb649ce6dc8435f803e3d98aca64f0ec89c","md5":"b83ab0e020343471b1b2a20ded3e47e1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/GetElementsByTagNameNSTest.java","type":"file","name":"GetElementsByTagNameNSTest.java","base_name":"GetElementsByTagNameNSTest","extension":".java","size":2971,"date":"2019-10-25","sha1":"95edd492750ca86efeba9e4e2fa7de1ff4b7a7cf","md5":"9a03d133058f40c0aec07dd1ea0a9406","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/HasChildNodesTest.java","type":"file","name":"HasChildNodesTest.java","base_name":"HasChildNodesTest","extension":".java","size":2834,"date":"2019-10-25","sha1":"b63cd7c280056b7e788d7b78f5e7cae47faad11e","md5":"f910f645efa32949082e5d66f8398f57","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/NodeBaseURITest.java","type":"file","name":"NodeBaseURITest.java","base_name":"NodeBaseURITest","extension":".java","size":1843,"date":"2019-10-25","sha1":"4f52dde21833acff413e456a2d718855316cfff2","md5":"b2a83359ec8f418933eba5665ca1a7f6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/NodeCompareDocumentPositionTest.java","type":"file","name":"NodeCompareDocumentPositionTest.java","base_name":"NodeCompareDocumentPositionTest","extension":".java","size":2395,"date":"2019-10-25","sha1":"ae7cc8c15353ee5b634f055bdc5c7b798d4f8b25","md5":"2738abe730589237118e782b13251381","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/NodeGetUserDataTest.java","type":"file","name":"NodeGetUserDataTest.java","base_name":"NodeGetUserDataTest","extension":".java","size":1971,"date":"2019-10-25","sha1":"01c7a87f1435520f311fa35dc1629287a312f4ae","md5":"a2ca4a91635a25b8aa6e8bc2ed254f77","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/NodeTextContentTest.java","type":"file","name":"NodeTextContentTest.java","base_name":"NodeTextContentTest","extension":".java","size":1878,"date":"2019-10-25","sha1":"53e04cd3636d11bc590c792dd5f84594fbacf74b","md5":"5abd8481f5af9f200fc5c94a978eb33d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/NullNamespaceTest.java","type":"file","name":"NullNamespaceTest.java","base_name":"NullNamespaceTest","extension":".java","size":3012,"date":"2019-10-25","sha1":"67da4ddd0bc1e5e2b8a3bafd0e867c2ff3133a98","md5":"45abbad2059002d8c6ff8132a25fc545","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/RemoveAttributeTest.java","type":"file","name":"RemoveAttributeTest.java","base_name":"RemoveAttributeTest","extension":".java","size":3261,"date":"2019-10-25","sha1":"4f5074aacdfaef27ecf43f2b6cd6d7bdc9ce9957","md5":"dc5a50174ab246988594e49d6737dd7c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/ReplaceChildTest.java","type":"file","name":"ReplaceChildTest.java","base_name":"ReplaceChildTest","extension":".java","size":3357,"date":"2019-10-25","sha1":"f9854d35f0c0fbd64f560731412b540bc0543ce0","md5":"b715770a8f7c28ae9e2e21a94c7940fc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/SerializationTest.java","type":"file","name":"SerializationTest.java","base_name":"SerializationTest","extension":".java","size":3886,"date":"2019-10-25","sha1":"ed77dcab3138f43e2f00b5afee8cd9654de05db9","md5":"d3824b181f8997d9167b7374fa8be338","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/SetAttributeTest.java","type":"file","name":"SetAttributeTest.java","base_name":"SetAttributeTest","extension":".java","size":3549,"date":"2019-10-25","sha1":"f7d300ba7166f76b03eccacb5df38f7f2baa67c5","md5":"414864010c6d03dc581a7e57e5fe02ec","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"shillion@ilog.fr","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/TextReplaceWholeTextTest.java","type":"file","name":"TextReplaceWholeTextTest.java","base_name":"TextReplaceWholeTextTest","extension":".java","size":1737,"date":"2019-10-25","sha1":"80ce5fa0a6ea0a8b90e17253904a41950869a514","md5":"9c27dfeb54a4b269b5c6ad431c4837ca","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/TextWholeTextTest.java","type":"file","name":"TextWholeTextTest.java","base_name":"TextWholeTextTest","extension":".java","size":1719,"date":"2019-10-25","sha1":"90f6ff6d47ce4d9f343c68be958b9d41bdd85244","md5":"642753155d0e4f50f51103515a2676fd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/svg","type":"directory","name":"svg","base_name":"svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":8368,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/svg/CloneNodeTest.java","type":"file","name":"CloneNodeTest.java","base_name":"CloneNodeTest","extension":".java","size":3273,"date":"2019-10-25","sha1":"ceb40de866b82a47dbf671b127742c24426344e0","md5":"a3c7fde97e67ee64b7a5dfb78606ee52","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/svg/EcmaScriptSVGDOMTest.java","type":"file","name":"EcmaScriptSVGDOMTest.java","base_name":"EcmaScriptSVGDOMTest","extension":".java","size":1363,"date":"2019-10-25","sha1":"557877ab192fdc915a36a016271527bbfb9cf8a3","md5":"f5568a9c91b7bec73cc2619b9f698758","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/dom/svg/ImportNodeTest.java","type":"file","name":"ImportNodeTest.java","base_name":"ImportNodeTest","extension":".java","size":3732,"date":"2019-10-25","sha1":"e6b0494e3a77b7ba8d5bb3107c6943c88e0778a9","md5":"16e0d88620d9572fab51ff75f2b89a18","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/ext","type":"directory","name":"ext","base_name":"ext","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":6,"size_count":28414,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/ext/awt","type":"directory","name":"awt","base_name":"awt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":5,"size_count":28414,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/ext/awt/geom","type":"directory","name":"geom","base_name":"geom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":16171,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/ext/awt/geom/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2300,"date":"2019-10-25","sha1":"1bcd25726c65d77aa148092884120ade7b269177","md5":"d60f014fe0987f674d79a5c32c2ce69d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/ext/awt/geom/RectListManagerTest.java","type":"file","name":"RectListManagerTest.java","base_name":"RectListManagerTest","extension":".java","size":13871,"date":"2019-10-25","sha1":"c3964d837f22b76ed333d91f76331841d088e29a","md5":"cea61277a54b7b8c9fa8d8025caa6f55","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":49,"end_line":49}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/ext/awt/image","type":"directory","name":"image","base_name":"image","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":3,"size_count":12243,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/ext/awt/image/codec","type":"directory","name":"codec","base_name":"codec","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":1,"size_count":10269,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/ext/awt/image/codec/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2308,"date":"2019-10-25","sha1":"37909ecd7dd3e896e4fe4569f23161e82974dc9e","md5":"6cc866e1a6cd32808a084577c5106407","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/ext/awt/image/codec/png","type":"directory","name":"png","base_name":"png","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":7961,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/ext/awt/image/codec/png/Base64PNGEncoderTest.java","type":"file","name":"Base64PNGEncoderTest.java","base_name":"Base64PNGEncoderTest","extension":".java","size":1871,"date":"2019-10-25","sha1":"949e03c908d238a994ee23a0ec9235741c313217","md5":"b9a4ce637fb215c967830cfc3de8905d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@eng.sun.com","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/ext/awt/image/codec/png/PNGEncoderTest.java","type":"file","name":"PNGEncoderTest.java","base_name":"PNGEncoderTest","extension":".java","size":6090,"date":"2019-10-25","sha1":"4461f1809963a0bc729dbec55c21601d56edfd64","md5":"b2189e7bfd1c31c1419a39d4add10c34","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@eng.sun.com","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/ext/awt/image/spi","type":"directory","name":"spi","base_name":"spi","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1974,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/ext/awt/image/spi/ImageTagRegistryTest.java","type":"file","name":"ImageTagRegistryTest.java","base_name":"ImageTagRegistryTest","extension":".java","size":1974,"date":"2019-10-25","sha1":"783b77ffd9145a52c1cb559dbfd3942b7c3794f6","md5":"d01ea8d5ea11c8dc0ab371c3be4b85e4","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/gvt","type":"directory","name":"gvt","base_name":"gvt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":10007,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/gvt/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2282,"date":"2019-10-25","sha1":"71b32d015d7cd36a81f0ae635321ac84c2bd6745","md5":"259256e1594f76301c5a75ad80efc09d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/gvt/TextSelectionTest.java","type":"file","name":"TextSelectionTest.java","base_name":"TextSelectionTest","extension":".java","size":7725,"date":"2019-10-25","sha1":"3fc46a01e3c29632e3d56c8f77c1fcfbae687fb1","md5":"6a45ef8eec5a4dba23776024259fd54a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/parser","type":"directory","name":"parser","base_name":"parser","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":22371,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/parser/LengthParserFailureTest.java","type":"file","name":"LengthParserFailureTest.java","base_name":"LengthParserFailureTest","extension":".java","size":1867,"date":"2019-10-25","sha1":"ddf49586d11e174529c99cdcdf883eb4ac2c0b86","md5":"c3ab34d39412ad11b61b08abbcf354ae","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/parser/LengthParserTest.java","type":"file","name":"LengthParserTest.java","base_name":"LengthParserTest","extension":".java","size":3799,"date":"2019-10-25","sha1":"6a47600be1495a62a2cc0084808b2eefc0f22527","md5":"118cba5abb4e2e139ace631a4240efca","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/parser/PathParserFailureTest.java","type":"file","name":"PathParserFailureTest.java","base_name":"PathParserFailureTest","extension":".java","size":1832,"date":"2019-10-25","sha1":"a0f5925a02a12149fae7e896777017786f16c090","md5":"99b829146e7f92ba5232d8934738a6ef","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/parser/PathParserTest.java","type":"file","name":"PathParserTest.java","base_name":"PathParserTest","extension":".java","size":9022,"date":"2019-10-25","sha1":"9ee0b15d455715b4d9a63af10de1d6dead972339","md5":"eddc08297711f2db3196f0c2fbdbede3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/parser/TransformListParserTest.java","type":"file","name":"TransformListParserTest.java","base_name":"TransformListParserTest","extension":".java","size":5851,"date":"2019-10-25","sha1":"acfb85f21d22f1b2c34d23c4c5012defb59a65c2","md5":"a2af7d54b0c20571142efa2d6461aaca","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/script","type":"directory","name":"script","base_name":"script","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":3866,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/script/rhino","type":"directory","name":"rhino","base_name":"rhino","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":3866,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/script/rhino/ScriptSelfTest.java","type":"file","name":"ScriptSelfTest.java","base_name":"ScriptSelfTest","extension":".java","size":3866,"date":"2019-10-25","sha1":"4955a16f8559b63367003aaf1c0a35007ba50366","md5":"d57bf311668c69f734afea40c3f3bb7f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen","type":"directory","name":"svggen","base_name":"svggen","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":42,"dirs_count":0,"size_count":159870,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/ATransform.java","type":"file","name":"ATransform.java","base_name":"ATransform","extension":".java","size":2952,"date":"2019-10-25","sha1":"51cf63495bc28dc03a9b93314678ed23999d0003","md5":"7a46b8e39487b1765066aac209a7959d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":31,"end_line":31},{"email":"vhardy@eng.sun.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/AttributedCharacterIterator.java","type":"file","name":"AttributedCharacterIterator.java","base_name":"AttributedCharacterIterator","extension":".java","size":6158,"date":"2019-10-25","sha1":"74e36349d35b2ea9aaf79898022e41f5622def9c","md5":"68f1018ced012ad69b2c3c15b634dfc3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":32,"end_line":32},{"email":"vhardy@eng.sun.com","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/BasicShapes.java","type":"file","name":"BasicShapes.java","base_name":"BasicShapes","extension":".java","size":3291,"date":"2019-10-25","sha1":"652cf825b241b5f6560216fe27264001989e00a3","md5":"1e5e714cc4a4d2ec895d20e30482fee2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@eng.sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/BasicShapes2.java","type":"file","name":"BasicShapes2.java","base_name":"BasicShapes2","extension":".java","size":2597,"date":"2019-10-25","sha1":"fb1ba48ebd02b856747601924009294a8349afc8","md5":"c8b705def33ba8237bf6711830bdd3a2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":28,"end_line":28},{"email":"vhardy@eng.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/BEExample.java","type":"file","name":"BEExample.java","base_name":"BEExample","extension":".java","size":1707,"date":"2019-10-25","sha1":"612c1fba3129b2f937a8f9499116a9fcd9018b58","md5":"6e19e208dcf50dd0bc8dd8347d8735bb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":31,"end_line":31},{"email":"vhardy@eng.sun.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/BStroke.java","type":"file","name":"BStroke.java","base_name":"BStroke","extension":".java","size":6837,"date":"2019-10-25","sha1":"f3400d6dd8b11ea1553c7e9ef9efc746a6599501","md5":"a60881d97456ae236ebd8788a576ac22","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":27,"end_line":27},{"email":"vhardy@eng.sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Bug17965.java","type":"file","name":"Bug17965.java","base_name":"Bug17965","extension":".java","size":1723,"date":"2019-10-25","sha1":"7b6685f93a67ccf6ddf6ab599222842e6ba9eb4c","md5":"e80974e26abf2bb06308c1d98458dd1f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Bug21259.java","type":"file","name":"Bug21259.java","base_name":"Bug21259","extension":".java","size":2377,"date":"2019-10-25","sha1":"1ab62e437956a2ae82f853beda72a7df66c9c1e8","md5":"e2e1b6b68f0969534aeac4f36edbd7b0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Bug4389.java","type":"file","name":"Bug4389.java","base_name":"Bug4389","extension":".java","size":1425,"date":"2019-10-25","sha1":"7e531e2349603e3bd2163854400e4501e59bf771","md5":"c555f1f3f177a1cc775088ccb512b8a6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@eng.sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Bug4945.java","type":"file","name":"Bug4945.java","base_name":"Bug4945","extension":".java","size":2235,"date":"2019-10-25","sha1":"9a0cc1cb370bbea468efd4be8e5c62936fb01d1e","md5":"733fb0b4930714462b8352e8eb94afe8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Bug6535.java","type":"file","name":"Bug6535.java","base_name":"Bug6535","extension":".java","size":1947,"date":"2019-10-25","sha1":"70adeaafea358b0e62da34ea89574d0fac412019","md5":"fcb13506ab063841742c3807d27544e7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@eng.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Clip.java","type":"file","name":"Clip.java","base_name":"Clip","extension":".java","size":4198,"date":"2019-10-25","sha1":"e1a65a7eff11fe6526810afbab7caf789d45f490","md5":"e3cd688ee3f8b867258ec8720708a705","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":29,"end_line":29},{"email":"vhardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Color1.java","type":"file","name":"Color1.java","base_name":"Color1","extension":".java","size":4617,"date":"2019-10-25","sha1":"6c48cdf6edc397b08ed830dd6c84affcc036cb1a","md5":"f9c3bbe3dbb71e22e61bf6fc7c551839","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":29,"end_line":29},{"email":"vhardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Color2.java","type":"file","name":"Color2.java","base_name":"Color2","extension":".java","size":2884,"date":"2019-10-25","sha1":"06d05c3a1b35d551682ea593c68e78ccfdc0e98f","md5":"2d89a4a024f10b494fe4324f5a2aee7c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":32,"end_line":32},{"email":"vhardy@eng.sun.com","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/DoubleString.java","type":"file","name":"DoubleString.java","base_name":"DoubleString","extension":".java","size":1852,"date":"2019-10-25","sha1":"08af96d1b7752507c4d3860a4b38f90c50aec55b","md5":"4f5d266d6c85e3c6f749d66ead3bb9cd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/DoubleStringPerformanceTest.java","type":"file","name":"DoubleStringPerformanceTest.java","base_name":"DoubleStringPerformanceTest","extension":".java","size":2297,"date":"2019-10-25","sha1":"c192a5d740ebc23bd8398bb1a269b64d2e2e1db7","md5":"a6bcd4c68a236dbc501e79b0c120c069","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/DrawImage.java","type":"file","name":"DrawImage.java","base_name":"DrawImage","extension":".java","size":3152,"date":"2019-10-25","sha1":"10b95158fc7b0bcfd2e052490dec75f87c8ec01f","md5":"67ee00fa95c5c297284c91aeaf0d9dc2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@eng.sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Font1.java","type":"file","name":"Font1.java","base_name":"Font1","extension":".java","size":5322,"date":"2019-10-25","sha1":"02e53d73f2b64fa8c4e9546b57cf1a98a6d7535d","md5":"8aee0a0e992b2bfc0928cef97016df7a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":31,"end_line":31},{"email":"vhardy@eng.sun.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Font2.java","type":"file","name":"Font2.java","base_name":"Font2","extension":".java","size":5324,"date":"2019-10-25","sha1":"df54f4a61f4de4549788095ba0f2b400d0884ea1","md5":"929053cafd67b468f23fcf2159443c15","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":34,"end_line":34},{"email":"vhardy@eng.sun.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/GeneratorContext.java","type":"file","name":"GeneratorContext.java","base_name":"GeneratorContext","extension":".java","size":4996,"date":"2019-10-25","sha1":"e03e1648cad05914d6b83a57d70cbfab6b7f1d89","md5":"18c6947a5cf28805702648a5798ca8b6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/GetRootTest.java","type":"file","name":"GetRootTest.java","base_name":"GetRootTest","extension":".java","size":3863,"date":"2019-10-25","sha1":"d2871d271687c3aecb04f34367bd08c7f19d038a","md5":"98974451cb5df92320148a2634a71594","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Gradient.java","type":"file","name":"Gradient.java","base_name":"Gradient","extension":".java","size":4224,"date":"2019-10-25","sha1":"5378814f0338ca949940ba2a81d1792aec5675e8","md5":"b9f038e120c00d86bb41ef7d4218f0e8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":28,"end_line":28},{"email":"vhardy@eng.sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/GraphicObjects.java","type":"file","name":"GraphicObjects.java","base_name":"GraphicObjects","extension":".java","size":3407,"date":"2019-10-25","sha1":"e86d0bc1167dbfe86a5b09caee70863d4311beff","md5":"22efd672165461b62c1153aa7c86c0dd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":30,"end_line":30},{"email":"vhardy@eng.sun.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/GVector.java","type":"file","name":"GVector.java","base_name":"GVector","extension":".java","size":1997,"date":"2019-10-25","sha1":"0cda07b0add9f5b8195c2667a81f557c1a2e2ef9","md5":"1c1372dfb79559092c12d505fcd8ee04","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":30,"end_line":30},{"email":"vhardy@eng.sun.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/IdentityTest.java","type":"file","name":"IdentityTest.java","base_name":"IdentityTest","extension":".java","size":1653,"date":"2019-10-25","sha1":"2d043eb9b6ec9feb23c8a658b22a51fb0af4cd37","md5":"e805418866109692452feb2ea4987cb4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/JPainterCompare.java","type":"file","name":"JPainterCompare.java","base_name":"JPainterCompare","extension":".java","size":9051,"date":"2019-10-25","sha1":"4d8fd884b08bad42fbddf569d17c09cb0d74e3c3","md5":"b3ba7082ede0209442cd8b88a726755d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":47,"end_line":47}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/JPainterComponent.java","type":"file","name":"JPainterComponent.java","base_name":"JPainterComponent","extension":".java","size":1780,"date":"2019-10-25","sha1":"d26dcec49d403023b26ed30439c84fba5207d3a9","md5":"9fcb0f91faf047f83688a0e46c77f931","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Lookup.java","type":"file","name":"Lookup.java","base_name":"Lookup","extension":".java","size":3266,"date":"2019-10-25","sha1":"3b0f924f4830e59b03a3b09c9c6fa5d191a261fd","md5":"7d0e9c803086bfc2273c5bd4e0b49d33","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":36,"end_line":36},{"email":"vhardy@eng.sun.com","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2284,"date":"2019-10-25","sha1":"c353a43c64f7c6ab44f53b2589b1cf27293b11f5","md5":"be3b1fc10a65f9dfb2bc4377051a2761","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/NegativeLengths.java","type":"file","name":"NegativeLengths.java","base_name":"NegativeLengths","extension":".java","size":8137,"date":"2019-10-25","sha1":"cd8f9ee7aaacdf72072ccc6f91958bd660dddd99","md5":"ec04458d6bd861f8e76fa571863735fc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@sun.com","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Painter.java","type":"file","name":"Painter.java","base_name":"Painter","extension":".java","size":1224,"date":"2019-10-25","sha1":"946c24df61e38488edbdc6f4db6dcb276a3db35f","md5":"e98887da9a569f8ca86c25f64b146813","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@eng.sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Paints.java","type":"file","name":"Paints.java","base_name":"Paints","extension":".java","size":3075,"date":"2019-10-25","sha1":"d353df6031832cbc3aaba0f419400563b163f59d","md5":"f5eb74eb7cde0afd3708b622d4e93f47","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":34,"end_line":34},{"email":"vhardy@eng.sun.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Rescale.java","type":"file","name":"Rescale.java","base_name":"Rescale","extension":".java","size":4029,"date":"2019-10-25","sha1":"40658188d5d2dd568a34a71e1a7a066f1bac06f6","md5":"df53998a9e4a23c6a930900468260d48","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":34,"end_line":34},{"email":"vhardy@eng.sun.com","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/RHints.java","type":"file","name":"RHints.java","base_name":"RHints","extension":".java","size":4145,"date":"2019-10-25","sha1":"bd29f35982f8ebeed900c8b03e5d8d926e8214ae","md5":"e97a3bca727c4ad08ee2f86cffab5db2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":29,"end_line":29},{"email":"vhardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/ShearTest.java","type":"file","name":"ShearTest.java","base_name":"ShearTest","extension":".java","size":1856,"date":"2019-10-25","sha1":"5544630785cd362f4bfa42752b67bdfdbc4201d7","md5":"8d6eee845da123ea441ed314b27d957d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":27,"end_line":27},{"email":"vhardy@eng.sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/ShowGraphics2DOutput.java","type":"file","name":"ShowGraphics2DOutput.java","base_name":"ShowGraphics2DOutput","extension":".java","size":3495,"date":"2019-10-25","sha1":"3ed858af6c3083bf2fa32903aab58e27f27018e3","md5":"0c1e53c38bed5ae00e3e6a1e06db0f18","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/SVGAccuracyTest.java","type":"file","name":"SVGAccuracyTest.java","base_name":"SVGAccuracyTest","extension":".java","size":13166,"date":"2019-10-25","sha1":"edf6bb1424cccfe9fcff74587a31a62df9ce5515","md5":"5b137cfd215bb4c73385b5635512c635","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":56,"end_line":56}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/SVGAccuracyTestValidator.java","type":"file","name":"SVGAccuracyTestValidator.java","base_name":"SVGAccuracyTestValidator","extension":".java","size":5919,"date":"2019-10-25","sha1":"c28eac23863f8cb317ad5315aeef555563c7db22","md5":"97d006096b2ecbe139bf9d737634a605","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/SVGGeneratorTests.java","type":"file","name":"SVGGeneratorTests.java","base_name":"SVGGeneratorTests","extension":".java","size":8434,"date":"2019-10-25","sha1":"92cc42e337f1b05a753efb06e64326b48c887f21","md5":"db4d351272b7d5c9e1bbf263a6cf7306","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/TextSpacePreserve.java","type":"file","name":"TextSpacePreserve.java","base_name":"TextSpacePreserve","extension":".java","size":1947,"date":"2019-10-25","sha1":"53bb57c074c4f503fb9faf899cdb22680b152a2a","md5":"b205973c00403918d3b84c8b2fdf932f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/Texture.java","type":"file","name":"Texture.java","base_name":"Texture","extension":".java","size":3218,"date":"2019-10-25","sha1":"ecd711ae4576b8c1fe0ada0421df5343db4d057d","md5":"76ccf119b8950c7480e77941f2fb61cf","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":31,"end_line":31},{"email":"vhardy@eng.sun.com","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/svggen/TransformCollapse.java","type":"file","name":"TransformCollapse.java","base_name":"TransformCollapse","extension":".java","size":1809,"date":"2019-10-25","sha1":"c7aad30aab0082e7b1b2f35c4a5eb1099ae2a0e0","md5":"b562fe7518de5ae7712cb09b1214aee2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/swing","type":"directory","name":"swing","base_name":"swing","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":33433,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/swing/JSVGInterruptTest.java","type":"file","name":"JSVGInterruptTest.java","base_name":"JSVGInterruptTest","extension":".java","size":16351,"date":"2019-10-25","sha1":"eb4a9b4416a4b01c522012a6fdc95f93380a5f6c","md5":"6b8100ca46b3001874850147a75d1a5f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/swing/JSVGMemoryLeakTest.java","type":"file","name":"JSVGMemoryLeakTest.java","base_name":"JSVGMemoryLeakTest","extension":".java","size":7197,"date":"2019-10-25","sha1":"4e08ca5d9caab205f3b493ff308ad913938dd010","md5":"e5bda0e7e75e9d3dc6fe3699b7828fca","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/swing/NullSetSVGDocumentTest.java","type":"file","name":"NullSetSVGDocumentTest.java","base_name":"NullSetSVGDocumentTest","extension":".java","size":5282,"date":"2019-10-25","sha1":"9a072f2f6e452dee83604dcad13182cdd9026899","md5":"9e58fb74f471a0d1c8034f9b4cce393f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/swing/NullURITest.java","type":"file","name":"NullURITest.java","base_name":"NullURITest","extension":".java","size":1401,"date":"2019-10-25","sha1":"07b5b52b217a4753869a4ad31632d46aad33dde6","md5":"d6e33ece7c9ed7655d614b73e15740ab","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/swing/SetSVGDocumentTest.java","type":"file","name":"SetSVGDocumentTest.java","base_name":"SetSVGDocumentTest","extension":".java","size":3202,"date":"2019-10-25","sha1":"26fb522b59d67ab88e7d7ef51e63d58f0228f79e","md5":"9070559445122950947a173c1ea59699","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":1,"size_count":38134,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/test/MemoryLeakTest.java","type":"file","name":"MemoryLeakTest.java","base_name":"MemoryLeakTest","extension":".java","size":8510,"date":"2019-10-25","sha1":"f887d540adeac36a7f0c3d8f31fcc68d1fb2cffa","md5":"d97cfa506d878dad22bdb6684991faaf","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/test/MemoryLeakTestValidator.java","type":"file","name":"MemoryLeakTestValidator.java","base_name":"MemoryLeakTestValidator","extension":".java","size":2086,"date":"2019-10-25","sha1":"8edbe0d70800edc5df731d47c220afaf49c80d27","md5":"cb5d817e7f296ebd4f75b28e33efd436","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/test/xml","type":"directory","name":"xml","base_name":"xml","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":27538,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/test/xml/JUnitRunnerTestCase.java","type":"file","name":"JUnitRunnerTestCase.java","base_name":"JUnitRunnerTestCase","extension":".java","size":27538,"date":"2019-10-25","sha1":"b608e96df18bdebdb162c925996bde2d43011ff3","md5":"b1dc3f13f2df255f136e82412250eccc","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder","type":"directory","name":"transcoder","base_name":"transcoder","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":20,"dirs_count":2,"size_count":81390,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/TranscoderInputTest.java","type":"file","name":"TranscoderInputTest.java","base_name":"TranscoderInputTest","extension":".java","size":5397,"date":"2019-10-25","sha1":"028360a08f8f92a6980d297be9ff2da1c5b8cc4d","md5":"f46f4f8d36acc7583442fbab0e142729","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":51,"end_line":51}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image","type":"directory","name":"image","base_name":"image","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":17,"dirs_count":0,"size_count":59978,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/AbstractImageTranscoderTest.java","type":"file","name":"AbstractImageTranscoderTest.java","base_name":"AbstractImageTranscoderTest","extension":".java","size":13306,"date":"2019-10-25","sha1":"ed8a670e1c314077055e911e0507ef6c46ac1510","md5":"61c3ac1155f76c9bcd1fe59fa5a8e12c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":61,"end_line":61}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/AlternateStylesheetTest.java","type":"file","name":"AlternateStylesheetTest.java","base_name":"AlternateStylesheetTest","extension":".java","size":2766,"date":"2019-10-25","sha1":"0b0f7d370e3515475c855e906a9c4620e0651805","md5":"d6363e6ba5922b5970370d3f8fdf3d30","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/AOITest.java","type":"file","name":"AOITest.java","base_name":"AOITest","extension":".java","size":4284,"date":"2019-10-25","sha1":"adf0862554a920b01cc74597d24037038053ee74","md5":"6f519821dc794c4b253b9c346ff243cc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/BackgroundColorTest.java","type":"file","name":"BackgroundColorTest.java","base_name":"BackgroundColorTest","extension":".java","size":3671,"date":"2019-10-25","sha1":"910d164a8e7bce298beafcb6e6ea5e011b54c4ce","md5":"942e79e4e819e17ca917c2a7aaad2d81","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/DefaultFontFamilyTest.java","type":"file","name":"DefaultFontFamilyTest.java","base_name":"DefaultFontFamilyTest","extension":".java","size":2704,"date":"2019-10-25","sha1":"3c216f786015daf2bf38840eba8619469d05eb55","md5":"aab9a0708965c0b3a6d12cd403d0123f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/DimensionTest.java","type":"file","name":"DimensionTest.java","base_name":"DimensionTest","extension":".java","size":2876,"date":"2019-10-25","sha1":"29f1b510d59c1a60463490c553cc7ce6b68fbec2","md5":"b8bc01eb0cf85c5cb456f3f82c1de9e5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/DOMTest.java","type":"file","name":"DOMTest.java","base_name":"DOMTest","extension":".java","size":3600,"date":"2019-10-25","sha1":"89e53063db7aa15e2890697d294a46cd1dcfbca5","md5":"8a4848ba38a32b2a67c8852326fdf805","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/GenericDocumentTest.java","type":"file","name":"GenericDocumentTest.java","base_name":"GenericDocumentTest","extension":".java","size":2951,"date":"2019-10-25","sha1":"8c8999a260f27744bbd6494b838c875d71f6907d","md5":"33d738f592c42ffa5b186255d0f65770","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/InputStreamTest.java","type":"file","name":"InputStreamTest.java","base_name":"InputStreamTest","extension":".java","size":2439,"date":"2019-10-25","sha1":"083ceb34d928a6079cbb26c617a389add38f60b2","md5":"7e19d44de26a95a0203385f427825a6c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/LanguageTest.java","type":"file","name":"LanguageTest.java","base_name":"LanguageTest","extension":".java","size":2637,"date":"2019-10-25","sha1":"c75b4234ba886ceb895aa13510845fc59bd384f4","md5":"27fc36d68b6ea695c0e18c5a663af7e2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/MaxDimensionTest.java","type":"file","name":"MaxDimensionTest.java","base_name":"MaxDimensionTest","extension":".java","size":4342,"date":"2019-10-25","sha1":"45bbd4e1b0cf328ebd19b03c30112ac05be0595c","md5":"b5e8ad7eb048836198a60498a005ab61","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"ruini@iki.fi","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/MediaTest.java","type":"file","name":"MediaTest.java","base_name":"MediaTest","extension":".java","size":2473,"date":"2019-10-25","sha1":"a17fb7dcb4bf5d8d6d072438cb138ec9734474d0","md5":"12091b355a5a8138a779ce0671be3705","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2308,"date":"2019-10-25","sha1":"353215d27a21002665722bdee357bd096dab9ab3","md5":"ab52c548e5fdb436fd177d0a177c0861","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/ParametrizedDOMTest.java","type":"file","name":"ParametrizedDOMTest.java","base_name":"ParametrizedDOMTest","extension":".java","size":2549,"date":"2019-10-25","sha1":"b214fd4371cad5e8dd891fadb0deebd0844c31a1","md5":"ac82538ca58d755b0bb87d9f20980784","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/PixelToMMTest.java","type":"file","name":"PixelToMMTest.java","base_name":"PixelToMMTest","extension":".java","size":2600,"date":"2019-10-25","sha1":"5b3f73bb234fb2bd80f5bf6ee25794deea99b95c","md5":"cd1e3089ecd5d32043b0b6adb1d82714","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/ReaderTest.java","type":"file","name":"ReaderTest.java","base_name":"ReaderTest","extension":".java","size":2459,"date":"2019-10-25","sha1":"f54bcc055b693f788812c8ba3ce7caba51ab1016","md5":"307e518f6ac97d31e188a5208c9c1360","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/image/URITest.java","type":"file","name":"URITest.java","base_name":"URITest","extension":".java","size":2013,"date":"2019-10-25","sha1":"011976dad9f98d123e2fbb21b3d6ba97d8ae2336","md5":"c828edef0e82d8c85820a362cf5395f5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/wmf","type":"directory","name":"wmf","base_name":"wmf","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":16015,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/wmf/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2300,"date":"2019-10-25","sha1":"2c8228fbbe0c80b68dcc3f1946aa836be4e80d2f","md5":"15e7140e23c8bcfaeb0b91711075f015","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/transcoder/wmf/WMFAccuracyTest.java","type":"file","name":"WMFAccuracyTest.java","base_name":"WMFAccuracyTest","extension":".java","size":13715,"date":"2019-10-25","sha1":"ef45981df6fd156600965d18330a82a92cc608b1","md5":"d05fbdb75ed4302bde7db07e5b8b6468","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":49,"end_line":49}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/util","type":"directory","name":"util","base_name":"util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":4518,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-old/src/test/java/org/apache/batik/util/ApplicationSecurityEnforcerTest.java","type":"file","name":"ApplicationSecurityEnforcerTest.java","base_name":"ApplicationSecurityEnforcerTest","extension":".java","size":4518,"date":"2019-10-25","sha1":"91918af6bdb2ec76fdc2f98aa420d30940e01ea7","md5":"f63b2850bc15dfb9739705c3625da662","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg","type":"directory","name":"batik-test-svg","base_name":"batik-test-svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":19,"dirs_count":8,"size_count":149132,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2289,"date":"2019-10-25","sha1":"6575aa99d00e827c2f74d3303befd8cab969d620","md5":"088bbf00e007a50b53b62b5c9a344934","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-test-svg","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-test-svg\nBatik SVG Tests","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-test","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-test-swing","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-transcoder","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-test-svg@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-test-svg@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-test-svg/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-test-svg/1.12/batik-test-svg-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-test-svg/1.12/batik-test-svg-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":7,"size_count":146843,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":6,"size_count":146843,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":5,"size_count":146843,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":4,"size_count":146843,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":3,"size_count":146843,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":2,"size_count":146843,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":1,"size_count":146843,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg","type":"directory","name":"svg","base_name":"svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":0,"size_count":146843,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/AbstractRenderingAccuracyTest.java","type":"file","name":"AbstractRenderingAccuracyTest.java","base_name":"AbstractRenderingAccuracyTest","extension":".java","size":29490,"date":"2019-10-25","sha1":"f74bfb5da173a5c730e86494a8e4928a8094bc99","md5":"6036f9b1cd71f5193f7a46a105ac1017","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.lorg","start_line":66,"end_line":66}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/BERenderingTest.java","type":"file","name":"BERenderingTest.java","base_name":"BERenderingTest","extension":".java","size":2901,"date":"2019-10-25","sha1":"49d5a3d327c90316be182fdd37bfda7a8707e3db","md5":"36c25b94dbbe2b956c09792d88581144","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/ImageCompareTest.java","type":"file","name":"ImageCompareTest.java","base_name":"ImageCompareTest","extension":".java","size":12620,"date":"2019-10-25","sha1":"584bea8055169b8a3697b3e0f5d8dda40f96ef59","md5":"eb7046010ce2879fbe233cdd1bf45cf4","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":51,"end_line":51}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/JSVGRenderingAccuracyTest.java","type":"file","name":"JSVGRenderingAccuracyTest.java","base_name":"JSVGRenderingAccuracyTest","extension":".java","size":5167,"date":"2019-10-25","sha1":"02d706c1d407eafbdaa86006137f283788788553","md5":"840154e1485d2e69c976a3375bfb7273","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":46,"end_line":46}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2288,"date":"2019-10-25","sha1":"66e730185c578de9bd48af7b488c4ca6b7d0def8","md5":"2efdea689e5b39464aad90534b3a1308","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/ParametrizedRenderingAccuracyTest.java","type":"file","name":"ParametrizedRenderingAccuracyTest.java","base_name":"ParametrizedRenderingAccuracyTest","extension":".java","size":4634,"date":"2019-10-25","sha1":"4d45ea3b8452e2428af45e6dd3ccec4857141028","md5":"2fab9007546a1b985edeb2e4a17ed7b2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/PreconfiguredRenderingTest.java","type":"file","name":"PreconfiguredRenderingTest.java","base_name":"PreconfiguredRenderingTest","extension":".java","size":6704,"date":"2019-10-25","sha1":"dc68dda99104c26655b66685d779c82571d6a9ed","md5":"af20d2f1b62535f60261e37f401793e1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/SamplesRenderingTest.java","type":"file","name":"SamplesRenderingTest.java","base_name":"SamplesRenderingTest","extension":".java","size":2846,"date":"2019-10-25","sha1":"d266a765b0fd3bc1626853256b935667dd38033b","md5":"9c8243b7af4e1438208fde3cf0a693fd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/SelfContainedSVGOnLoadTest.java","type":"file","name":"SelfContainedSVGOnLoadTest.java","base_name":"SelfContainedSVGOnLoadTest","extension":".java","size":12355,"date":"2019-10-25","sha1":"c53a4abb9fe1e922c504b5589ff74a7f21bc0142","md5":"c9907100f5de5c57e6930ab4bd7d9bfa","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":70,"end_line":70}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/batik/test","start_line":49,"end_line":49}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/SelfContainedSVGOnLoadTestValidator.java","type":"file","name":"SelfContainedSVGOnLoadTestValidator.java","base_name":"SelfContainedSVGOnLoadTestValidator","extension":".java","size":9923,"date":"2019-10-25","sha1":"fe2a39d43503dbab9cac92f15ec2c573f991bd71","md5":"0d49241d40ae2f5c9567b60add6dde82","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/SVGAccuracyTestProcessor.java","type":"file","name":"SVGAccuracyTestProcessor.java","base_name":"SVGAccuracyTestProcessor","extension":".java","size":1382,"date":"2019-10-25","sha1":"3282c87bf72b5878a6f7d4c11f4d1c1ea1a857fb","md5":"dcbe6eacf349e8359e2b61095f33587d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/SVGAlternateStyleSheetRenderingAccuracyTest.java","type":"file","name":"SVGAlternateStyleSheetRenderingAccuracyTest.java","base_name":"SVGAlternateStyleSheetRenderingAccuracyTest","extension":".java","size":1673,"date":"2019-10-25","sha1":"425ac40c3e6e28668a8b20aa99fe40e067cfe1af","md5":"67e4e83691ec0ad02c03b5eba12cfd84","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/SVGMediaRenderingAccuracyTest.java","type":"file","name":"SVGMediaRenderingAccuracyTest.java","base_name":"SVGMediaRenderingAccuracyTest","extension":".java","size":1587,"date":"2019-10-25","sha1":"446ff04ce6c1cb2b5e08acb8254064110eaeec0f","md5":"cb1712e27af5bddc3e9fc037772e57b1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/SVGOnLoadExceptionTest.java","type":"file","name":"SVGOnLoadExceptionTest.java","base_name":"SVGOnLoadExceptionTest","extension":".java","size":19464,"date":"2019-10-25","sha1":"9354b67c48cc8dcbf1fe04dc48c18f11294e38c5","md5":"9253b7be5e451898fe05e5c122fd664a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":84,"end_line":84}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/batik/test","start_line":158,"end_line":158}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/SVGReferenceRenderingAccuracyTest.java","type":"file","name":"SVGReferenceRenderingAccuracyTest.java","base_name":"SVGReferenceRenderingAccuracyTest","extension":".java","size":6860,"date":"2019-10-25","sha1":"64685ffd22348806ab73b366457ba2c302b35d5c","md5":"59bbcd71ae85d7cba43dd49c28d41b6f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/SVGRenderingAccuracyTest.java","type":"file","name":"SVGRenderingAccuracyTest.java","base_name":"SVGRenderingAccuracyTest","extension":".java","size":7938,"date":"2019-10-25","sha1":"9ae0e4e8c5610c1aae8d449c9523ca55022fcd09","md5":"522772124389df584b92d397673b9812","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.lorg","start_line":47,"end_line":47}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/SVGRenderingAccuracyTestValidator.java","type":"file","name":"SVGRenderingAccuracyTestValidator.java","base_name":"SVGRenderingAccuracyTestValidator","extension":".java","size":16610,"date":"2019-10-25","sha1":"beff25862b8a4cf920796550f212c373387982cd","md5":"4d8611c1e3274527f36747cddcc746d3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-svg/src/main/java/org/apache/batik/test/svg/SVGTextContentRenderingAccuracyTest.java","type":"file","name":"SVGTextContentRenderingAccuracyTest.java","base_name":"SVGTextContentRenderingAccuracyTest","extension":".java","size":2401,"date":"2019-10-25","sha1":"a5cb852c0a76e2e010ae9092866bb5b6744d1484","md5":"1f46586562688dbdc3f0de1d8c70e2ac","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-swing","type":"directory","name":"batik-test-swing","base_name":"batik-test-swing","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":7,"size_count":17670,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-swing/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2117,"date":"2019-10-25","sha1":"06acb6bdd96ad8d3618f957bd2799d6ce391979a","md5":"4b5e24ef0d026e696d74c29187c1881d","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-test-swing","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-test-swing\nBatik Swing Tests","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-swing","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-swing","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-test","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-test-swing@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-test-swing@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-test-swing/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-test-swing/1.12/batik-test-swing-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-test-swing/1.12/batik-test-swing-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-swing/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":6,"size_count":15553,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-swing/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":5,"size_count":15553,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-swing/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":4,"size_count":15553,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-swing/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":3,"size_count":15553,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-swing/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":2,"size_count":15553,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-swing/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":1,"size_count":15553,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-swing/src/main/java/org/apache/batik/swing","type":"directory","name":"swing","base_name":"swing","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":15553,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-swing/src/main/java/org/apache/batik/swing/JSVGCanvasHandler.java","type":"file","name":"JSVGCanvasHandler.java","base_name":"JSVGCanvasHandler","extension":".java","size":13252,"date":"2019-10-25","sha1":"386b6bd403e8e55bcc3928d02fb549174c52f598","md5":"7cd8a2d8093708095bd46beef6bc2ce3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":56,"end_line":56}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-swing/src/main/java/org/apache/batik/swing/TestMessages.java","type":"file","name":"TestMessages.java","base_name":"TestMessages","extension":".java","size":2301,"date":"2019-10-25","sha1":"05bf9174528d47f5e97bc6eb396651507a38b442","md5":"728d50c66ef821b9951b74862673c109","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util","type":"directory","name":"batik-test-util","base_name":"batik-test-util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":13,"size_count":2132,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2132,"date":"2019-10-25","sha1":"e2938dcc2589c580024e0e7a080b13ad068afdd0","md5":"75f42a191341d3ecf822d5e069e3f9b2","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-test-util","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-test-util\nBatik Test Harness Utilities","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-test","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/junit/junit","requirement":"${junit.version}","scope":"test","is_runtime":false,"is_optional":true,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-test-util@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-test-util@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-test-util/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-test-util/1.12/batik-test-util-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-test-util/1.12/batik-test-util-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":12,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":5,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":4,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":3,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":1,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util/src/main/java/org/apache/batik/util","type":"directory","name":"util","base_name":"util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":5,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":4,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util/src/test/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":3,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util/src/test/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util/src/test/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":1,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-test-util/src/test/java/org/apache/batik/util","type":"directory","name":"util","base_name":"util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder","type":"directory","name":"batik-transcoder","base_name":"batik-transcoder","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":47,"dirs_count":24,"size_count":457925,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":3306,"date":"2019-10-25","sha1":"f4ace3bb17b2801d0242a4480369d23e09b61a53","md5":"d6fd10ddd7256f215f99cd8679b63620","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-transcoder","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-transcoder\nBatik SVG transcoder","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-anim","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-awt-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-bridge","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-dom","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-gvt","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-svggen","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-xml","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/xml-apis/xml-apis-ext","requirement":"${xmlapisext.version}","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-transcoder@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-transcoder@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-transcoder/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-transcoder/1.12/batik-transcoder-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-transcoder/1.12/batik-transcoder-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":46,"dirs_count":23,"size_count":454619,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":46,"dirs_count":19,"size_count":454619,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":45,"dirs_count":11,"size_count":453068,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":45,"dirs_count":10,"size_count":453068,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":45,"dirs_count":9,"size_count":453068,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":45,"dirs_count":8,"size_count":453068,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder","type":"directory","name":"transcoder","base_name":"transcoder","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":45,"dirs_count":7,"size_count":453068,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/AbstractTranscoder.java","type":"file","name":"AbstractTranscoder.java","base_name":"AbstractTranscoder","extension":".java","size":1330,"date":"2019-10-25","sha1":"24455279dfa09261b32b158f5e5b8944d5e61bc9","md5":"cdbab332ec51b368a7487e6ac57e777e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/DefaultErrorHandler.java","type":"file","name":"DefaultErrorHandler.java","base_name":"DefaultErrorHandler","extension":".java","size":2369,"date":"2019-10-25","sha1":"684755fc5aeada4e3beb061e7bb42cec3739da4c","md5":"2c9c10790a42fbf6cdf111266af814fc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/ErrorHandler.java","type":"file","name":"ErrorHandler.java","base_name":"ErrorHandler","extension":".java","size":2778,"date":"2019-10-25","sha1":"4f6d87367a4cd19c8f4a13c7dcf0eaca0fc0237b","md5":"fd354bd15b084bde58af37d5b95f51ef","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":39,"end_line":39}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":296,"date":"2019-10-25","sha1":"7a54d03b3a1922f4dcb24bebae891a9d0f980e03","md5":"b294fb56edc05c30339cf1c569700cf6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/SVGAbstractTranscoder.java","type":"file","name":"SVGAbstractTranscoder.java","base_name":"SVGAbstractTranscoder","extension":".java","size":38691,"date":"2019-10-25","sha1":"b0445a83a6ba5cf2cc6d1f55470c562e3ce2b15f","md5":"00d5b045c28a5b0bfaa32a1806af32c2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":72,"end_line":72}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/ToSVGAbstractTranscoder.java","type":"file","name":"ToSVGAbstractTranscoder.java","base_name":"ToSVGAbstractTranscoder","extension":".java","size":8230,"date":"2019-10-25","sha1":"5e3e8dd14f3ccac71667d961ad5a7100a66d991f","md5":"13d6efa8bac467884c614ad6ed3a1a34","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/Transcoder.java","type":"file","name":"Transcoder.java","base_name":"Transcoder","extension":".java","size":2884,"date":"2019-10-25","sha1":"513fdf674dbdc53cda44ed6d73d024b48221ef11","md5":"fbde588ed725c3f4db36e0eebed5b9be","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/TranscoderException.java","type":"file","name":"TranscoderException.java","base_name":"TranscoderException","extension":".java","size":2497,"date":"2019-10-25","sha1":"aba211fb3fa657e4874d69ca949c9a8497071bc3","md5":"b4c423b347f0aba43d217f565d321810","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/TranscoderInput.java","type":"file","name":"TranscoderInput.java","base_name":"TranscoderInput","extension":".java","size":5170,"date":"2019-10-25","sha1":"7c8996a1f37eb89671a9f2987c1ff2d69faecb88","md5":"0566e232f9b5db7405b17ff0117bc818","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/TranscoderOutput.java","type":"file","name":"TranscoderOutput.java","base_name":"TranscoderOutput","extension":".java","size":5237,"date":"2019-10-25","sha1":"c0240f37f80da438d565e6b75d813137a04c0fe1","md5":"4a696fcd35d11ec8bf5c90ba3e358266","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/TranscoderSupport.java","type":"file","name":"TranscoderSupport.java","base_name":"TranscoderSupport","extension":".java","size":3346,"date":"2019-10-25","sha1":"0aa4ff25ed6ac895d917643bf06546bfa0e7421e","md5":"d4c6b63656c0e14332e21c0fd11f5537","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/TranscodingHints.java","type":"file","name":"TranscodingHints.java","base_name":"TranscodingHints","extension":".java","size":5028,"date":"2019-10-25","sha1":"c74256e3685119ede4801079b6fbd201a54f7d64","md5":"7ab7a925713746cac1d4e948878dc047","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/XMLAbstractTranscoder.java","type":"file","name":"XMLAbstractTranscoder.java","base_name":"XMLAbstractTranscoder","extension":".java","size":12303,"date":"2019-10-25","sha1":"a0c3d3d49d7d9c6a0588c89447e351630d762678","md5":"89ec5972ec7cf7216a266be78b064d2c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":50,"end_line":50}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/image","type":"directory","name":"image","base_name":"image","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":1,"size_count":36562,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/image/ImageTranscoder.java","type":"file","name":"ImageTranscoder.java","base_name":"ImageTranscoder","extension":".java","size":10754,"date":"2019-10-25","sha1":"2195353b8adb64633cc7e43cc7e7e58e7a0b8d79","md5":"e540c6d014b537533be561617ee724c7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":67,"end_line":67}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/image/JPEGTranscoder.java","type":"file","name":"JPEGTranscoder.java","base_name":"JPEGTranscoder","extension":".java","size":6997,"date":"2019-10-25","sha1":"42ad78e033a569b164a46be3040ecc6d3e608bda","md5":"69334d8e2e98e142940df79979b456f7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/image/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":263,"date":"2019-10-25","sha1":"8082e656e28f5f661b95c96d018ce89c08dff364","md5":"f4440d01a3d6a8ce381b322323a98ad0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/image/PNGTranscoder.java","type":"file","name":"PNGTranscoder.java","base_name":"PNGTranscoder","extension":".java","size":8203,"date":"2019-10-25","sha1":"49e95548f8758a5dc3395edd47d747a51b206173","md5":"74cdbabf9b60277c3d287d183d250562","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/image/TIFFTranscoder.java","type":"file","name":"TIFFTranscoder.java","base_name":"TIFFTranscoder","extension":".java","size":7985,"date":"2019-10-25","sha1":"e45b2004a79c1e2af1a7a2764f1e95531238a676","md5":"0504f02daaa1247c683fe9d694ead7ce","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/image/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":2360,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/image/resources/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2360,"date":"2019-10-25","sha1":"cd65fa2c94e48ea635719b0f2f96908130be6ff1","md5":"195cf1e89f477ebe7217c23dee39e060","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/keys","type":"directory","name":"keys","base_name":"keys","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":8,"dirs_count":0,"size_count":10234,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/keys/BooleanKey.java","type":"file","name":"BooleanKey.java","base_name":"BooleanKey","extension":".java","size":1271,"date":"2019-10-25","sha1":"75c462e9a5f032e3d2f5716ddbbefad663eb9ec7","md5":"33536367b22885deb8fcba881f4169dc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/keys/DOMImplementationKey.java","type":"file","name":"DOMImplementationKey.java","base_name":"DOMImplementationKey","extension":".java","size":1336,"date":"2019-10-25","sha1":"9f5b298ba84aa49ebbe66bb1207378e5b34c25ef","md5":"47f931016f336e69c87a9a70ea144d6e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/keys/FloatKey.java","type":"file","name":"FloatKey.java","base_name":"FloatKey","extension":".java","size":1250,"date":"2019-10-25","sha1":"c32b0ca8f77a2a40810a6e68cfc5294f43531fc3","md5":"42ba2aad59f61070015762b1f4a324b3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/keys/IntegerKey.java","type":"file","name":"IntegerKey.java","base_name":"IntegerKey","extension":".java","size":1255,"date":"2019-10-25","sha1":"efc4375377d7352774de2252e78d0345f5c4579a","md5":"9b1ef28158e7ce330404f3227c2b9aab","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/keys/LengthKey.java","type":"file","name":"LengthKey.java","base_name":"LengthKey","extension":".java","size":1273,"date":"2019-10-25","sha1":"6bfe92fbc8f569d63e23abcf7fa4676266059a57","md5":"6305edf961d1bdaaca88e61dacdd90a2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/keys/PaintKey.java","type":"file","name":"PaintKey.java","base_name":"PaintKey","extension":".java","size":1285,"date":"2019-10-25","sha1":"a1f6c16a155ed5313f54623db12cdc70db9486d2","md5":"e2f9eb47854affbf7a82c1489c158aad","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/keys/Rectangle2DKey.java","type":"file","name":"Rectangle2DKey.java","base_name":"Rectangle2DKey","extension":".java","size":1307,"date":"2019-10-25","sha1":"bb078441cb3736549974b4569c9dbbbd7ce598cf","md5":"a86a9e7eb7918a16a028a8819d43fa46","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/keys/StringKey.java","type":"file","name":"StringKey.java","base_name":"StringKey","extension":".java","size":1257,"date":"2019-10-25","sha1":"a30eaab33ab24ef41739fc5a467f18bd1dd910a0","md5":"fa208066d6d7a299ac15e9ffb2c05ca3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/print","type":"directory","name":"print","base_name":"print","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":29997,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/print/PrintTranscoder.java","type":"file","name":"PrintTranscoder.java","base_name":"PrintTranscoder","extension":".java","size":29997,"date":"2019-10-25","sha1":"381ad48d4252ffa9e5b8f7397a3df67296cf1bf8","md5":"80046916da930c8fca630a97b2f5f6e1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":76,"end_line":76}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/svg2svg","type":"directory","name":"svg2svg","base_name":"svg2svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":93276,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/svg2svg/OutputManager.java","type":"file","name":"OutputManager.java","base_name":"OutputManager","extension":".java","size":25552,"date":"2019-10-25","sha1":"45a7a567717ad2ffe8f0d458d52cccf8c64267af","md5":"7b1d5f41a0970bc5bab97be0d80bd329","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/svg2svg/PrettyPrinter.java","type":"file","name":"PrettyPrinter.java","base_name":"PrettyPrinter","extension":".java","size":59225,"date":"2019-10-25","sha1":"447c8d769735511e9e6fe777efbefbb47b046f7b","md5":"1aaf244343ead4aad4a182055abdb57d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/svg2svg/SVGTranscoder.java","type":"file","name":"SVGTranscoder.java","base_name":"SVGTranscoder","extension":".java","size":8499,"date":"2019-10-25","sha1":"ba25ea9c2e1e2eed387abe71c6c3f7519661c5be","md5":"efee72e2d213242503c5d1f9175fabc0","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":43,"end_line":43}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf","type":"directory","name":"wmf","base_name":"wmf","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":14,"dirs_count":1,"size_count":192840,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf/WMFConstants.java","type":"file","name":"WMFConstants.java","base_name":"WMFConstants","extension":".java","size":12378,"date":"2019-10-25","sha1":"3e114c4873a1b53e74b35fa1d93249be9025cf41","md5":"5e45db4dc4f1908d51deaf59854b48ec","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"luano@asd.ie","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf/tosvg","type":"directory","name":"tosvg","base_name":"tosvg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":13,"dirs_count":0,"size_count":180462,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf/tosvg/AbstractWMFPainter.java","type":"file","name":"AbstractWMFPainter.java","base_name":"AbstractWMFPainter","extension":".java","size":11253,"date":"2019-10-25","sha1":"a983cc4e374f1abd41c10480560cbcda71f4e5b4","md5":"317ec0a45491e10514b80781602ef964","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf/tosvg/AbstractWMFReader.java","type":"file","name":"AbstractWMFReader.java","base_name":"AbstractWMFReader","extension":".java","size":14731,"date":"2019-10-25","sha1":"2fe9ba79c59825231a364ac3f8873977fb5e5eca","md5":"1ac12244d7af3139d35760f0784a158e","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf/tosvg/GdiObject.java","type":"file","name":"GdiObject.java","base_name":"GdiObject","extension":".java","size":2591,"date":"2019-10-25","sha1":"09bc3c7a6ca6af13d2d4065381834ba792adde44","md5":"581ac96bd7f2782a2919884f1acddf5f","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf/tosvg/MetaRecord.java","type":"file","name":"MetaRecord.java","base_name":"MetaRecord","extension":".java","size":3085,"date":"2019-10-25","sha1":"1aba620f31ec2cee602418ca869202f15d3aa975","md5":"f67e6a385120e398303889765b4b0e5e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf/tosvg/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":2586,"date":"2019-10-25","sha1":"a3c8bd24be5548fe9d87fa685393f0da82568dd0","md5":"ca48c5b75198f7f277ebb9183d04836e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf/tosvg/RecordStore.java","type":"file","name":"RecordStore.java","base_name":"RecordStore","extension":".java","size":7155,"date":"2019-10-25","sha1":"5cb31592708678d978f85b13989b2185834cc13d","md5":"bdcc4df634704eb108841209f5ddb1e3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"luano@asd.ie","start_line":35,"end_line":35}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.asd.ie/Wmf.htm","start_line":69,"end_line":69}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf/tosvg/TextureFactory.java","type":"file","name":"TextureFactory.java","base_name":"TextureFactory","extension":".java","size":6559,"date":"2019-10-25","sha1":"9a1309c647495300bbefadbac9c949771422ca16","md5":"5abe19b22bd7a57a09091fbe01f3cf46","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf/tosvg/WMFFont.java","type":"file","name":"WMFFont.java","base_name":"WMFFont","extension":".java","size":1753,"date":"2019-10-25","sha1":"0de0776b464fedb1a8511ea3ff006d876549772e","md5":"573bd2839f8664e381d2c73c86b4f7f3","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf/tosvg/WMFHeaderProperties.java","type":"file","name":"WMFHeaderProperties.java","base_name":"WMFHeaderProperties","extension":".java","size":30786,"date":"2019-10-25","sha1":"3f39928d2cc489e966172440c846662e6412cfd8","md5":"4d639a070e799bf42436adbe93656eec","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf/tosvg/WMFPainter.java","type":"file","name":"WMFPainter.java","base_name":"WMFPainter","extension":".java","size":54465,"date":"2019-10-25","sha1":"e05a2139b407fd9dc84c0412e656d4a124a731b9","md5":"96240dc5dcb7943328a74a70f892ffb8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"luano@asd.ie","start_line":60,"end_line":60}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf/tosvg/WMFRecordStore.java","type":"file","name":"WMFRecordStore.java","base_name":"WMFRecordStore","extension":".java","size":30631,"date":"2019-10-25","sha1":"f1bcbc5f0edd4cf91ec216f4caff1b1b62584914","md5":"4655ffb6203bd19bfd8e0ff23b8818a2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"luano@asd.ie","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf/tosvg/WMFTranscoder.java","type":"file","name":"WMFTranscoder.java","base_name":"WMFTranscoder","extension":".java","size":10139,"date":"2019-10-25","sha1":"b1de2e0f6ce6b27a2023b8a11cdda744ed362566","md5":"3368db0f6a2b2620f01a90ef714b4952","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/java/org/apache/batik/transcoder/wmf/tosvg/WMFUtilities.java","type":"file","name":"WMFUtilities.java","base_name":"WMFUtilities","extension":".java","size":4728,"date":"2019-10-25","sha1":"44e9aaeb4559d242e859c3ed7f4487c9a10ac1d5","md5":"08c8f2a4a34e38469b3bcb1b279c9337","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":6,"size_count":1551,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":5,"size_count":1551,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":4,"size_count":1551,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":3,"size_count":1551,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/resources/org/apache/batik/transcoder","type":"directory","name":"transcoder","base_name":"transcoder","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":2,"size_count":1551,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/resources/org/apache/batik/transcoder/image","type":"directory","name":"image","base_name":"image","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":1551,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/resources/org/apache/batik/transcoder/image/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1551,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/main/resources/org/apache/batik/transcoder/image/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":1551,"date":"2019-10-25","sha1":"012b6f5c0bab8f1f0be9e046bceec310d8788122","md5":"543b9a985d15942741cb494d53cf5a7f","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thierry Kormann","start_line":20,"end_line":21}],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-transcoder/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg","type":"directory","name":"batik-ttf2svg","base_name":"batik-ttf2svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":16,"size_count":3735,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":2449,"date":"2019-10-25","sha1":"525969dc29e915806747ecce27ea558818dd9e2d","md5":"0d273198e7558ad23a771f2f99f92966","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-ttf2svg","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-ttf2svg\nBatik Truetype Font to SVG Font Converter Application","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-svggen","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-ttf2svg@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-ttf2svg@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-ttf2svg/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-ttf2svg/1.12/batik-ttf2svg-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-ttf2svg/1.12/batik-ttf2svg-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":15,"size_count":1286,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":11,"size_count":1286,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":5,"size_count":1286,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":4,"size_count":1286,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":3,"size_count":1286,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":2,"size_count":1286,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/main/java/org/apache/batik/apps","type":"directory","name":"apps","base_name":"apps","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":1286,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/main/java/org/apache/batik/apps/ttf2svg","type":"directory","name":"ttf2svg","base_name":"ttf2svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1286,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/main/java/org/apache/batik/apps/ttf2svg/Main.java","type":"file","name":"Main.java","base_name":"Main","extension":".java","size":1286,"date":"2019-10-25","sha1":"b5798c835a6048a9e34e34549807ac7c6c7f931c","md5":"d86c2a9798c7293bd9ae00a016f0bbbf","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":4,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":3,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":1,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/main/resources/org/apache/batik/apps","type":"directory","name":"apps","base_name":"apps","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-ttf2svg/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util","type":"directory","name":"batik-util","base_name":"batik-util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":84,"dirs_count":29,"size_count":418819,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":3280,"date":"2019-10-25","sha1":"050d120fb1d5da89f2c8e3125543c70bb1318c3b","md5":"e0cb2275bf8313b1cc816568b9889a9d","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-util","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-util\nBatik utility library","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-constants","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-i18n","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false},{"purl":"pkg:maven/org.apache.xmlgraphics/batik-test","requirement":"1.12","scope":"test","is_runtime":false,"is_optional":true,"is_resolved":false},{"purl":"pkg:maven/junit/junit","requirement":"${junit.version}","scope":"test","is_runtime":false,"is_optional":true,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-util@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-util@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-util/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-util/1.12/batik-util-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-util/1.12/batik-util-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":83,"dirs_count":28,"size_count":415539,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":57,"dirs_count":16,"size_count":352987,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":54,"dirs_count":7,"size_count":348964,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":54,"dirs_count":6,"size_count":348964,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":54,"dirs_count":5,"size_count":348964,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":54,"dirs_count":4,"size_count":348964,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/i18n","type":"directory","name":"i18n","base_name":"i18n","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/Version.java","type":"file","name":"Version.java","base_name":"Version","extension":".java","size":3996,"date":"2019-10-25","sha1":"83e6fc11ad93d47f154774b86340b02a232b4f20","md5":"5ca89dad41772f4af8158acc238f1f3e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"https://svn.apache.org/repos/asf/xmlgraphics/batik/branches/maven/batik-util","start_line":75,"end_line":75}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util","type":"directory","name":"util","base_name":"util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":53,"dirs_count":2,"size_count":344968,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/AbstractParsedURLProtocolHandler.java","type":"file","name":"AbstractParsedURLProtocolHandler.java","base_name":"AbstractParsedURLProtocolHandler","extension":".java","size":1660,"date":"2019-10-25","sha1":"e2856d563ac9c53b77ad296c0ad0de760292d7f3","md5":"5cf5080406aa47b88731f5768718d9bc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/ApplicationSecurityEnforcer.java","type":"file","name":"ApplicationSecurityEnforcer.java","base_name":"ApplicationSecurityEnforcer","extension":".java","size":11907,"date":"2019-10-25","sha1":"7ba8c91e43f12cdc754e536eec7edf3823b964a1","md5":"51a7c15bf3f8a837733e20989848b606","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/Base64DecodeStream.java","type":"file","name":"Base64DecodeStream.java","base_name":"Base64DecodeStream","extension":".java","size":5146,"date":"2019-10-25","sha1":"ecb7685022850bf9cba048512728050085ab2e06","md5":"a9e58ef6ac9d704a0e89613464268191","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Chuck McManis","start_line":44,"end_line":47}],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":44,"end_line":44},{"email":"vincent.hardy@eng.sun.com","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/Base64EncoderStream.java","type":"file","name":"Base64EncoderStream.java","base_name":"Base64EncoderStream","extension":".java","size":6774,"date":"2019-10-25","sha1":"1aa03ddaf3c1769b9012356bc8189d370bcf92b3","md5":"ac7fa8788e9a1f36a0e691df52734d8e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Chuck McManis","start_line":33,"end_line":36}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":33,"end_line":33},{"email":"vincent.hardy@eng.sun.com","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/BatikSecurityManager.java","type":"file","name":"BatikSecurityManager.java","base_name":"BatikSecurityManager","extension":".java","size":1757,"date":"2019-10-25","sha1":"d6a570a64bf869c2d97242a7110ea3e51346042f","md5":"8723c118e6448705af5cd1715468ca00","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/ClassFileUtilities.java","type":"file","name":"ClassFileUtilities.java","base_name":"ClassFileUtilities","extension":".java","size":16361,"date":"2019-10-25","sha1":"1a01ec3c83b829541cab265c5b386859ab85c02f","md5":"1b4758f103a515c9d96260c08f70af6f","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":41,"end_line":41}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/CleanerThread.java","type":"file","name":"CleanerThread.java","base_name":"CleanerThread","extension":".java","size":3815,"date":"2019-10-25","sha1":"b6993b5b0114bba3e5abc2efef795e83781bb07a","md5":"e093fa8881c57cfeaba007aaadfcc7a2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/CSSConstants.java","type":"file","name":"CSSConstants.java","base_name":"CSSConstants","extension":".java","size":19116,"date":"2019-10-25","sha1":"57863ef1e1238c103e80d0849bea31a9f5110dac","md5":"b8a22d7b608956cb6142ad731fe7aaa1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/DOMConstants.java","type":"file","name":"DOMConstants.java","base_name":"DOMConstants","extension":".java","size":2333,"date":"2019-10-25","sha1":"9943e48f39fbb5386e494bb1da893984e311eecd","md5":"96e869951a9a1b873bbd9ddda4bc1502","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/DoublyIndexedSet.java","type":"file","name":"DoublyIndexedSet.java","base_name":"DoublyIndexedSet","extension":".java","size":1944,"date":"2019-10-25","sha1":"e9fe73e4897bbc85e26545824e24b8e667db98e1","md5":"261b51060414017c3e69ad5fe0e9fd4b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/DoublyIndexedTable.java","type":"file","name":"DoublyIndexedTable.java","base_name":"DoublyIndexedTable","extension":".java","size":9329,"date":"2019-10-25","sha1":"365f172ab82cc6fc38416c1927484a7ff5b9bfa4","md5":"edb712d31e2bd533025cdedbf012cead","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/DoublyLinkedList.java","type":"file","name":"DoublyLinkedList.java","base_name":"DoublyLinkedList","extension":".java","size":6751,"date":"2019-10-25","sha1":"5f81da9485e82effd6e08645bda47ba30fb9dadb","md5":"3ebae4766045867f9fbbfb3ec12b1237","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/EncodingUtilities.java","type":"file","name":"EncodingUtilities.java","base_name":"EncodingUtilities","extension":".java","size":3780,"date":"2019-10-25","sha1":"a98e75177a3c5612c5a0e00e7e019573a8098611","md5":"55eb97da491eeee38bb4727f4468e5a9","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/EventDispatcher.java","type":"file","name":"EventDispatcher.java","base_name":"EventDispatcher","extension":".java","size":4209,"date":"2019-10-25","sha1":"bf33f4aa3a63a805b1955d6cbbea32628172e627","md5":"3d16ac44c0bb4151a3b2240789519773","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/HaltingThread.java","type":"file","name":"HaltingThread.java","base_name":"HaltingThread","extension":".java","size":3104,"date":"2019-10-25","sha1":"ac5f71b6fce4fb98c67a860ac752f4a7ec8e6910","md5":"2b1c808b3b2a4d1ba1f3311ae2d8b4c6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":3072,"date":"2019-10-25","sha1":"f5d26d091386af0d1e67b1550c12459141753a0c","md5":"512992d35a585ac07df6801a13d0e67a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/MimeTypeConstants.java","type":"file","name":"MimeTypeConstants.java","base_name":"MimeTypeConstants","extension":".java","size":1391,"date":"2019-10-25","sha1":"01b7abccbf481e8244b4bc7d15c58119873a86dc","md5":"5fb1672568eb62ba86832ca8e0f50372","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/package.html","type":"file","name":"package.html","base_name":"package","extension":".html","size":201,"date":"2019-10-25","sha1":"7c6437ff685b8c5aa4570c86aef2fcb4ceecdfa9","md5":"5e0d3e88a59a97c1ab3b612b76b49154","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/ParsedURL.java","type":"file","name":"ParsedURL.java","base_name":"ParsedURL","extension":".java","size":19226,"date":"2019-10-25","sha1":"e640986dce7d4dd123bb60731233bd5ab7b07b8d","md5":"e4566153aad7a27cadb544746e8b02b1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":62,"end_line":62}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.ietf.org/rfc/rfc2397","start_line":46,"end_line":46}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/ParsedURLData.java","type":"file","name":"ParsedURLData.java","base_name":"ParsedURLData","extension":".java","size":19541,"date":"2019-10-25","sha1":"3c465f81bed737b7f7dfc17053886a5dc7e41d32","md5":"6be3e15e9278797208cbde4a17b91f81","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/ParsedURLDataProtocolHandler.java","type":"file","name":"ParsedURLDataProtocolHandler.java","base_name":"ParsedURLDataProtocolHandler","extension":".java","size":7175,"date":"2019-10-25","sha1":"2408f7292d8075d03398a6aafb44a0df6c6ed434","md5":"335caf79bb41d4ca89846cc845afbdaf","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.ietf.org/rfc/rfc2397.txt","start_line":29,"end_line":29}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/ParsedURLDefaultProtocolHandler.java","type":"file","name":"ParsedURLDefaultProtocolHandler.java","base_name":"ParsedURLDefaultProtocolHandler","extension":".java","size":11429,"date":"2019-10-25","sha1":"b50116e4af30f30460c1fe39ee61a04f6e430772","md5":"dfee51b1aa9a5018b58d0942a6c99d7a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/ParsedURLJarProtocolHandler.java","type":"file","name":"ParsedURLJarProtocolHandler.java","base_name":"ParsedURLJarProtocolHandler","extension":".java","size":2160,"date":"2019-10-25","sha1":"fb8a898de2835a1e61d53a48dba4b8bdad1b1b0e","md5":"058511e2ca08ae70096835415266d35d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/ParsedURLProtocolHandler.java","type":"file","name":"ParsedURLProtocolHandler.java","base_name":"ParsedURLProtocolHandler","extension":".java","size":1541,"date":"2019-10-25","sha1":"189bf3ccdded750fd34460137ff0b264ff22e748","md5":"6e23f2294b319fbaba7a8aaec4a15eb6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/Platform.java","type":"file","name":"Platform.java","base_name":"Platform","extension":".java","size":1818,"date":"2019-10-25","sha1":"1875adf90358b9edea51030aa9b9dd90edc1df63","md5":"b86310852b4b384c9fd37e356a1bc57e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/PreferenceManager.java","type":"file","name":"PreferenceManager.java","base_name":"PreferenceManager","extension":".java","size":24735,"date":"2019-10-25","sha1":"2dd2090ff33aa79545afabcb1729b6754c135ce5","md5":"a8595b8e48ad160e55594a4d847b8f52","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":71,"end_line":71}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/RunnableQueue.java","type":"file","name":"RunnableQueue.java","base_name":"RunnableQueue","extension":".java","size":22818,"date":"2019-10-25","sha1":"73ad155f8182f6da5905254b3d6c6acbf6121d63","md5":"b14c257bdf49a37e87f2d5912a0b45dd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/Service.java","type":"file","name":"Service.java","base_name":"Service","extension":".java","size":5755,"date":"2019-10-25","sha1":"9d61ca8a4ca5473e678134704fe49639e8179531","md5":"4b2cf8dfce7c80ac03e9539ea29cf27e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeeese@Kodak.com","start_line":42,"end_line":42}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html#Service%20Provider","start_line":37,"end_line":37}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/SMILConstants.java","type":"file","name":"SMILConstants.java","base_name":"SMILConstants","extension":".java","size":3490,"date":"2019-10-25","sha1":"38356a972304bea8a7b7bd57c8927782e6e56df8","md5":"e7b536832b85dd769f784acf02bedccd","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/SoftDoublyIndexedTable.java","type":"file","name":"SoftDoublyIndexedTable.java","base_name":"SoftDoublyIndexedTable","extension":".java","size":6610,"date":"2019-10-25","sha1":"d0a050fa4858525ad5edc96b1f99a4810cc4d764","md5":"a1edb69d64485e9c9c9d6e6fb5ea20b2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/SoftReferenceCache.java","type":"file","name":"SoftReferenceCache.java","base_name":"SoftReferenceCache","extension":".java","size":7242,"date":"2019-10-25","sha1":"bab91a7c075a59f392bc3d9c1344c59932bc3802","md5":"139d931f9c39bfb9f1a6ffaccbb2b288","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/SVG12Constants.java","type":"file","name":"SVG12Constants.java","base_name":"SVG12Constants","extension":".java","size":4365,"date":"2019-10-25","sha1":"d4ef7020caf7c7985e54c1a0340d3225050fb527","md5":"4cf92a61f58e2b76e6d8572165bcff99","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":24,"end_line":24},{"email":"vincent.hardy@eng.sun.com","start_line":25,"end_line":25},{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/SVG12CSSConstants.java","type":"file","name":"SVG12CSSConstants.java","base_name":"SVG12CSSConstants","extension":".java","size":2499,"date":"2019-10-25","sha1":"daae2d4b685ded8341817a5c28a11359a3b59a51","md5":"ca8fb08da1971c6970f25dcdf10c6e86","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/SVGConstants.java","type":"file","name":"SVGConstants.java","base_name":"SVGConstants","extension":".java","size":41416,"date":"2019-10-25","sha1":"22de92d9bb51256ab71bd8641465edd0002f5ac8","md5":"c90b19860956af5b2de0b21bc98ccbbc","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26},{"email":"vincent.hardy@eng.sun.com","start_line":27,"end_line":27},{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/SVGFeatureStrings.java","type":"file","name":"SVGFeatureStrings.java","base_name":"SVGFeatureStrings","extension":".java","size":5424,"date":"2019-10-25","sha1":"a0932dc4cb23552b026984fbf901630375b6108b","md5":"6fcf263f851e35f79184f764cdddb739","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/SVGTypes.java","type":"file","name":"SVGTypes.java","base_name":"SVGTypes","extension":".java","size":4792,"date":"2019-10-25","sha1":"dbec332987b70abc7c92f3f30bf283104e24d628","md5":"df4f4d6ffa34f5cb358ffa5b11c84292","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/XBLConstants.java","type":"file","name":"XBLConstants.java","base_name":"XBLConstants","extension":".java","size":2321,"date":"2019-10-25","sha1":"3d7bf8bbf3fa7c00dd0cef38013ec8c78066bdf0","md5":"d658c9d1eb94ca2cfb2f753a3dd1fee6","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/2004/xbl","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/XMLResourceDescriptor.java","type":"file","name":"XMLResourceDescriptor.java","base_name":"XMLResourceDescriptor","extension":".java","size":4448,"date":"2019-10-25","sha1":"9a2a4b5d7add23bc690f327a7e77a9a7420be23e","md5":"4a8e4ec3bddd2cb019e604bc8b5113ae","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/io","type":"directory","name":"io","base_name":"io","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":12,"dirs_count":0,"size_count":33380,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/io/AbstractCharDecoder.java","type":"file","name":"AbstractCharDecoder.java","base_name":"AbstractCharDecoder","extension":".java","size":2883,"date":"2019-10-25","sha1":"025bffb07f4fcf4311ab64ff9d3e9df6494e8067","md5":"7c6514523cbab354afbd216cd7baf67e","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/io/ASCIIDecoder.java","type":"file","name":"ASCIIDecoder.java","base_name":"ASCIIDecoder","extension":".java","size":1740,"date":"2019-10-25","sha1":"c27638415a830c6c9ad07d5d53ae7180c1c1c8bb","md5":"f02fe7509c26a93974185deabfb3c7de","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/io/CharDecoder.java","type":"file","name":"CharDecoder.java","base_name":"CharDecoder","extension":".java","size":1483,"date":"2019-10-25","sha1":"074e9b322d59851e68cbe89008f2c277ba29fe55","md5":"3bdf45f0f7eddff8e62bd9c783d3790a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/io/GenericDecoder.java","type":"file","name":"GenericDecoder.java","base_name":"GenericDecoder","extension":".java","size":2262,"date":"2019-10-25","sha1":"06a9d7fa49267476b943d33991f5efc9fb2f58c2","md5":"7ffd1e65cb6a40b38759fc7d8bee1f0a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/io/ISO_8859_1Decoder.java","type":"file","name":"ISO_8859_1Decoder.java","base_name":"ISO_8859_1Decoder","extension":".java","size":1664,"date":"2019-10-25","sha1":"d609e27de62427adc87e554f46079137bff4eefd","md5":"772e7f12b973cd48ec750b5c711e3195","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/io/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2319,"date":"2019-10-25","sha1":"f05299c378c67b4188b4f2e278bcaf7ab057bd8e","md5":"8b3e2f34a9186df69180ac07f12bc4ab","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/io/NormalizingReader.java","type":"file","name":"NormalizingReader.java","base_name":"NormalizingReader","extension":".java","size":2223,"date":"2019-10-25","sha1":"60a7245830a10e50e43ecb1a570a1b17abda032c","md5":"0d83c5b2fa92aba64837b4220c401b27","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/io/StreamNormalizingReader.java","type":"file","name":"StreamNormalizingReader.java","base_name":"StreamNormalizingReader","extension":".java","size":6322,"date":"2019-10-25","sha1":"81aa9f381e42a3e0674ef4b6328bb86f8ff862bb","md5":"710edc47e99e3ff170d3945298a32de8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/io/StringDecoder.java","type":"file","name":"StringDecoder.java","base_name":"StringDecoder","extension":".java","size":1900,"date":"2019-10-25","sha1":"67d13825d7dfb439e84f838f1b51a98e58f4ca33","md5":"edeccd3427bbd4a5679796a4a53e4c47","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/io/StringNormalizingReader.java","type":"file","name":"StringNormalizingReader.java","base_name":"StringNormalizingReader","extension":".java","size":2856,"date":"2019-10-25","sha1":"47acc1838577d86ea378fb4fa74da4dd7704ea6a","md5":"736a443430340be0cbc311adb063bc0b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/io/UTF16Decoder.java","type":"file","name":"UTF16Decoder.java","base_name":"UTF16Decoder","extension":".java","size":3025,"date":"2019-10-25","sha1":"7cf9471c3f6ad4c0646aca9021a622efb1443b22","md5":"11efa1a98bc4195eb41b3fa9611f2924","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/io/UTF8Decoder.java","type":"file","name":"UTF8Decoder.java","base_name":"UTF8Decoder","extension":".java","size":4703,"date":"2019-10-25","sha1":"cff504eba648bfd94d6174ed75366034f5bbe0d1","md5":"37ccd459841a09ae6f93e0b3bf9086ed","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":10133,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/resources/Messages.java","type":"file","name":"Messages.java","base_name":"Messages","extension":".java","size":2342,"date":"2019-10-25","sha1":"3fdd01bb007bd77f58def73f2fa27fecfdfbc488","md5":"31e76103de071ff323ac5a0fd7d7cb78","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/resources/ResourceFormatException.java","type":"file","name":"ResourceFormatException.java","base_name":"ResourceFormatException","extension":".java","size":2272,"date":"2019-10-25","sha1":"a9a84daeaf1aa2851a6e23289684319a5b8c9faa","md5":"bdcd67cbdd59613029e78b53a0304d87","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/java/org/apache/batik/util/resources/ResourceManager.java","type":"file","name":"ResourceManager.java","base_name":"ResourceManager","extension":".java","size":5519,"date":"2019-10-25","sha1":"e171771ce782e476d9cbf620c135e46e31cc46ad","md5":"ed01097b2772e3f5bdce826cbc3a2669","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":7,"size_count":4023,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":6,"size_count":4023,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":5,"size_count":4023,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":4,"size_count":4023,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/resources/org/apache/batik/util","type":"directory","name":"util","base_name":"util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":3,"size_count":4023,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/resources/org/apache/batik/util/io","type":"directory","name":"io","base_name":"io","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":1221,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/resources/org/apache/batik/util/io/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1221,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/resources/org/apache/batik/util/io/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":1221,"date":"2019-10-25","sha1":"0b97b0047a8620dbe99f9142b301a738256b6c0f","md5":"494e74ba1e71a1e2be9d242778ef598a","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/resources/org/apache/batik/util/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2802,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/resources/org/apache/batik/util/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":1608,"date":"2019-10-25","sha1":"00a7db44e4240012845df26c31d696773aa9e5ca","md5":"67931c132ab0d33f6b0ab2e0abedd1a2","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thierry Kormann","start_line":20,"end_line":21}],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/main/resources/org/apache/batik/util/resources/XMLResourceDescriptor.properties","type":"file","name":"XMLResourceDescriptor.properties","base_name":"XMLResourceDescriptor","extension":".properties","size":1194,"date":"2019-10-25","sha1":"37a86e5a2e0eea492b6d0870e0e6e6387a4cab9e","md5":"d7202d58644b421c9a68559095ee61cb","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thierry Kormann","start_line":18,"end_line":18}],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":26,"dirs_count":10,"size_count":62552,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":8,"dirs_count":4,"size_count":38879,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":8,"dirs_count":3,"size_count":38879,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":8,"dirs_count":2,"size_count":38879,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":8,"dirs_count":1,"size_count":38879,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/java/org/apache/batik/util","type":"directory","name":"util","base_name":"util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":8,"dirs_count":0,"size_count":38879,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/java/org/apache/batik/util/Base64Test.java","type":"file","name":"Base64Test.java","base_name":"Base64Test","extension":".java","size":11239,"date":"2019-10-25","sha1":"a39937235df0459f22312d6c2b4cb4185033c634","md5":"a435e609c209afe624c6c1ceee39566c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/java/org/apache/batik/util/Base64TestCases.java","type":"file","name":"Base64TestCases.java","base_name":"Base64TestCases","extension":".java","size":4764,"date":"2019-10-25","sha1":"4817671c569bed1c7341049bd57de70df0e7aa08","md5":"b8bd68655736938b6965e5d158f5ff32","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/java/org/apache/batik/util/ParsedURLDataTest.java","type":"file","name":"ParsedURLDataTest.java","base_name":"ParsedURLDataTest","extension":".java","size":4625,"date":"2019-10-25","sha1":"00f56eb25e663d90363dac509fca619dc8233f4f","md5":"c680c9fbe784d036d321b3b866a59887","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/java/org/apache/batik/util/ParsedURLTest.java","type":"file","name":"ParsedURLTest.java","base_name":"ParsedURLTest","extension":".java","size":4333,"date":"2019-10-25","sha1":"c28f1b6b832a7062ba55d090857a5e5523cb6b4a","md5":"a54020a3b3304ebd0e1a25419853f168","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":32,"end_line":32}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/java/org/apache/batik/util/RunnableQueueTest.java","type":"file","name":"RunnableQueueTest.java","base_name":"RunnableQueueTest","extension":".java","size":7106,"date":"2019-10-25","sha1":"7985fe06af29fcfa2df00f40b48dca21b251f5fc","md5":"ec3dd6da807a3e2f555863784e6a40e0","mime_type":"text/x-c","file_type":"C source, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/java/org/apache/batik/util/TestMessages.java","type":"file","name":"TestMessages.java","base_name":"TestMessages","extension":".java","size":2296,"date":"2019-10-25","sha1":"8bda3b972fc720a0cdf9fed23b52663ae6e2bd2a","md5":"83d43cd8f871b965d085ae0d1c3c945d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/java/org/apache/batik/util/ThreadPounder.java","type":"file","name":"ThreadPounder.java","base_name":"ThreadPounder","extension":".java","size":3469,"date":"2019-10-25","sha1":"9eab5e001d2391e8812bb4516d725a31d2a74c93","md5":"697e442484450b69bd86750a9bfe405a","mime_type":"text/x-c","file_type":"C source, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/java/org/apache/batik/util/UtilitiesTestSuite.java","type":"file","name":"UtilitiesTestSuite.java","base_name":"UtilitiesTestSuite","extension":".java","size":1047,"date":"2019-10-25","sha1":"04f3bc0ce123fae3636ea27e955cc60fafaf6d03","md5":"84a379ac746866aa6503dafe40e2f780","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":4,"size_count":23673,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":3,"size_count":23673,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":2,"size_count":23673,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":1,"size_count":23673,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util","type":"directory","name":"util","base_name":"util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":0,"size_count":23673,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/fourByte","type":"file","name":"fourByte","base_name":"fourByte","extension":"","size":4,"date":"2019-10-25","sha1":"fb2f85c88567f3c8ce9b799c7c54642d0c7b41f6","md5":"cb08ca4a7bb5f9683c19133a84872ca7","mime_type":"text/plain","file_type":"ASCII text, with no line terminators","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/fourByte.64","type":"file","name":"fourByte.64","base_name":"fourByte","extension":".64","size":9,"date":"2019-10-25","sha1":"8eabe67b9799a06481e074e80efb1d7814a3d541","md5":"1bbbc5a8cb6ba922dd02d375bf799fd6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/large","type":"file","name":"large","base_name":"large","extension":"","size":18824,"date":"2019-10-25","sha1":"a247ed2ddb48e0cda2641def722a5638361ce01a","md5":"6e51fcf7298c771b48a7e80c9f072823","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"tomer.red\", last modified: Fri Nov 01 19:49:59 1996, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/medium","type":"file","name":"medium","base_name":"medium","extension":"","size":1193,"date":"2019-10-25","sha1":"dd5a683fc544d086dcfb568130811f58666711f7","md5":"234fdc8d4d492cf9d092c5362312914c","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"medium\", last modified: Mon Jul 02 21:57:43 2001, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/medium.64","type":"file","name":"medium.64","base_name":"medium","extension":".64","size":1615,"date":"2019-10-25","sha1":"69e90801b9b9e7fd3b2ac8d87330e0464cd427ef","md5":"bb1081d4145787232e5f799d2dd405e9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/medium.pc.64","type":"file","name":"medium.pc.64","base_name":"medium.pc","extension":".64","size":1615,"date":"2019-10-25","sha1":"69e90801b9b9e7fd3b2ac8d87330e0464cd427ef","md5":"bb1081d4145787232e5f799d2dd405e9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/oneByte","type":"file","name":"oneByte","base_name":"oneByte","extension":"","size":1,"date":"2019-10-25","sha1":"6dcd4ce23d88e2ee9568ba546c007c63d9131c1b","md5":"7fc56270e7a70fa81a5935b72eacbe29","mime_type":"application/octet-stream","file_type":"very short file (no magic)","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/oneByte.64","type":"file","name":"oneByte.64","base_name":"oneByte","extension":".64","size":5,"date":"2019-10-25","sha1":"aee6f7296a9259b0096080682abdd8d91c9a2c27","md5":"1c4ae1b1f1f0e66b7e8f3f8d15bbc7cc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/small","type":"file","name":"small","base_name":"small","extension":"","size":154,"date":"2019-10-25","sha1":"f92a0787b9f2497fd03b7d02efd0368ab22d604f","md5":"67889073ff7c3b84ffa9c7020373efb4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":2,"end_line":2}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/small.64","type":"file","name":"small.64","base_name":"small","extension":".64","size":211,"date":"2019-10-25","sha1":"6f2c52e44e639d1ce131404d7f92304650f5e737","md5":"f029b7067f6488bf0f6814acf5a8beab","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/tenByte","type":"file","name":"tenByte","base_name":"tenByte","extension":"","size":10,"date":"2019-10-25","sha1":"e2c43ba48d709793eb69a855418beef99b2e4ee5","md5":"e6c4dd89af746248a2b89e3970a3e415","mime_type":"text/plain","file_type":"ASCII text, with no line terminators","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/tenByte.64","type":"file","name":"tenByte.64","base_name":"tenByte","extension":".64","size":17,"date":"2019-10-25","sha1":"d84c9f91dfa1d9f5dceda1e4a6550a0c53616571","md5":"a5580477e89c1ebc6b5b174c447b57bb","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/threeByte","type":"file","name":"threeByte","base_name":"threeByte","extension":"","size":3,"date":"2019-10-25","sha1":"3c01bdbb26f358bab27f267924aa2c9a03fcfdb8","md5":"902fbdd2b1df0c4f70b4a5d23525e932","mime_type":"text/plain","file_type":"ASCII text, with no line terminators","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/threeByte.64","type":"file","name":"threeByte.64","base_name":"threeByte","extension":".64","size":5,"date":"2019-10-25","sha1":"2f2c63237947760001e55071d995c960944ec924","md5":"b00085061baeb92fd89154f946065e4d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/twoByte","type":"file","name":"twoByte","base_name":"twoByte","extension":"","size":2,"date":"2019-10-25","sha1":"06d945942aa26a61be18c3e22bf19bbca8dd2b5d","md5":"b86fc6b051f63d73de262d4c34e3a0a9","mime_type":"text/plain","file_type":"ASCII text, with no line terminators","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/twoByte.64","type":"file","name":"twoByte.64","base_name":"twoByte","extension":".64","size":5,"date":"2019-10-25","sha1":"631a9b261e352df61a16a219dc49da3296b778ab","md5":"6b11cd9b746827bab30760538f396672","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/zeroByte","type":"file","name":"zeroByte","base_name":"zeroByte","extension":"","size":0,"date":"2019-10-25","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-util/src/test/resources/org/apache/batik/util/zeroByte.64","type":"file","name":"zeroByte.64","base_name":"zeroByte","extension":".64","size":0,"date":"2019-10-25","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml","type":"directory","name":"batik-xml","base_name":"batik-xml","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":8,"dirs_count":17,"size_count":127798,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/pom.xml","type":"file","name":"pom.xml","base_name":"pom","extension":".xml","size":1946,"date":"2019-10-25","sha1":"e1745b508d085b1792dee8dc3fa402d6e742c889","md5":"48803450ea5807f4ca7f5469e12fc756","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"maven","namespace":"org.apache.xmlgraphics","name":"batik-xml","version":"1.12","qualifiers":{},"subpath":null,"primary_language":"Java","description":"org.apache.xmlgraphics:batik-xml\nBatik XML utilities","release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml","dependencies":[{"purl":"pkg:maven/org.apache.xmlgraphics/batik-util","requirement":"1.12","scope":"compile","is_runtime":true,"is_optional":false,"is_resolved":false}],"contains_source_code":null,"source_packages":["pkg:maven/org.apache.xmlgraphics/batik-xml@1.12?classifier=sources"],"purl":"pkg:maven/org.apache.xmlgraphics/batik-xml@1.12","repository_homepage_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-xml/1.12/","repository_download_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-xml/1.12/batik-xml-1.12.jar","api_data_url":"https://repo1.maven.org/maven2/org/apache/xmlgraphics/batik-xml/1.12/batik-xml-1.12.pom"}],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src","type":"directory","name":"src","base_name":"src","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":16,"size_count":125852,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main","type":"directory","name":"main","base_name":"main","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":12,"size_count":125852,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":4,"size_count":124234,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/java/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":3,"size_count":124234,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/java/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":2,"size_count":124234,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/java/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":1,"size_count":124234,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/java/org/apache/batik/xml","type":"directory","name":"xml","base_name":"xml","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":0,"size_count":124234,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/java/org/apache/batik/xml/LexicalUnits.java","type":"file","name":"LexicalUnits.java","base_name":"LexicalUnits","extension":".java","size":7049,"date":"2019-10-25","sha1":"609cc05b7cf48a0ca11a358b3f39cc0e83aa3b60","md5":"83a0ee59782cd44ef9715fc6f1d6ab26","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/java/org/apache/batik/xml/XMLCharacters.java","type":"file","name":"XMLCharacters.java","base_name":"XMLCharacters","extension":".java","size":35775,"date":"2019-10-25","sha1":"9563bbe9e129ceeb36469e8a66a4ae172a17e822","md5":"45f59a71f07efcb28957eec612ac4c3b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/java/org/apache/batik/xml/XMLException.java","type":"file","name":"XMLException.java","base_name":"XMLException","extension":".java","size":4541,"date":"2019-10-25","sha1":"ecc56153379196ab2b69c40d53b6cba44fb9cd01","md5":"04ad5408cc8744dd81ec3e1eb56a23ab","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/java/org/apache/batik/xml/XMLScanner.java","type":"file","name":"XMLScanner.java","base_name":"XMLScanner","extension":".java","size":60830,"date":"2019-10-25","sha1":"bc1a1166affd2a54a59533eef8011908ed0760cf","md5":"991bdd52e86ccba1ce6efe2bf17348bf","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":36,"end_line":36}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/java/org/apache/batik/xml/XMLStreamNormalizingReader.java","type":"file","name":"XMLStreamNormalizingReader.java","base_name":"XMLStreamNormalizingReader","extension":".java","size":4036,"date":"2019-10-25","sha1":"6882bce64588ef723fb684716605d18944d320c8","md5":"ba25a4e60525ea7ab415f55e61eea412","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":33,"end_line":33}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/java/org/apache/batik/xml/XMLUtilities.java","type":"file","name":"XMLUtilities.java","base_name":"XMLUtilities","extension":".java","size":12003,"date":"2019-10-25","sha1":"4dfa8e4847dee8e6e2589aea498434ef69ac87d7","md5":"538b65a375f7405ce65cc1ced8a6694c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":6,"size_count":1618,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":5,"size_count":1618,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":4,"size_count":1618,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":3,"size_count":1618,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/resources/org/apache/batik/xml","type":"directory","name":"xml","base_name":"xml","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":2,"size_count":1618,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/resources/org/apache/batik/xml/scanner","type":"directory","name":"scanner","base_name":"scanner","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":1618,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/resources/org/apache/batik/xml/scanner/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1618,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/main/resources/org/apache/batik/xml/scanner/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":1618,"date":"2019-10-25","sha1":"96b28259ec679192c74b3ab40ad867501b41abe2","md5":"069063f4737b21ce2565f5d9cc6d79f9","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"stephane@hillion.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":2,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/test/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/batik-xml/src/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib","type":"directory","name":"contrib","base_name":"contrib","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":20,"dirs_count":17,"size_count":227328,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/charts","type":"directory","name":"charts","base_name":"charts","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":9,"dirs_count":2,"size_count":32215,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/charts/convert.bat","type":"file","name":"convert.bat","base_name":"convert","extension":".bat","size":1892,"date":"2019-10-25","sha1":"58cde9e403627ff0d03ec7aed94addcd4a6868c8","md5":"c0e8f97a8cf24c29bd5e9c85363da408","mime_type":"text/x-msdos-batch","file_type":"DOS batch file, ASCII text, with very long lines","programming_language":"Batchfile","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/charts/convert.sh","type":"file","name":"convert.sh","base_name":"convert","extension":".sh","size":2595,"date":"2019-10-25","sha1":"7ea664fafc98315b348ca71a37e94284c90e22a1","md5":"46ed9f45551b60dbd47a64c0e1a835ce","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable, with very long lines","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/charts/lcp.bat","type":"file","name":"lcp.bat","base_name":"lcp","extension":".bat","size":1090,"date":"2019-10-25","sha1":"5d505f655a9444c26b28d8ea0ca3f7b5a920bf70","md5":"f1ded33d3b7d0f6a339e0db9839afda5","mime_type":"text/x-msdos-batch","file_type":"DOS batch file, ASCII text","programming_language":"Batchfile","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/charts/README","type":"file","name":"README","base_name":"README","extension":"","size":569,"date":"2019-10-25","sha1":"42053531c467a7e5fbbe437d530452ecdda1714c","md5":"cd3119904ced7fe3e891405da9bf1275","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Vincent Hardy","start_line":2,"end_line":3},{"value":"John Morrison (john.r.morrison@ntlworld.com)","start_line":10,"end_line":10}],"packages":[],"emails":[{"email":"john.r.morrison@ntlworld.com","start_line":10,"end_line":10}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/charts/xml","type":"directory","name":"xml","base_name":"xml","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":4233,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/charts/xml/data.xml","type":"file","name":"data.xml","base_name":"data","extension":".xml","size":4233,"date":"2019-10-25","sha1":"8709b484347d916ae1b506312509d185e6e829ef","md5":"6bfa212440b891baab2e1ab5718027b8","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/charts/xsl","type":"directory","name":"xsl","base_name":"xsl","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":21836,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/charts/xsl/bar.xsl","type":"file","name":"bar.xsl","base_name":"bar","extension":".xsl","size":6288,"date":"2019-10-25","sha1":"ed06e1f97628aca6e05a4c7f7fec7a852b095c1c","md5":"796fd8be594dc938194999a7334b42b4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/charts/xsl/column.xsl","type":"file","name":"column.xsl","base_name":"column","extension":".xsl","size":5800,"date":"2019-10-25","sha1":"d1e532bf4a9c4ae1785ca7765d6b5dae340bca7c","md5":"896116e6c5cfe92f20d3c2ac7aae9d52","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/charts/xsl/line.xsl","type":"file","name":"line.xsl","base_name":"line","extension":".xsl","size":5849,"date":"2019-10-25","sha1":"9eca6f66ad8e1c2a04d04240a7e6a1939ecb3565","md5":"e19ef0259e5dbeb75d884f52a22160e4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/charts/xsl/pie.xsl","type":"file","name":"pie.xsl","base_name":"pie","extension":".xsl","size":3899,"date":"2019-10-25","sha1":"1e61da2cbc0f50ba5813e4da6ae0362a2faf7e86","md5":"5d258edf90bbc1d161c2ec8dd714d7b2","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/fonts","type":"directory","name":"fonts","base_name":"fonts","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":2,"size_count":146637,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/fonts/gladiator","type":"directory","name":"gladiator","base_name":"gladiator","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":1,"size_count":146637,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/fonts/gladiator/README","type":"file","name":"README","base_name":"README","extension":"","size":334,"date":"2019-10-25","sha1":"d6ec10347583454d9b8364743b93ea993afc0688","md5":"a6af6f1417aca31faafe3241dfcc36fa","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Vincent Hardy","start_line":2,"end_line":3}],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/fonts/gladiator/svg","type":"directory","name":"svg","base_name":"svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":146303,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/fonts/gladiator/svg/glb12.svg","type":"file","name":"glb12.svg","base_name":"glb12","extension":".svg","size":146303,"date":"2019-10-25","sha1":"7d2b78f075db525046a4650a3b0e3d6172507fe8","md5":"5aaf0acb3ebe765383b0d07a1399fae8","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bert@w3.org","start_line":25,"end_line":27},{"value":"vhardy@apache.org","start_line":25,"end_line":27}],"packages":[],"emails":[{"email":"bert@w3.org","start_line":25,"end_line":25},{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/jsvg","type":"directory","name":"jsvg","base_name":"jsvg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":2743,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/jsvg/JSVG.java","type":"file","name":"JSVG.java","base_name":"JSVG","extension":".java","size":2743,"date":"2019-10-25","sha1":"953f19817bf22b777ca9215886507fd7858a2fe4","md5":"af4fd47bd047e4344127a267b289a635","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":38,"end_line":38}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/rasterizertask","type":"directory","name":"rasterizertask","base_name":"rasterizertask","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":7,"size_count":39143,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/rasterizertask/build.bat","type":"file","name":"build.bat","base_name":"build","extension":".bat","size":2027,"date":"2019-10-25","sha1":"dcd334099c93281ba702aa4c7001405507bd052c","md5":"43948c8acbf74238d71634438d47b3de","mime_type":"text/x-msdos-batch","file_type":"DOS batch file, ASCII text","programming_language":"Batchfile","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/rasterizertask/build.sh","type":"file","name":"build.sh","base_name":"build","extension":".sh","size":2374,"date":"2019-10-25","sha1":"da0ef002be028986e4a3ded3596868728132f843","md5":"f95b84750dc7ad6b9c12edf039473984","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/rasterizertask/build.xml","type":"file","name":"build.xml","base_name":"build","extension":".xml","size":4417,"date":"2019-10-25","sha1":"2958ac6f2f775ace611937d1d9bac21b36c0f167","md5":"b5b02afe697489d0e72798c467420518","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[{"value":"Copyright (c) 2001-2002 Apache Software Foundation","start_line":92,"end_line":95}],"holders":[{"value":"Apache Software Foundation","start_line":92,"end_line":95}],"authors":[{"value":"Henri Ruini","start_line":27,"end_line":27}],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/rasterizertask/README","type":"file","name":"README","base_name":"README","extension":"","size":949,"date":"2019-10-25","sha1":"3ce0beb662186c47767bf575b3e8ea44d16cc847","md5":"7835f4690e1a2230a9fe1cf35850723b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Henri Ruini","start_line":2,"end_line":3}],"packages":[],"emails":[{"email":"ruini@iki.fi","start_line":11,"end_line":11}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/rasterizertask/sources","type":"directory","name":"sources","base_name":"sources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":6,"size_count":29376,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/rasterizertask/sources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":5,"size_count":29376,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/rasterizertask/sources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":4,"size_count":29376,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/rasterizertask/sources/org/apache/tools","type":"directory","name":"tools","base_name":"tools","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":3,"size_count":29376,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/rasterizertask/sources/org/apache/tools/ant","type":"directory","name":"ant","base_name":"ant","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":2,"size_count":29376,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/rasterizertask/sources/org/apache/tools/ant/taskdefs","type":"directory","name":"taskdefs","base_name":"taskdefs","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":1,"size_count":29376,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/rasterizertask/sources/org/apache/tools/ant/taskdefs/optional","type":"directory","name":"optional","base_name":"optional","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":29376,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/rasterizertask/sources/org/apache/tools/ant/taskdefs/optional/RasterizerTask.java","type":"file","name":"RasterizerTask.java","base_name":"RasterizerTask","extension":".java","size":25499,"date":"2019-10-25","sha1":"0f7db6b73c0922603898961e5eedcf2bbfe105cf","md5":"85b966ecca771ebb30e4e38469cd67c5","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"ruini@iki.fi","start_line":61,"end_line":61}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/rasterizertask/sources/org/apache/tools/ant/taskdefs/optional/RasterizerTaskSVGConverterController.java","type":"file","name":"RasterizerTaskSVGConverterController.java","base_name":"RasterizerTaskSVGConverterController","extension":".java","size":3877,"date":"2019-10-25","sha1":"a70aec079b0e49e198ccd0ffa8ad43ba57caa945","md5":"3b0c07839c3bf6dc80ededc3b59f0fd7","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"ruini@iki.fi","start_line":49,"end_line":49}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/scroll","type":"directory","name":"scroll","base_name":"scroll","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":2992,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/scroll/ScrollExample.java","type":"file","name":"ScrollExample.java","base_name":"ScrollExample","extension":".java","size":2992,"date":"2019-10-25","sha1":"f27162ef91864d31ff417a8330c7f684ebac36ad","md5":"83f97903ca109e6f4d168bb14c294623","mime_type":"text/x-c","file_type":"C source, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Zach DelProposto","start_line":36,"end_line":36}],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/tiledTranscoder","type":"directory","name":"tiledTranscoder","base_name":"tiledTranscoder","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":3598,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/contrib/tiledTranscoder/TiledImageTranscoder.java","type":"file","name":"TiledImageTranscoder.java","base_name":"TiledImageTranscoder","extension":".java","size":3598,"date":"2019-10-25","sha1":"c207a61bccfe6dedc3fcd6412e951d54e5a306fc","md5":"896496afbaf78aa26d2de92b96bcb32b","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources","type":"directory","name":"documentation-sources","base_name":"documentation-sources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":94,"dirs_count":14,"size_count":4684582,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/sitemap.xmap","type":"file","name":"sitemap.xmap","base_name":"sitemap","extension":".xmap","size":1294,"date":"2019-10-25","sha1":"c38840f882fd657347a966c80a9b4e0aec844657","md5":"51434c4de3dbe4221b15cf2c150c1f00","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://apache.org/cocoon/sitemap/1.0","start_line":23,"end_line":23}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/skinconf.xml","type":"file","name":"skinconf.xml","base_name":"skinconf","extension":".xml","size":28490,"date":"2019-10-25","sha1":"ac3d9f21b303ab74db09ebc243dcaa01fa251b76","md5":"e9ce7ea22904e360d76969b6b1cedca4","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}},{"key":"unknown","score":11.0,"name":"Unknown license detected but not recognized","short_name":"unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:unknown","spdx_license_key":null,"spdx_url":"","start_line":105,"end_line":105,"matched_rule":{"identifier":"lead-in_unknown_28.RULE","license_expression":"unknown","licenses":["unknown"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":2,"matched_length":2,"match_coverage":100.0,"rule_relevance":11}},{"key":"apache-2.0","score":50.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":105,"end_line":105,"matched_rule":{"identifier":"apache-2.0_3.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":4,"matched_length":4,"match_coverage":100.0,"rule_relevance":50.0}},{"key":"apache-2.0","score":27.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":106,"end_line":106,"matched_rule":{"identifier":"apache.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":5,"matched_length":5,"match_coverage":100.0,"rule_relevance":27}}],"license_expressions":["apache-2.0","unknown","apache-2.0","apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Apache FOP http://xmlgraphics.apache.org/fop","start_line":780,"end_line":782}],"packages":[],"emails":[{"email":"webmaster@foo.com","start_line":147,"end_line":147}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11},{"url":"http://forrest.apache.org/dtd/skinconfig-v08-2.dtd","start_line":28,"end_line":28},{"url":"http://xmlgraphics.apache.org/batik/","start_line":77,"end_line":77},{"url":"http://xmlgraphics.apache.org/","start_line":90,"end_line":90},{"url":"http://www.apache.org/licenses/","start_line":106,"end_line":106},{"url":"http://www.apache.org/","start_line":126,"end_line":126},{"url":"http://xml.apache.org/","start_line":127,"end_line":127},{"url":"http://forrest.apache.org/","start_line":763,"end_line":763},{"url":"http://www.apachecon.com/","start_line":770,"end_line":770},{"url":"http://xmlgraphics.apache.org/fop/","start_line":781,"end_line":781}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/classes","type":"directory","name":"classes","base_name":"classes","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":2920,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/classes/CatalogManager.properties","type":"file","name":"CatalogManager.properties","base_name":"CatalogManager","extension":".properties","size":2920,"date":"2019-10-25","sha1":"2173700d0ae78a67bde94ddbdc5e4d3b809b2cc1","md5":"56b702e924ce84a1ad6f12787c3a283a","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":1,"end_line":14,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":8,"end_line":8},{"url":"http://forrest.apache.org/docs/your-project.html","start_line":25,"end_line":25},{"url":"http://forrest.apache.org/docs/validation.html","start_line":26,"end_line":26}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/conf","type":"directory","name":"conf","base_name":"conf","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":13439,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/conf/cli.xconf","type":"file","name":"cli.xconf","base_name":"cli","extension":".xconf","size":13439,"date":"2019-10-25","sha1":"fdb3604b8ba981d0468ec9280126deb41b7a992d","md5":"59ac247b1889c527d2c39a43e2d22cd0","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"dev@cocoon.apache.org","start_line":209,"end_line":209}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11},{"url":"http://cocoon.apache.org/2.1/userdocs/offline/","start_line":54,"end_line":54},{"url":"http://wiki.apache.org/cocoon/CommandLine","start_line":55,"end_line":55}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content","type":"directory","name":"content","base_name":"content","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":55,"dirs_count":6,"size_count":2906077,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/.htaccess","type":"file","name":".htaccess","base_name":".htaccess","extension":"","size":1871,"date":"2019-10-25","sha1":"631b40897b9b0543428a3edf1ad551fa080b8d1f","md5":"1565741d6c9a8d0debd57abb5e1a6fa9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://xmlgraphics.apache.org/batik/faq.html","start_line":2,"end_line":2},{"url":"http://xmlgraphics.apache.org/batik/demo.html","start_line":3,"end_line":3},{"url":"http://xmlgraphics.apache.org/batik/tools/","start_line":4,"end_line":4},{"url":"http://xmlgraphics.apache.org/batik/tools/browser.html","start_line":5,"end_line":5},{"url":"http://xmlgraphics.apache.org/batik/tools/rasterizer.html","start_line":6,"end_line":6},{"url":"http://xmlgraphics.apache.org/batik/tools/font-converter.html","start_line":7,"end_line":7},{"url":"http://xmlgraphics.apache.org/batik/tools/pretty-printer.html","start_line":8,"end_line":8},{"url":"http://xmlgraphics.apache.org/batik/using/architecture.html","start_line":9,"end_line":9},{"url":"http://xmlgraphics.apache.org/batik/using/svg-generator.html","start_line":10,"end_line":10},{"url":"http://xmlgraphics.apache.org/batik/using/dom-api.html","start_line":11,"end_line":11},{"url":"http://xmlgraphics.apache.org/batik/using/swing.html","start_line":12,"end_line":12},{"url":"http://xmlgraphics.apache.org/batik/using/transcoder.html","start_line":13,"end_line":13},{"url":"http://xmlgraphics.apache.org/batik/using/scripting/ecmascript.html","start_line":14,"end_line":14},{"url":"http://xmlgraphics.apache.org/batik/status.html","start_line":15,"end_line":15},{"url":"http://xmlgraphics.apache.org/batik/using/scripting/java.html","start_line":16,"end_line":16},{"url":"http://xmlgraphics.apache.org/batik/using/scripting/security.html","start_line":17,"end_line":17},{"url":"http://xmlgraphics.apache.org/batik/using/extending.html","start_line":18,"end_line":18},{"url":"http://xmlgraphics.apache.org/batik/dev/test.html","start_line":19,"end_line":19},{"url":"http://xmlgraphics.apache.org/batik/contributors.html","start_line":20,"end_line":20},{"url":"http://xmlgraphics.apache.org/batik/mailing-lists.html","start_line":21,"end_line":21},{"url":"http://xmlgraphics.apache.org/batik/download.cgi","start_line":22,"end_line":22}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/doap.rdf","type":"file","name":"doap.rdf","base_name":"doap","extension":".rdf","size":3461,"date":"2019-10-25","sha1":"c6d053ea38b5678d6a67787422683d5ddacaad0b","md5":"0f582d2e9cac2d35a8ef7c4b92e9bc5e","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 2006-2011 The Apache Software Foundation","start_line":11,"end_line":12}],"holders":[{"value":"The Apache Software Foundation","start_line":11,"end_line":12}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://usefulinc.com/ns/doap","start_line":4,"end_line":4},{"url":"http://projects.apache.org/ns/asfext","start_line":6,"end_line":6},{"url":"http://xmlns.com/foaf/0.1/","start_line":7,"end_line":7},{"url":"http://xmlgraphics.apache.org/batik/","start_line":16,"end_line":16},{"url":"http://usefulinc.com/doap/licenses/asl20","start_line":18,"end_line":18},{"url":"http://xmlgraphics.apache.org/","start_line":21,"end_line":21},{"url":"http://issues.apache.org/bugzilla/buglist.cgi?query_format=specific&order=relevance+desc&bug_status=__open__&product=Batik&content","start_line":24,"end_line":24},{"url":"http://xmlgraphics.apache.org/batik/mailing-list.html","start_line":25,"end_line":25},{"url":"http://xmlgraphics.apache.org/download.cgi","start_line":26,"end_line":26},{"url":"http://projects.apache.org/category/xml","start_line":28,"end_line":28},{"url":"http://projects.apache.org/category/graphics","start_line":29,"end_line":29},{"url":"http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk","start_line":53,"end_line":53},{"url":"http://svn.apache.org/viewcvs.cgi/xmlgraphics/batik/","start_line":54,"end_line":54}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/download.cgi","type":"file","name":"download.cgi","base_name":"download","extension":".cgi","size":1333,"date":"2019-10-25","sha1":"84df99c26e711607e1e0540f7d1c92c8df4383ee","md5":"0b31a183e3ad11cef52ee4513afd5d2c","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11},{"url":"http://www.apache.org/~bodewig/mirror.html","start_line":26,"end_line":26},{"url":"http://www.apache.org/dyn/mirrors","start_line":27,"end_line":27},{"url":"http://www.apache.org/dyn/mirrors/mirrors.cgi","start_line":28,"end_line":28}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo","type":"directory","name":"demo","base_name":"demo","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":17,"dirs_count":0,"size_count":2315643,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/AppletDemo.java","type":"file","name":"AppletDemo.java","base_name":"AppletDemo","extension":".java","size":5361,"date":"2019-10-25","sha1":"d3213eea030c812270ec7ecfd669e3b1d153068c","md5":"abe64d57a7435de1aa24dee5619ca6dc","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/barChart.svg","type":"file","name":"barChart.svg","base_name":"barChart","extension":".svg","size":5999,"date":"2019-10-25","sha1":"5f312fd33997ca826800a5f75aa7442119e6d241","md5":"dbd85c418788484c7a40afa3fc396638","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":28},{"value":"neeme.praks@one.lv","start_line":26,"end_line":28}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26},{"email":"neeme.praks@one.lv","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-awt-util.jar","type":"file","name":"batik-awt-util.jar","base_name":"batik-awt-util","extension":".jar","size":391875,"date":"2019-10-25","sha1":"311239e8a14ab844093c08d420a88b66f14c6b8d","md5":"c50c2f270a6bfba2f6082192909962df","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-awt-util.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-bridge.jar","type":"file","name":"batik-bridge.jar","base_name":"batik-bridge","extension":".jar","size":367923,"date":"2019-10-25","sha1":"116a1fb991ceeb581786fcb7731673cfa035fe87","md5":"80450e6237ef73014d5ecf971f5f73e8","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-bridge.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-css.jar","type":"file","name":"batik-css.jar","base_name":"batik-css","extension":".jar","size":241098,"date":"2019-10-25","sha1":"b0389f4495f3e6359f309045ed8f2ec7211d6c82","md5":"8c09bed435e4e8952f36d85f69c30104","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-css.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-dom.jar","type":"file","name":"batik-dom.jar","base_name":"batik-dom","extension":".jar","size":129611,"date":"2019-10-25","sha1":"b252a58a8c15a40ca7944eb3ab8574e89d4fd781","md5":"c4798111a081f45de6e0d9dfbbf7f132","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-dom.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-ext.jar","type":"file","name":"batik-ext.jar","base_name":"batik-ext","extension":".jar","size":76671,"date":"2019-10-25","sha1":"d60493fbe14b4cbb15421933d287b9c5c37de17d","md5":"af4e88872a508244f8d78abc048f441a","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-ext.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-gvt.jar","type":"file","name":"batik-gvt.jar","base_name":"batik-gvt","extension":".jar","size":174560,"date":"2019-10-25","sha1":"8caf99bacf74fd416a97dd227468b74de21dacc0","md5":"11aa75a16598daa250c4d3d34df95fa4","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-gvt.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-parser.jar","type":"file","name":"batik-parser.jar","base_name":"batik-parser","extension":".jar","size":38864,"date":"2019-10-25","sha1":"e1faa47343154780be2141dc8e0fc25c0778df30","md5":"5b215e468246fa397a9b1d7549bb0fa9","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-parser.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-script.jar","type":"file","name":"batik-script.jar","base_name":"batik-script","extension":".jar","size":50212,"date":"2019-10-25","sha1":"89ead6c49292973d5e2d8ea7fca4dabc10dfaa27","md5":"9cc86a12a3cd7cd376321bed7b542ef7","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-script.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-svg-dom.jar","type":"file","name":"batik-svg-dom.jar","base_name":"batik-svg-dom","extension":".jar","size":454798,"date":"2019-10-25","sha1":"dd1f3aea5f2781fa46cf7533a6da84f79cb89f16","md5":"6fc5dabd84a8778289ac99e382aff248","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-svg-dom.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-swing.jar","type":"file","name":"batik-swing.jar","base_name":"batik-swing","extension":".jar","size":149007,"date":"2019-10-25","sha1":"7b41cca0dd618d0bed6b9888553ffa7f5039e0cc","md5":"9f86850c2078bd779d54c522e3b59e61","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-swing.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-util.jar","type":"file","name":"batik-util.jar","base_name":"batik-util","extension":".jar","size":83211,"date":"2019-10-25","sha1":"3d589d897ab1c37e9618e7176b77c1da73d1ef4b","md5":"57dda304aa46f2aed325148db9b19de3","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-util.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-xml.jar","type":"file","name":"batik-xml.jar","base_name":"batik-xml","extension":".jar","size":21076,"date":"2019-10-25","sha1":"d418db95eadb9d9bd23e582871b3d24afa2141d3","md5":"ed66953954a87afc40ea1f12de7cb207","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/batik-xml.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/demo.html","type":"file","name":"demo.html","base_name":"demo","extension":".html","size":2117,"date":"2019-10-25","sha1":"54a8f644098b6aaa5c31acb107fa732bf2fcabad","md5":"7dad53f73e68c86144b02ba88f9444bb","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/Makefile","type":"file","name":"Makefile","base_name":"Makefile","extension":"","size":278,"date":"2019-10-25","sha1":"6ec7c130292971ed160c872cca11b9319cd95bd1","md5":"c07ae20e577788c972931dc8d32a0e7e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/xml-apis-dom3.jar","type":"file","name":"xml-apis-dom3.jar","base_name":"xml-apis-dom3","extension":".jar","size":122982,"date":"2019-10-25","sha1":"0b029684586fe54a2ee0d302b136d665d70fd527","md5":"135426ec5e366d74dd3d8d42d3b9e8b8","mime_type":"application/java-archive","file_type":"Java archive data (JAR)","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/demo/xml-apis-dom3.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs","type":"directory","name":"xdocs","base_name":"xdocs","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":4,"size_count":583769,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/contributors.xml","type":"file","name":"contributors.xml","base_name":"contributors","extension":".xml","size":17429,"date":"2019-10-25","sha1":"6fdda0a30c7d63b65fdd64c48df7d23a02efc13f","md5":"183037d3f7423dd6285b9e6de2090cec","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"stephane@hillion.org","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":23,"end_line":23},{"email":"Thomas.DeWeese@Kodak.com","start_line":51,"end_line":51},{"email":"cam@mcc.id.au","start_line":66,"end_line":66},{"email":"helder.magalhaes@gmail.com","start_line":90,"end_line":90},{"email":"bill.haneman@ireland.sun.com","start_line":108,"end_line":108},{"email":"vincent.hardy@eng.sun.com","start_line":125,"end_line":125},{"email":"shillion@ilog.fr","start_line":138,"end_line":138},{"email":"dean.jackson@cmis.csiro.au","start_line":149,"end_line":149},{"email":"cjolif@ilog.fr","start_line":161,"end_line":161},{"email":"tkormann@ilog.fr","start_line":174,"end_line":174},{"email":"nicolas.socheleau@bitflash.com","start_line":187,"end_line":187},{"email":"tissandi@ilog.fr","start_line":198,"end_line":198},{"email":"bella.robinson@cmis.csiro.au","start_line":217,"end_line":217},{"email":"James.Davidson@eng.sun.com","start_line":228,"end_line":228},{"email":"stefano@apache.org","start_line":229,"end_line":229},{"email":"andjelkovic.ivan@gmail.com","start_line":242,"end_line":242},{"email":"carnold@houston.rr.com","start_line":247,"end_line":247},{"email":"r_diblasi@hotmail.com","start_line":251,"end_line":251},{"email":"archie@dellroad.org","start_line":256,"end_line":256},{"email":"Paul_Evenblij@nl.compuware.com","start_line":260,"end_line":260},{"email":"pier.fumagalli@eng.sun.com","start_line":266,"end_line":266},{"email":"herve.girod@club-internet.fr","start_line":271,"end_line":271},{"email":"Christophe.Held@sophia.inria.fr","start_line":276,"end_line":276},{"email":"tonny@kiyut.com","start_line":281,"end_line":281},{"email":"webmaestro@mac.com","start_line":285,"end_line":285},{"email":"keiron@aftexsw.com","start_line":289,"end_line":289},{"email":"jeremias@apache.org","start_line":295,"end_line":295},{"email":"john.morrison@uk.experian.com","start_line":300,"end_line":300},{"email":"neumann@karto.baug.ethz.ch","start_line":305,"end_line":305},{"email":"bert@w3.org","start_line":307,"end_line":307},{"email":"luano@asd.ie","start_line":311,"end_line":311},{"email":"spei@cs.uiowa.edu","start_line":315,"end_line":315},{"email":"neeme.praks@one.ee","start_line":319,"end_line":319},{"email":"ruini@iki.fi","start_line":324,"end_line":324},{"email":"david@steadystate.co.uk","start_line":328,"end_line":328},{"email":"eric_suen_cn@hotmail.com","start_line":333,"end_line":333},{"email":"natalian@cs.brown.edu","start_line":337,"end_line":337},{"email":"andres@onemileup.com","start_line":341,"end_line":341}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27},{"url":"http://developer.gnome.org/projects/gap","start_line":114,"end_line":114},{"url":"http://xmlgraphics.apache.org/fop/","start_line":290,"end_line":290}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/demo.xml","type":"file","name":"demo.xml","base_name":"demo","extension":".xml","size":4581,"date":"2019-10-25","sha1":"33a27d9fd3aa832752537754ade904b23f124fd6","md5":"c97181dfe2a01acd78f2d5e52a90bdfd","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27},{"url":"http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/samples/barChart.svg","start_line":123,"end_line":123}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/download.html","type":"file","name":"download.html","base_name":"download","extension":".html","size":7680,"date":"2019-10-25","sha1":"d2a953ef268565e1374841404a55b69812bdee00","md5":"abef057e993331a958639ad354ef74a8","mime_type":"application/xml","file_type":"XML document text","programming_language":"HTML","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/howto/howto-asf-mirror.html","start_line":27,"end_line":27},{"url":"http://www.apache.org/mirrors/","start_line":69,"end_line":69},{"url":"http://www.apache.org/dist/xmlgraphics/batik/batik-1.7.zip.asc","start_line":93,"end_line":93},{"url":"http://www.apache.org/dist/xmlgraphics/batik/batik-1.7.zip.md5","start_line":94,"end_line":94},{"url":"http://www.apache.org/dist/xmlgraphics/batik/batik-1.7-jre13.zip.asc","start_line":101,"end_line":101},{"url":"http://www.apache.org/dist/xmlgraphics/batik/batik-1.7-jre13.zip.md5","start_line":102,"end_line":102},{"url":"http://www.apache.org/dist/xmlgraphics/batik/batik-src-1.7.zip.asc","start_line":109,"end_line":109},{"url":"http://www.apache.org/dist/xmlgraphics/batik/batik-src-1.7.zip.md5","start_line":110,"end_line":110},{"url":"http://www.apache.org/dist/xmlgraphics/batik/batik-docs-1.7.zip.asc","start_line":117,"end_line":117},{"url":"http://www.apache.org/dist/xmlgraphics/batik/batik-docs-1.7.zip.md5","start_line":118,"end_line":118},{"url":"http://www.apache.org/dist/xmlgraphics/batik/Squiggle-1.7.dmg.asc","start_line":125,"end_line":125},{"url":"http://www.apache.org/dist/xmlgraphics/batik/Squiggle-1.7.dmg.md5","start_line":126,"end_line":126},{"url":"http://archive.apache.org/dist/xmlgraphics/batik","start_line":131,"end_line":131},{"url":"http://www.apache.org/dist/xmlgraphics/batik/KEYS","start_line":138,"end_line":138},{"url":"http://svn.apache.org/builds/xml-batik","start_line":145,"end_line":145},{"url":"http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/","start_line":161,"end_line":161},{"url":"http://svn.apache.org/viewvc/xmlgraphics/batik/","start_line":164,"end_line":164},{"url":"http://mcc.id.au/batik-nightly/","start_line":171,"end_line":171},{"url":"http://java.sun.com/products/javawebstart/","start_line":173,"end_line":173}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/faq.xml","type":"file","name":"faq.xml","base_name":"faq","extension":".xml","size":37075,"date":"2019-10-25","sha1":"6e211f3b3392ebfd96ca5c3443ca9b354a068afc","md5":"a134125348ad84e346e770ab5ff19550","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":23,"end_line":25},{"value":"cjolif@ilog.fr","start_line":23,"end_line":25}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":23,"end_line":23},{"email":"cjolif@ilog.fr","start_line":24,"end_line":24},{"email":"batik-dev@xmlgraphics.apache.org","start_line":854,"end_line":854}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/faq-v20.dtd","start_line":28,"end_line":28},{"url":"http://www.w3.org/","start_line":54,"end_line":54},{"url":"http://xmlgraphics.apache.org/charter.html","start_line":170,"end_line":170},{"url":"http://cocoon.apache.org/","start_line":185,"end_line":185},{"url":"http://xmlgraphics.apache.org/fop/","start_line":187,"end_line":187},{"url":"http://www.csiro.au/","start_line":204,"end_line":204},{"url":"http://www.ilog.com/","start_line":205,"end_line":205},{"url":"http://koala.ilog.fr/","start_line":206,"end_line":206},{"url":"http://www.kodak.com/","start_line":207,"end_line":207},{"url":"http://www.sun.com/","start_line":208,"end_line":208},{"url":"http://www.ibm.com/","start_line":211,"end_line":211},{"url":"http://www.w3.org/Graphics/SVG/SVG-Implementations#edit","start_line":265,"end_line":265},{"url":"http://xml.apache.org/xalan-j/index.html","start_line":290,"end_line":290},{"url":"http://xml.apache.org/xerces-j/index.html","start_line":291,"end_line":291},{"url":"http://java.sun.com/xml/download.html","start_line":292,"end_line":292},{"url":"http://www.w3.org/Graphics/SVG/SVG-Implementations","start_line":304,"end_line":304},{"url":"http://www.expat.or.id/info/batik.html","start_line":368,"end_line":368},{"url":"http://java.sun.com/","start_line":392,"end_line":392},{"url":"http://www.mozilla.org/rhino/","start_line":435,"end_line":435},{"url":"http://www.jython.org/","start_line":440,"end_line":440},{"url":"http://dev.scriptics.com/software/java/","start_line":444,"end_line":444},{"url":"http://www.w3.org/1999/xlink","start_line":586,"end_line":586},{"url":"http://jwatt.org/svg/authoring/","start_line":590,"end_line":590},{"url":"http://www.apache.org/","start_line":822,"end_line":822},{"url":"http://jakarta.apache.org/guidelines/index.html","start_line":835,"end_line":835},{"url":"http://svn.apache.org/viewcvs.cgi/xmlgraphics/batik/","start_line":843,"end_line":843}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/favicon.ico","type":"file","name":"favicon.ico","base_name":"favicon","extension":".ico","size":766,"date":"2019-10-25","sha1":"2f4714b06af0e64a4f9f586462a69eeedcce2c64","md5":"032ecc47c22a91e7f3f1d28a45d7f7bc","mime_type":"image/x-icon","file_type":"MS Windows icon resource - 1 icon, 32x32, 16 colors","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/index.xml","type":"file","name":"index.xml","base_name":"index","extension":".xml","size":8858,"date":"2019-10-25","sha1":"e1def8188feaecd1712a706d9231ace418f2ba8a","md5":"e5e27e37a3099dc69178068abfb6a9dd","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27},{"url":"http://xmlgraphics.apache.org/fop/","start_line":90,"end_line":90},{"url":"http://www.w3.org/","start_line":124,"end_line":124}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/install.xml","type":"file","name":"install.xml","base_name":"install","extension":".xml","size":13848,"date":"2019-10-25","sha1":"f0adb08c71ddacc4b97e1011f28acb362ec2256a","md5":"9aba5e812fdf25cd4f8a344ebb5224c3","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":26,"end_line":26},{"url":"http://svn.apache.org/builds/xml-batik","start_line":107,"end_line":107},{"url":"http://arc.mcc.id.au/batik-nightly/","start_line":141,"end_line":141},{"url":"http://archive.apache.org/dist/xmlgraphics/batik","start_line":148,"end_line":148},{"url":"http://www.apache.org/dist/xmlgraphics/batik","start_line":172,"end_line":172},{"url":"http://www.mozilla.org/rhino/","start_line":225,"end_line":225},{"url":"http://www.jython.org/","start_line":236,"end_line":236},{"url":"http://dev.scriptics.com/software/java/","start_line":242,"end_line":242},{"url":"http://www.apache.org/dist/xmlgraphics/batik/KEYS","start_line":311,"end_line":311},{"url":"http://www.apache.org/dist/xmlgraphics/batik/","start_line":314,"end_line":314},{"url":"http://www.gnu.org/software/textutils/textutils.html","start_line":333,"end_line":333},{"url":"http://www.fourmilab.ch/md5/","start_line":335,"end_line":335},{"url":"http://www.pc-tools.net/win32/freeware/console/","start_line":336,"end_line":336},{"url":"http://www.slavasoft.com/fsum/","start_line":337,"end_line":337}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/license.xml","type":"file","name":"license.xml","base_name":"license","extension":".xml","size":12603,"date":"2019-10-25","sha1":"fb2bd1cb199d6aa9e08a308ff31ad8813c89782e","md5":"a7a32e4ad48bfd81ba1b9f84619921a6","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}},{"key":"apache-2.0","score":73.68,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":25,"end_line":31,"matched_rule":{"identifier":"apache-2.0_254.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":19,"matched_length":14,"match_coverage":73.68,"rule_relevance":100.0}},{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":35,"end_line":235,"matched_rule":{"identifier":"apache-2.0.LICENSE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":1581,"matched_length":1581,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0","apache-2.0","apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":22,"end_line":22},{"url":"http://www.apache.org/licenses/","start_line":37,"end_line":37}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/mailing-lists.xml","type":"file","name":"mailing-lists.xml","base_name":"mailing-lists","extension":".xml","size":4470,"date":"2019-10-25","sha1":"c64649d06618b2f645b1524b7851f0e82f080a19","md5":"6f9ad5b9a48b4e784d248703a928450b","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"cjolif@ilog.fr","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":23,"end_line":23},{"email":"batik-users@xmlgraphics.apache.org","start_line":49,"end_line":49},{"email":"batik-users-subscribe@xmlgraphics.apache.org","start_line":52,"end_line":52},{"email":"batik-users-unsubscribe@xmlgraphics.apache.org","start_line":53,"end_line":53},{"email":"batik-users@xml.apache.org","start_line":60,"end_line":60},{"email":"www-svg@w3.org","start_line":66,"end_line":66},{"email":"svg-developers@yahoogroups.com","start_line":68,"end_line":68},{"email":"batik-dev@xmlgraphics.apache.org","start_line":85,"end_line":85},{"email":"batik-dev-subscribe@xmlgraphics.apache.org","start_line":88,"end_line":88},{"email":"batik-dev-unsubscribe@xmlgraphics.apache.org","start_line":89,"end_line":89},{"email":"batik-dev@xml.apache.org","start_line":96,"end_line":96}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27},{"url":"http://mail-archives.apache.org/mod_mbox/xmlgraphics-batik-users/","start_line":58,"end_line":58},{"url":"http://xmlgraphics.apache.org/mail/batik-users/","start_line":59,"end_line":59},{"url":"http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=batik-users@xml.apache.org","start_line":60,"end_line":60},{"url":"http://mail-archives.apache.org/mod_mbox/xmlgraphics-batik-dev/","start_line":94,"end_line":94},{"url":"http://xmlgraphics.apache.org/mail/batik-dev/","start_line":95,"end_line":95},{"url":"http://mail-archives.apache.org/eyebrowse/SummarizeList?listName=batik-dev@xml.apache.org","start_line":96,"end_line":96}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/site.xml","type":"file","name":"site.xml","base_name":"site","extension":".xml","size":5955,"date":"2019-10-25","sha1":"58f356d540c1c91c032a08eca838ef68a7ae9be7","md5":"af427c728dd8b5af5abe9a8c332eefcc","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/status.xml","type":"file","name":"status.xml","base_name":"status","extension":".xml","size":181588,"date":"2019-10-25","sha1":"8baca76421091f65f181e594866377aec8d0aa60","md5":"3c2d840f9fd6b30bcdf3796fe551a349","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thierry.Kormann@sophia.inria.fr","start_line":23,"end_line":25},{"value":"vincent.hardy@eng.sun.com","start_line":23,"end_line":25}],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":23,"end_line":23},{"email":"vincent.hardy@eng.sun.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://www.w3.org/1999/xlink","start_line":94,"end_line":94},{"url":"http://www.w3.org/Graphics/SVG/Test/","start_line":3193,"end_line":3193},{"url":"http://www.w3.org/Graphics/SVG/Test/20061213/svg","start_line":3197,"end_line":3197}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/tabs.xml","type":"file","name":"tabs.xml","base_name":"tabs","extension":".xml","size":1554,"date":"2019-10-25","sha1":"db28c9203ad3e907123e1cd44329a8af4dade705","md5":"fcb816abcf9056931e7a68c9933e1830","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"cam@mcc.id.au","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"cam@mcc.id.au","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/tab-cocoon-v11.dtd","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/uses.xml","type":"file","name":"uses.xml","base_name":"uses","extension":".xml","size":6931,"date":"2019-10-25","sha1":"c5a0e4820a2cabbaae47d9a96d5da83fc5717c8c","md5":"ed058afd248e97470d6e4d307eaca1a1","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}},{"key":"gpl-1.0-plus","score":100.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":102,"end_line":102,"matched_rule":{"identifier":"gpl_bare_gnu_gpl.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":2,"matched_length":2,"match_coverage":100.0,"rule_relevance":100.0}}],"license_expressions":["apache-2.0","gpl-1.0-plus"],"copyrights":[],"holders":[],"authors":[{"value":"cam@mcc.id.au","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"cam@mcc.id.au","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27},{"url":"http://cocoon.apache.org/","start_line":43,"end_line":43},{"url":"http://xmlgraphics.apache.org/fop/","start_line":47,"end_line":47},{"url":"http://www.bitflash.com/products/brilliance.asp","start_line":54,"end_line":54},{"url":"http://www.exurbi.com/","start_line":61,"end_line":61},{"url":"http://www.elixirtech.com/ElixirReport","start_line":65,"end_line":65},{"url":"http://glipssvgeditor.sourceforge.net/","start_line":69,"end_line":69},{"url":"http://www2.ilog.com/preview/Discovery/","start_line":73,"end_line":73},{"url":"http://www.ilog.com/products/jviews","start_line":80,"end_line":80},{"url":"http://www.object-refinery.com/jfreechart/index.html","start_line":85,"end_line":85},{"url":"http://lagoon.sourceforge.net/","start_line":90,"end_line":90},{"url":"http://www.throneworld.com/lords/gms/dev.html","start_line":95,"end_line":95},{"url":"http://luxor-xul.sourceforge.net/index.html","start_line":100,"end_line":100},{"url":"http://luxor-xul.sourceforge.net/talk/jug-nov-2002/slides.html","start_line":107,"end_line":107},{"url":"http://www.optimalj.com/","start_line":111,"end_line":111},{"url":"http://otn.oracle.com/products/jdev/content.html","start_line":115,"end_line":115},{"url":"http://www.kiyut.com/","start_line":120,"end_line":120},{"url":"http://dannyayers.com/2005/10/18/svolgo-redux/","start_line":126,"end_line":126},{"url":"http://www.togethersoft.com/products/controlcenter/whats_new.jsp","start_line":133,"end_line":133},{"url":"http://volity.net/","start_line":138,"end_line":138},{"url":"http://volity.org/projects/gamut/","start_line":140,"end_line":140},{"url":"http://pear.php.net/package/XML_svg2image","start_line":145,"end_line":145},{"url":"http://xweb.sf.net/","start_line":149,"end_line":149}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/dev","type":"directory","name":"dev","base_name":"dev","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":44403,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/dev/branches.xml","type":"file","name":"branches.xml","base_name":"branches","extension":".xml","size":3311,"date":"2019-10-25","sha1":"30b3881b6908ba97fb58201b5523548f0f7fab01","md5":"452f3b69b9089e7827fd3efda7b1c0ff","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"cam@mcc.id.au","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"cam@mcc.id.au","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27},{"url":"http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk","start_line":44,"end_line":44},{"url":"http://svn.apache.org/repos/asf/xmlgraphics/batik/branches/webapi","start_line":57,"end_line":57},{"url":"http://www.w3.org/2006/webapi/","start_line":59,"end_line":59},{"url":"http://svn.apache.org/repos/asf/xmlgraphics/batik/branches/svg11","start_line":71,"end_line":71}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/dev/index.xml","type":"file","name":"index.xml","base_name":"index","extension":".xml","size":2370,"date":"2019-10-25","sha1":"fa419011d7b60ae6a9981752987581133f204175","md5":"9a7f018ea0f4901aec2837dbc26b36d8","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"cam@mcc.id.au","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"cam@mcc.id.au","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/dev/svg12.xml","type":"file","name":"svg12.xml","base_name":"svg12","extension":".xml","size":12476,"date":"2019-10-25","sha1":"bb27b6ba4b301b67ccba3e1b52162513d7495af1","md5":"f1e535233b4d39eef2539702386a33ab","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"cam@mcc.id.au","start_line":23,"end_line":24},{"value":"the W3C WebAPI","start_line":276,"end_line":277}],"packages":[],"emails":[{"email":"cam@mcc.id.au","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27},{"url":"http://java.sun.com/j2se/1.4.2/docs/guide/standards/","start_line":91,"end_line":91},{"url":"http://xml.apache.org/batik/ext","start_line":220,"end_line":220}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/dev/test.xml","type":"file","name":"test.xml","base_name":"test","extension":".xml","size":26246,"date":"2019-10-25","sha1":"cf9d173a2af53194c08dd8ef55f11d187c732a3d","md5":"bfb4fcabc8a7d7c662485f2f234215c8","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27},{"url":"http://url.to.my.first.test.suite/","start_line":274,"end_line":274},{"url":"http://url.to.my.second.test.suite/","start_line":275,"end_line":275}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/tools","type":"directory","name":"tools","base_name":"tools","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":64888,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/tools/browser.xml","type":"file","name":"browser.xml","base_name":"browser","extension":".xml","size":24961,"date":"2019-10-25","sha1":"4ffa2ec4596d41e77856bdd523566414b5ece3da","md5":"4fc18d1cb98d1801c6fc024297bc092a","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/tools/font-converter.xml","type":"file","name":"font-converter.xml","base_name":"font-converter","extension":".xml","size":5264,"date":"2019-10-25","sha1":"a66dedd0f70244bb162069e339efa94350309176","md5":"52f46e5970e053e0a652d98c64c621a0","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/tools/index.xml","type":"file","name":"index.xml","base_name":"index","extension":".xml","size":3263,"date":"2019-10-25","sha1":"7838bf8f51a1f312cdcd08c549cb5d53ad96f6cf","md5":"09b9eb811ab3a7f120132fea9a09b675","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"cam@mcc.id.au","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"cam@mcc.id.au","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/tools/pretty-printer.xml","type":"file","name":"pretty-printer.xml","base_name":"pretty-printer","extension":".xml","size":7626,"date":"2019-10-25","sha1":"426b7ec217a1a7897fac7bbcef0ed9ce1195f4f7","md5":"829b0270203adccc896c026129a36693","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"stephane@hillion.org","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27},{"url":"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd","start_line":127,"end_line":127}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/tools/rasterizer.xml","type":"file","name":"rasterizer.xml","base_name":"rasterizer","extension":".xml","size":23774,"date":"2019-10-25","sha1":"cf2d2fe5bd4922380a9fc0ba51812a2f17ca439a","md5":"b7444d3aa7926f2e49a60867e66a4082","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27},{"url":"http://www.faqs.org/rfcs/rfc3066.html","start_line":171,"end_line":171},{"url":"http://ant.apache.org/","start_line":284,"end_line":284},{"url":"http://ant.apache.org/manual/CoreTypes/fileset.html","start_line":539,"end_line":539}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/using","type":"directory","name":"using","base_name":"using","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":13,"dirs_count":1,"size_count":171140,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/using/architecture.xml","type":"file","name":"architecture.xml","base_name":"architecture","extension":".xml","size":7477,"date":"2019-10-25","sha1":"0561760dd038455e8525dc8703cd2b1ae4b88ce4","md5":"7f10f2d30b55d1f5bbca3f79b5db8972","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27},{"url":"http://opensource.objectsbydesign.com/batik/index.html","start_line":36,"end_line":36},{"url":"http://www.yworks.com/products/yDoc/showcase/batik-1.5/","start_line":37,"end_line":37}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/using/css.xml","type":"file","name":"css.xml","base_name":"css","extension":".xml","size":1995,"date":"2019-10-25","sha1":"a5573f4193ff4c0c45a313f6e89369b49ca81b3b","md5":"2abcab37599dd0d102dc2343e85a8395","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"cam@mcc.id.au","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"cam@mcc.id.au","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/using/dom-api.xml","type":"file","name":"dom-api.xml","base_name":"dom-api","extension":".xml","size":10114,"date":"2019-10-25","sha1":"65d147644b896d2ec86f839e92f2d811265c9c33","md5":"3b391f02cf5c8cc97f501e5662ae46e5","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27},{"url":"http://www.w3.org/dom/","start_line":35,"end_line":35},{"url":"http://xmlgraphics.apache.org/batik/javadoc/org/apache/batik/dom/svg/SVGDOMImplementation.html","start_line":63,"end_line":63}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/using/extending.xml","type":"file","name":"extending.xml","base_name":"extending","extension":".xml","size":36421,"date":"2019-10-25","sha1":"14c264855866829a3fdec850ad9b00b679646bd2","md5":"3dd52dea8223161940098b2f7bb82c4f","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thomas.DeWeese@kodak.com","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"Thomas.DeWeese@kodak.com","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/using/glossary.xml","type":"file","name":"glossary.xml","base_name":"glossary","extension":".xml","size":3563,"date":"2019-10-25","sha1":"dd6f37982825c36b53dad3f6ba0aed11f39b4b2c","md5":"f81845b167b604ff180aa94d87382e2a","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/using/index.xml","type":"file","name":"index.xml","base_name":"index","extension":".xml","size":4637,"date":"2019-10-25","sha1":"874f91ebbc1b7aa92d153ab70d27b587a0c6da32","md5":"1df062346e682c709c79d40e4b1e22f3","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"cam@mcc.id.au","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"cam@mcc.id.au","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/using/parsers.xml","type":"file","name":"parsers.xml","base_name":"parsers","extension":".xml","size":11063,"date":"2019-10-25","sha1":"9855432a8942ae12c177edb2890f839e7c62a85c","md5":"03aecb4e02acf0367e675f561a71bd38","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"cam@mcc.id.au","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"cam@mcc.id.au","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/using/svg-generator.xml","type":"file","name":"svg-generator.xml","base_name":"svg-generator","extension":".xml","size":24301,"date":"2019-10-25","sha1":"4a4ddd84b34890648c785a8b389837e88ad7ba69","md5":"cf0144d941f5c23a89b90e4749bf328e","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"spei@cs.uiowa.edu","start_line":23,"end_line":25},{"value":"cjolif@ilog.fr","start_line":23,"end_line":25}],"packages":[],"emails":[{"email":"spei@cs.uiowa.edu","start_line":23,"end_line":23},{"email":"cjolif@ilog.fr","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":28,"end_line":28},{"url":"http://java.sun.com/j2se/1.4.2/docs/api/java/awt/Paint.html","start_line":437,"end_line":437}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/using/swing.xml","type":"file","name":"swing.xml","base_name":"swing","extension":".xml","size":13191,"date":"2019-10-25","sha1":"a06191445af5d1faad0c994c787234bc8174cdca","md5":"7c363b361cf46a9fc32ec58db7906919","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27},{"url":"http://java.sun.com/docs/books/tutorial/uiswing/overview/threads.html","start_line":56,"end_line":56},{"url":"http://java.sun.com/products/javabeans/","start_line":58,"end_line":58}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/using/transcoder.xml","type":"file","name":"transcoder.xml","base_name":"transcoder","extension":".xml","size":21943,"date":"2019-10-25","sha1":"c506f50f9cd6784b8e38d5614118263fe918b0b9","md5":"b9661a3193d913722eb7aba9871512b0","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/using/scripting","type":"directory","name":"scripting","base_name":"scripting","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":36435,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/using/scripting/ecmascript.xml","type":"file","name":"ecmascript.xml","base_name":"ecmascript","extension":".xml","size":11673,"date":"2019-10-25","sha1":"194b06e8bcd3a14b07a4362ec500f10fde17d4a4","md5":"8c11fd7c08700a66cbeabe458f791846","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/using/scripting/java.xml","type":"file","name":"java.xml","base_name":"java","extension":".xml","size":11783,"date":"2019-10-25","sha1":"115a423f123929ab2e01f5d35db1aa0e49687583","md5":"d5282d3689ceb5502eace1a9235a730a","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"shillion@ilog.fr","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"shillion@ilog.fr","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/content/xdocs/using/scripting/security.xml","type":"file","name":"security.xml","base_name":"security","extension":".xml","size":12979,"date":"2019-10-25","sha1":"0703e8e34d9df54c7c927e5c3c99cf6768bbad41","md5":"b97a8ceb5be64d5cf35ae2f59f6b079b","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://forrest.apache.org/dtd/document-v20.dtd","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":4,"size_count":1732362,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/themes","type":"directory","name":"themes","base_name":"themes","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images","type":"directory","name":"images","base_name":"images","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":33,"dirs_count":0,"size_count":1724011,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/apache-xml-graphics.gif","type":"file","name":"apache-xml-graphics.gif","base_name":"apache-xml-graphics","extension":".gif","size":7317,"date":"2019-10-25","sha1":"5bf6fb5a1b30c5299a06979ebe5373133b9a6128","md5":"a9b660be72b097d0ce49df57105a0173","mime_type":"image/gif","file_type":"GIF image data, version 89a, 226 x 51","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/apache-xml-graphics.jpg","type":"file","name":"apache-xml-graphics.jpg","base_name":"apache-xml-graphics","extension":".jpg","size":5184,"date":"2019-10-25","sha1":"3b9fb875fdfb4857d55574a46f8adf03caca2a73","md5":"31b50d1238452f639ec6769cc4e36361","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, resolution (DPI), density 72x72, segment length 16, baseline, precision 8, 226x51, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/apache-xml-graphics.png","type":"file","name":"apache-xml-graphics.png","base_name":"apache-xml-graphics","extension":".png","size":20382,"date":"2019-10-25","sha1":"a73afb669609a004859daf639fc47e5a37036290","md5":"23cf48c06dc5d034449d55d6522168db","mime_type":"image/png","file_type":"PNG image data, 226 x 51, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/apache-xml-graphics.svg","type":"file","name":"apache-xml-graphics.svg","base_name":"apache-xml-graphics","extension":".svg","size":112181,"date":"2019-10-25","sha1":"e31d3c5ef7b3fbd9c73ab447a7f2013ac67f2a35","md5":"b00b7b1244faced9b8e9304cab794565","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11},{"url":"http://www.w3.org/1999/xlink","start_line":21,"end_line":21},{"url":"http://xmlgraphics.apache.org/","start_line":578,"end_line":578}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/batik.png","type":"file","name":"batik.png","base_name":"batik","extension":".png","size":22758,"date":"2019-10-25","sha1":"4e4824ac0d15c19eeaf0778e0831925460e043ba","md5":"874498d429466b54054c80ebade7a30e","mime_type":"image/png","file_type":"PNG image data, 256 x 96, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/batikUses.jpg","type":"file","name":"batikUses.jpg","base_name":"batikUses","extension":".jpg","size":142655,"date":"2019-10-25","sha1":"bc2282c48239495f5050fb5150f02739692929ea","md5":"273e82871d23ff3eaa4427b107249648","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.02, resolution (DPI), density 72x72, segment length 16, baseline, precision 8, 400x551, frames 3, comment: \"File written by Adobe Photoshop\\250 5.2\", baseline, precision 8, 400x551, frames 3, baseline, precision 8, 400x551, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/group-logo-dark.png","type":"file","name":"group-logo-dark.png","base_name":"group-logo-dark","extension":".png","size":19447,"date":"2019-10-25","sha1":"f8c6c531f6c632b52592c37d6146422b644951de","md5":"3540ea509593290f11e1dbb160b2e906","mime_type":"image/png","file_type":"PNG image data, 220 x 51, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/group-logo.gif","type":"file","name":"group-logo.gif","base_name":"group-logo","extension":".gif","size":7317,"date":"2019-10-25","sha1":"5bf6fb5a1b30c5299a06979ebe5373133b9a6128","md5":"a9b660be72b097d0ce49df57105a0173","mime_type":"image/gif","file_type":"GIF image data, version 89a, 226 x 51","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/group-logo.jpg","type":"file","name":"group-logo.jpg","base_name":"group-logo","extension":".jpg","size":5184,"date":"2019-10-25","sha1":"3b9fb875fdfb4857d55574a46f8adf03caca2a73","md5":"31b50d1238452f639ec6769cc4e36361","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, resolution (DPI), density 72x72, segment length 16, baseline, precision 8, 226x51, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/group-logo.png","type":"file","name":"group-logo.png","base_name":"group-logo","extension":".png","size":20382,"date":"2019-10-25","sha1":"a73afb669609a004859daf639fc47e5a37036290","md5":"23cf48c06dc5d034449d55d6522168db","mime_type":"image/png","file_type":"PNG image data, 226 x 51, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/group-logo.svg","type":"file","name":"group-logo.svg","base_name":"group-logo","extension":".svg","size":112181,"date":"2019-10-25","sha1":"e31d3c5ef7b3fbd9c73ab447a7f2013ac67f2a35","md5":"b00b7b1244faced9b8e9304cab794565","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11},{"url":"http://www.w3.org/1999/xlink","start_line":21,"end_line":21},{"url":"http://xmlgraphics.apache.org/","start_line":578,"end_line":578}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/HighLevelArchitecture.png","type":"file","name":"HighLevelArchitecture.png","base_name":"HighLevelArchitecture","extension":".png","size":34912,"date":"2019-10-25","sha1":"919c2e6fcc91e042598d4db6cbe07c6648b96aea","md5":"2c3b5f4eb54d4314578523c4f73b5723","mime_type":"image/png","file_type":"PNG image data, 520 x 460, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/jarDependImg.png","type":"file","name":"jarDependImg.png","base_name":"jarDependImg","extension":".png","size":105451,"date":"2019-10-25","sha1":"d8b1b95b564b776e24b8de15699471c8e871fd34","md5":"cbaa0aefb8e2505c2670db5832c2316f","mime_type":"image/png","file_type":"PNG image data, 600 x 400, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/jarDependImg.source.svg","type":"file","name":"jarDependImg.source.svg","base_name":"jarDependImg.source","extension":".svg","size":12352,"date":"2019-10-25","sha1":"da7f2e9b4c210791804ed718b6f5df7d21689122","md5":"4e7a6f1c331ee6e7d3c0408570ecdf2d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/logo.gif","type":"file","name":"logo.gif","base_name":"logo","extension":".gif","size":3815,"date":"2019-10-25","sha1":"465f584036748d6ea395feeaaae6b9d9d355de1f","md5":"1a49445e32350ba6065694db3dc9d85e","mime_type":"image/gif","file_type":"GIF image data, version 89a, 103 x 87","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/splash.png","type":"file","name":"splash.png","base_name":"splash","extension":".png","size":61512,"date":"2019-10-25","sha1":"b68edf9dbf606b4d75b2bca33871d626d1b959b8","md5":"9f68cf3b425b3b96a802dc55abeff4e1","mime_type":"image/png","file_type":"PNG image data, 492 x 150, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svgapplication.png","type":"file","name":"svgapplication.png","base_name":"svgapplication","extension":".png","size":60493,"date":"2019-10-25","sha1":"d489c313797eb19cb4963f05c4e1e1e19d9730c4","md5":"3df265c428e015706460ff67c063f346","mime_type":"image/png","file_type":"PNG image data, 458 x 563, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svggen.jpg","type":"file","name":"svggen.jpg","base_name":"svggen","extension":".jpg","size":62838,"date":"2019-10-25","sha1":"45dc3f953ba4143a96b795547a2c4644ecb58b8d","md5":"c90445cf6459611cbf4ae3cc93db4372","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.02, resolution (DPI), density 72x72, segment length 16, baseline, precision 8, 578x156, frames 3, comment: \"File written by Adobe Photoshop\\250 5.2\", baseline, precision 8, 578x156, frames 3, baseline, precision 8, 578x156, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svggenHighLevelArchi.jpg","type":"file","name":"svggenHighLevelArchi.jpg","base_name":"svggenHighLevelArchi","extension":".jpg","size":31473,"date":"2019-10-25","sha1":"552bd34285691cd9237451ff667747590c77d9f1","md5":"e5f08bd0cc473558f3b88fa31b706006","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.02, resolution (DPI), density 300x300, segment length 16, baseline, precision 8, 436x232, frames 3, comment: \"File written by Adobe Photoshop\\250 5.2\", baseline, precision 8, 436x232, frames 3, baseline, precision 8, 436x232, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svgviewerAOI.png","type":"file","name":"svgviewerAOI.png","base_name":"svgviewerAOI","extension":".png","size":70564,"date":"2019-10-25","sha1":"0ccbd7f2f68b304034f35a686dcee8ca828d5db7","md5":"3289dd3bf98b6dd1780c74684f42e9bb","mime_type":"image/png","file_type":"PNG image data, 655 x 815, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svgviewerBrowsing.png","type":"file","name":"svgviewerBrowsing.png","base_name":"svgviewerBrowsing","extension":".png","size":36293,"date":"2019-10-25","sha1":"a541d4eaee209bf3861cb40c0ae30b179c9200f1","md5":"5565438f6c25141e5b558aacbccef0cd","mime_type":"image/png","file_type":"PNG image data, 461 x 261, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svgviewerDefaultRegular.jpg","type":"file","name":"svgviewerDefaultRegular.jpg","base_name":"svgviewerDefaultRegular","extension":".jpg","size":108014,"date":"2019-10-25","sha1":"cc22b9cc279441f45f2ace8edb34034d97439fad","md5":"bafb47ffc30ec7f3168b94f9accb462a","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.02, resolution (DPI), density 72x72, segment length 16, baseline, precision 8, 334x482, frames 3, comment: \"File written by Adobe Photoshop\\250 5.2\", baseline, precision 8, 334x482, frames 3, baseline, precision 8, 334x482, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svgviewerDefaultRegular.png","type":"file","name":"svgviewerDefaultRegular.png","base_name":"svgviewerDefaultRegular","extension":".png","size":139388,"date":"2019-10-25","sha1":"4d44e56523b58a9885c88cc03a67518566d2a7c2","md5":"0aeb56905987ebd66fb5e847792724ea","mime_type":"image/png","file_type":"PNG image data, 462 x 635, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svgviewerFileOpen.png","type":"file","name":"svgviewerFileOpen.png","base_name":"svgviewerFileOpen","extension":".png","size":35147,"date":"2019-10-25","sha1":"c802274546d8cf462ef9a03d6d77038dac40aab3","md5":"72b40c8adbe01ef1340a7285f6ae4221","mime_type":"image/png","file_type":"PNG image data, 600 x 500, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svgviewerLocationBar.png","type":"file","name":"svgviewerLocationBar.png","base_name":"svgviewerLocationBar","extension":".png","size":118050,"date":"2019-10-25","sha1":"9f7503deb18a13001d9adc0dfa2360c241a24e51","md5":"d65fe780be43ca527b0c65c620f85d2e","mime_type":"image/png","file_type":"PNG image data, 462 x 641, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svgviewerMultipleFiles.png","type":"file","name":"svgviewerMultipleFiles.png","base_name":"svgviewerMultipleFiles","extension":".png","size":54494,"date":"2019-10-25","sha1":"15a07247eaa1529cf2c12d61e0f432ce0d2f55b3","md5":"fad6a3fb5ece3aa0bdc55d2744758048","mime_type":"image/png","file_type":"PNG image data, 580 x 698, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svgviewerOpenPage.png","type":"file","name":"svgviewerOpenPage.png","base_name":"svgviewerOpenPage","extension":".png","size":25904,"date":"2019-10-25","sha1":"b64aa3e696f278066edcbd449a6d04cb40504849","md5":"04bfff8c155c080a5d6383819b848bb5","mime_type":"image/png","file_type":"PNG image data, 500 x 300, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svgviewerPan.png","type":"file","name":"svgviewerPan.png","base_name":"svgviewerPan","extension":".png","size":58578,"date":"2019-10-25","sha1":"8b2c7c73a243ed48352d38096e317ea3214842e1","md5":"e5a71de064aa165ce87033dd86be348e","mime_type":"image/png","file_type":"PNG image data, 462 x 641, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svgviewerPreferences.png","type":"file","name":"svgviewerPreferences.png","base_name":"svgviewerPreferences","extension":".png","size":46089,"date":"2019-10-25","sha1":"3aea9a2e0514ba65fcedd0b502acd93e19db3cb8","md5":"06e67ca9c14a2b8725466260ae2a6857","mime_type":"image/png","file_type":"PNG image data, 614 x 641, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svgviewerThumbnail.png","type":"file","name":"svgviewerThumbnail.png","base_name":"svgviewerThumbnail","extension":".png","size":24347,"date":"2019-10-25","sha1":"81d8fc171fb0f7e3977eb3bc555ad78aa4f98616","md5":"1911888259e4d016d52a112442037154","mime_type":"image/png","file_type":"PNG image data, 462 x 641, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svgviewerViewSource.png","type":"file","name":"svgviewerViewSource.png","base_name":"svgviewerViewSource","extension":".png","size":66956,"date":"2019-10-25","sha1":"b38272c061774c35b41c26c6423ed5431156f42d","md5":"616e56ce7a6351c6bb4c30091aba1e18","mime_type":"image/png","file_type":"PNG image data, 627 x 641, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svgviewerViewTree.png","type":"file","name":"svgviewerViewTree.png","base_name":"svgviewerViewTree","extension":".png","size":43492,"date":"2019-10-25","sha1":"fb15abfa1bf7b279807ba92f2be07289740cbc98","md5":"a514cba93c1f0dc8d0a57dade6433733","mime_type":"image/png","file_type":"PNG image data, 621 x 641, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/images/svgviewerZoomin.png","type":"file","name":"svgviewerZoomin.png","base_name":"svgviewerZoomin","extension":".png","size":48861,"date":"2019-10-25","sha1":"54a002660fde8cb2f05548c61e9dffc899801864","md5":"57d43f6c50a38a497897659dd8b09a1b","mime_type":"image/png","file_type":"PNG image data, 464 x 418, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/schema","type":"directory","name":"schema","base_name":"schema","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1181,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/schema/catalog.xcat","type":"file","name":"catalog.xcat","base_name":"catalog","extension":".xcat","size":1181,"date":"2019-10-25","sha1":"ab4038bd8991e08369c2a3b32aad253febdfdda6","md5":"eeebe71e3ed270a4644413f113cb9d83","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11},{"url":"http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd","start_line":22,"end_line":22}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/stylesheets","type":"directory","name":"stylesheets","base_name":"stylesheets","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":7170,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/documentation-sources/resources/stylesheets/status2document.xsl","type":"file","name":"status2document.xsl","base_name":"status2document","extension":".xsl","size":7170,"date":"2019-10-25","sha1":"9c589a613074d77de8f827a8125e6ef2d70c9720","md5":"1a68306826fbad6788ef90440ec7a4f2","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib","type":"directory","name":"lib","base_name":"lib","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":35,"dirs_count":1,"size_count":11165431,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/fop-transcoder-allinone-2.4.jar","type":"file","name":"fop-transcoder-allinone-2.4.jar","base_name":"fop-transcoder-allinone-2.4","extension":".jar","size":1724026,"date":"2019-10-25","sha1":"12a1ec3b4d346612acc9284af4c17492e1e086ee","md5":"f2dd84aea5bc7a62c954f31084631d90","mime_type":"application/java-archive","file_type":"Java archive data (JAR)","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/fop-transcoder-allinone-2.4.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/LICENSE.dom-documentation.txt","type":"file","name":"LICENSE.dom-documentation.txt","base_name":"LICENSE.dom-documentation","extension":".txt","size":3996,"date":"2019-10-29","sha1":"9b645cac6f17b3400019d4db723c1a88026a495d","md5":"200a1ced16c9083ca93ded820710e13b","mime_type":"text/html","file_type":"HTML document, ISO-8859 text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"w3c-docs-19990405","score":95.68,"name":"W3C Document Notice and License (1999-04-05)","short_name":"W3C-DOCS-19990405","category":"Free Restricted","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/copyright-documents-19990405","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c-docs-19990405","spdx_license_key":null,"spdx_url":"","start_line":14,"end_line":83,"matched_rule":{"identifier":"w3c-docs-19990405.LICENSE","license_expression":"w3c-docs-19990405","licenses":["w3c-docs-19990405"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":533,"matched_length":510,"match_coverage":95.68,"rule_relevance":100}}],"license_expressions":["w3c-docs-19990405"],"copyrights":[{"value":"Copyright (c) 1994-2001 World Wide Web Consortium, http://www.w3.org/'> World Wide Web Consortium","start_line":8,"end_line":10},{"value":"Copyright (c) World Wide Web Consortium, Massachusetts Institute of Technology, Institut National de Recherche en Informatique","start_line":33,"end_line":36}],"holders":[{"value":"World Wide Web Consortium, a href World Wide Web Consortium","start_line":8,"end_line":10},{"value":"World Wide Web Consortium, Massachusetts Institute of Technology, Institut National de Recherche en Informatique","start_line":33,"end_line":36}],"authors":[],"packages":[],"emails":[{"email":"site-policy@w3.org","start_line":83,"end_line":83}],"urls":[{"url":"http://www.w3.org/Consortium/Legal/copyright-documents-19990405","start_line":4,"end_line":4},{"url":"http://www.w3.org/","start_line":9,"end_line":9},{"url":"http://www.lcs.mit.edu/","start_line":11,"end_line":11},{"url":"http://www.inria.fr/","start_line":12,"end_line":12},{"url":"http://www.keio.ac.jp/","start_line":14,"end_line":14},{"url":"http://www.w3.org/Consortium/Legal/","start_line":15,"end_line":15}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/LICENSE.dom-software.txt","type":"file","name":"LICENSE.dom-software.txt","base_name":"LICENSE.dom-software","extension":".txt","size":3545,"date":"2019-10-29","sha1":"0397340e4f693483db81634c7b384c24c1b8a3dd","md5":"40b22b5082ef44e9b974dfd0f2f85926","mime_type":"text/html","file_type":"HTML document, ISO-8859 text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"w3c-software-19980720","score":100.0,"name":"W3C Software Notice and License (1998-07-20)","short_name":"W3C-SOFTWARE-19980720","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/copyright-software-19980720.html","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c-software-19980720","spdx_license_key":"W3C-19980720","spdx_url":"https://spdx.org/licenses/W3C-19980720","start_line":4,"end_line":71,"matched_rule":{"identifier":"w3c-software-19980720_1.RULE","license_expression":"w3c-software-19980720","licenses":["w3c-software-19980720"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":496,"matched_length":496,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["w3c-software-19980720"],"copyrights":[{"value":"Copyright (c) 1994-2001 World Wide Web Consortium, http://www.w3.org/'> World Wide Web Consortium","start_line":8,"end_line":10},{"value":"Copyright (c) World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":36,"end_line":38}],"holders":[{"value":"World Wide Web Consortium, a href World Wide Web Consortium","start_line":8,"end_line":10},{"value":"World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University)","start_line":36,"end_line":38}],"authors":[],"packages":[],"emails":[{"email":"site-policy@w3.org","start_line":71,"end_line":71}],"urls":[{"url":"http://www.w3.org/Consortium/Legal/copyright-software-19980720","start_line":4,"end_line":4},{"url":"http://www.w3.org/","start_line":9,"end_line":9},{"url":"http://www.lcs.mit.edu/","start_line":11,"end_line":11},{"url":"http://www.inria.fr/","start_line":12,"end_line":12},{"url":"http://www.keio.ac.jp/","start_line":14,"end_line":14},{"url":"http://www.w3.org/Consortium/Legal/","start_line":15,"end_line":15}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/LICENSE.fop-transcoder-allinone-2.4.txt","type":"file","name":"LICENSE.fop-transcoder-allinone-2.4.txt","base_name":"LICENSE.fop-transcoder-allinone-2.4","extension":".txt","size":158,"date":"2019-10-29","sha1":"2417d5f7159d59ce424c4068f7dca6065497e960","md5":"2f379345b6fd967b37c53cf01672de24","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":1,"end_line":1,"matched_rule":{"identifier":"apache-2.0_313.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":7,"matched_length":7,"match_coverage":100.0,"rule_relevance":100.0}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/LICENSE.js.txt","type":"file","name":"LICENSE.js.txt","base_name":"LICENSE.js","extension":".txt","size":46904,"date":"2019-10-25","sha1":"2db500d3f354f2d749b0a6707fdfa2b70ba0c4a8","md5":"b061790d1f8dd0ac65a9e1a7d0d8ce9a","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,"licenses":[{"key":"unknown","score":11.0,"name":"Unknown license detected but not recognized","short_name":"unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:unknown","spdx_license_key":null,"spdx_url":"","start_line":22,"end_line":22,"matched_rule":{"identifier":"lead-in_unknown_28.RULE","license_expression":"unknown","licenses":["unknown"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":2,"matched_length":2,"match_coverage":100.0,"rule_relevance":11}},{"key":"mpl-1.1","score":95.0,"name":"Mozilla Public License 1.1","short_name":"MPL 1.1","category":"Copyleft Limited","is_exception":false,"owner":"Mozilla","homepage_url":"http://www.mozilla.org/MPL/MPL-1.1.html","text_url":"http://www.mozilla.com/MPL/1.1/index.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mpl-1.1","spdx_license_key":"MPL-1.1","spdx_url":"https://spdx.org/licenses/MPL-1.1","start_line":22,"end_line":22,"matched_rule":{"identifier":"mpl-1.1_17.RULE","license_expression":"mpl-1.1","licenses":["mpl-1.1"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":5,"matched_length":5,"match_coverage":100.0,"rule_relevance":95.0}},{"key":"gpl-1.0-plus","score":100.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":23,"end_line":23,"matched_rule":{"identifier":"gpl-1.0-plus_146.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":5,"matched_length":5,"match_coverage":100.0,"rule_relevance":100.0}},{"key":"sun-bsd-no-nuclear","score":100.0,"name":"Sun BSD-Style with Nuclear Restrictions","short_name":"Sun BSD-Style with Nuclear Restrictions","category":"Free Restricted","is_exception":false,"owner":"Oracle (Sun)","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:sun-bsd-no-nuclear","spdx_license_key":"BSD-3-Clause-No-Nuclear-License","spdx_url":"https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License","start_line":39,"end_line":72,"matched_rule":{"identifier":"sun-bsd-no-nuclear_2.RULE","license_expression":"sun-bsd-no-nuclear","licenses":["sun-bsd-no-nuclear"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":245,"matched_length":245,"match_coverage":100.0,"rule_relevance":100}},{"key":"mpl-1.1","score":100.0,"name":"Mozilla Public License 1.1","short_name":"MPL 1.1","category":"Copyleft Limited","is_exception":false,"owner":"Mozilla","homepage_url":"http://www.mozilla.org/MPL/MPL-1.1.html","text_url":"http://www.mozilla.com/MPL/1.1/index.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mpl-1.1","spdx_license_key":"MPL-1.1","spdx_url":"https://spdx.org/licenses/MPL-1.1","start_line":78,"end_line":546,"matched_rule":{"identifier":"mpl-1.1.LICENSE","license_expression":"mpl-1.1","licenses":["mpl-1.1"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":3690,"matched_length":3690,"match_coverage":100.0,"rule_relevance":100}},{"key":"gpl-2.0","score":100.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":550,"end_line":888,"matched_rule":{"identifier":"gpl-2.0.LICENSE","license_expression":"gpl-2.0","licenses":["gpl-2.0"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":2926,"matched_length":2926,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["unknown","mpl-1.1","gpl-1.0-plus","sun-bsd-no-nuclear","mpl-1.1","gpl-2.0"],"copyrights":[{"value":"Copyright 1994-2006 Sun Microsystems, Inc.","start_line":37,"end_line":37},{"value":"Copyright (c) 1989, 1991 Free Software Foundation, Inc.","start_line":553,"end_line":555},{"value":"copyrighted by the Free Software Foundation","start_line":800,"end_line":805}],"holders":[{"value":"Sun Microsystems, Inc.","start_line":37,"end_line":37},{"value":"Free Software Foundation, Inc.","start_line":553,"end_line":555},{"value":"the Free Software Foundation","start_line":800,"end_line":805}],"authors":[],"packages":[],"emails":[{"email":"anonymous@cvs-mirror.mozilla.org","start_line":11,"end_line":11}],"urls":[{"url":"ftp://ftp.mozilla.org/pub/mozilla.org/js/rhino1_6R5.zip","start_line":6,"end_line":6},{"url":"https://bugzilla.mozilla.org/attachment.cgi?id=288467","start_line":16,"end_line":16},{"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=367627","start_line":20,"end_line":20},{"url":"http://java.sun.com/products/jfc/tsc/articles/treetable2","start_line":31,"end_line":31},{"url":"http://www.mozilla.org/MPL/","start_line":517,"end_line":517}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/LICENSE.rhino-1.7.7.txt","type":"file","name":"LICENSE.rhino-1.7.7.txt","base_name":"LICENSE.rhino-1.7.7","extension":".txt","size":16780,"date":"2019-10-29","sha1":"62a64b3200a60f906f739ccce3bf0e8520e869b6","md5":"8e2372bdbf22c99279ae4599a13cc458","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,"licenses":[{"key":"mpl-2.0","score":100.0,"name":"Mozilla Public License 2.0","short_name":"MPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Mozilla","homepage_url":"http://mpl.mozilla.org/2012/01/03/announcing-mpl-2-0/","text_url":"http://www.mozilla.com/MPL/2.0/","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mpl-2.0","spdx_license_key":"MPL-2.0","spdx_url":"https://spdx.org/licenses/MPL-2.0","start_line":1,"end_line":1,"matched_rule":{"identifier":"mpl-2.0_33.RULE","license_expression":"mpl-2.0","licenses":["mpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":7,"matched_length":7,"match_coverage":100.0,"rule_relevance":100.0}},{"key":"mpl-2.0","score":100.0,"name":"Mozilla Public License 2.0","short_name":"MPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Mozilla","homepage_url":"http://mpl.mozilla.org/2012/01/03/announcing-mpl-2-0/","text_url":"http://www.mozilla.com/MPL/2.0/","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mpl-2.0","spdx_license_key":"MPL-2.0","spdx_url":"https://spdx.org/licenses/MPL-2.0","start_line":3,"end_line":375,"matched_rule":{"identifier":"mpl-2.0.LICENSE","license_expression":"mpl-2.0","licenses":["mpl-2.0"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":2363,"matched_length":2363,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mpl-2.0","mpl-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://mozilla.org/MPL/2.0","start_line":362,"end_line":362}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/LICENSE.sax.txt","type":"file","name":"LICENSE.sax.txt","base_name":"LICENSE.sax","extension":".txt","size":780,"date":"2019-10-25","sha1":"7e5f0754ea7f9f4f760ba35d9a19884051a4aa98","md5":"c929b73192000b4dc7b805242a124a1d","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,"licenses":[{"key":"sax-pd","score":100.0,"name":"SAX Public Domain Notice","short_name":"SAX-PD","category":"Public Domain","is_exception":false,"owner":"SAX Project","homepage_url":"http://www.saxproject.org/copying.html","text_url":"http://www.saxproject.org/copying.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:sax-pd","spdx_license_key":"SAX-PD","spdx_url":"https://spdx.org/licenses/SAX-PD","start_line":4,"end_line":20,"matched_rule":{"identifier":"sax-pd_2.RULE","license_expression":"sax-pd","licenses":["sax-pd"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":109,"matched_length":109,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["sax-pd"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"david@megginson.com","start_line":22,"end_line":22}],"urls":[{"url":"http://www.megginson.com/SAX/copying.html","start_line":4,"end_line":4},{"url":"http://saxproject.org/?selected=pd","start_line":6,"end_line":6},{"url":"http://www.saxproject.org/","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/LICENSE.serializer-2.7.2.txt","type":"file","name":"LICENSE.serializer-2.7.2.txt","base_name":"LICENSE.serializer-2.7.2","extension":".txt","size":11558,"date":"2018-04-21","sha1":"b314c7ebb7d599944981908b7f3ed33a30e78f3a","md5":"d229da563da18fe5d58cd95a6467d584","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":1,"end_line":201,"matched_rule":{"identifier":"apache-2.0.LICENSE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"1-hash","rule_length":1581,"matched_length":1581,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/","start_line":3,"end_line":3},{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":195,"end_line":195}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/LICENSE.xalan-2.7.2.txt","type":"file","name":"LICENSE.xalan-2.7.2.txt","base_name":"LICENSE.xalan-2.7.2","extension":".txt","size":142,"date":"2019-10-25","sha1":"2789674152845fae516efd035041628eac762cd7","md5":"375b714365d850c385030afe40b5c06f","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":1,"end_line":1,"matched_rule":{"identifier":"apache-2.0_313.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":7,"matched_length":7,"match_coverage":100.0,"rule_relevance":100.0}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/LICENSE.xerces_2_12_0.txt","type":"file","name":"LICENSE.xerces_2_12_0.txt","base_name":"LICENSE.xerces_2_12_0","extension":".txt","size":2893,"date":"2019-10-29","sha1":"b6a3654295f93940a5db82d1abe4c7af8dae270c","md5":"811ab293cbea1d3e0e73553f85a2172c","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,"licenses":[{"key":"apache-1.1","score":99.46,"name":"Apache License 1.1","short_name":"Apache 1.1","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://apache.org/licenses/LICENSE-1.1","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-1.1","spdx_license_key":"Apache-1.1","spdx_url":"https://spdx.org/licenses/Apache-1.1","start_line":2,"end_line":59,"matched_rule":{"identifier":"apache-1.1_63.RULE","license_expression":"apache-1.1","licenses":["apache-1.1"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":367,"matched_length":367,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-1.1"],"copyrights":[{"value":"Copyright (c) 1999-2002 The Apache Software Foundation","start_line":9,"end_line":10},{"value":"copyright (c) 1999, International Business Machines, Inc., http://www.ibm.com","start_line":54,"end_line":58}],"holders":[{"value":"The Apache Software Foundation","start_line":9,"end_line":10},{"value":"International Business Machines, Inc.","start_line":54,"end_line":58}],"authors":[{"value":"the Apache Software Foundation (http://www.apache.org/)","start_line":26,"end_line":28}],"packages":[],"emails":[{"email":"apache@apache.org","start_line":34,"end_line":34}],"urls":[{"url":"http://xmlapache.org/dist/xerces-j","start_line":2,"end_line":2},{"url":"http://www.apache.org/","start_line":27,"end_line":27},{"url":"http://www.ibm.com/","start_line":57,"end_line":57}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/LICENSE.xmlgraphics-commons-2.4.txt","type":"file","name":"LICENSE.xmlgraphics-commons-2.4.txt","base_name":"LICENSE.xmlgraphics-commons-2.4","extension":".txt","size":11358,"date":"2019-10-25","sha1":"2b8b815229aa8a61e483fb4ba0588b8b6c491890","md5":"3b83ef96387f14655fc854ddc3c6bd57","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":202,"matched_rule":{"identifier":"apache-2.0.LICENSE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"1-hash","rule_length":1581,"matched_length":1581,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"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}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/NOTICE-rhino-1.7.7.txt","type":"file","name":"NOTICE-rhino-1.7.7.txt","base_name":"NOTICE-rhino-1.7.7","extension":".txt","size":1863,"date":"2019-10-29","sha1":"66150a2ee9ca0f2c8cbf9705d353ab0337dc627b","md5":"d40fbd654456a8a7709ad89f8f05f104","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,"licenses":[{"key":"mpl-2.0","score":70.59,"name":"Mozilla Public License 2.0","short_name":"MPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Mozilla","homepage_url":"http://mpl.mozilla.org/2012/01/03/announcing-mpl-2-0/","text_url":"http://www.mozilla.com/MPL/2.0/","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mpl-2.0","spdx_license_key":"MPL-2.0","spdx_url":"https://spdx.org/licenses/MPL-2.0","start_line":1,"end_line":1,"matched_rule":{"identifier":"mpl-2.0_53.RULE","license_expression":"mpl-2.0","licenses":["mpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":17,"matched_length":12,"match_coverage":70.59,"rule_relevance":100.0}},{"key":"unknown-license-reference","score":90.0,"name":"Unknown License file reference","short_name":"Unknown License reference","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:unknown-license-reference","spdx_license_key":null,"spdx_url":"","start_line":2,"end_line":2,"matched_rule":{"identifier":"unknown-license-reference_46.RULE","license_expression":"unknown-license-reference","licenses":["unknown-license-reference"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":3,"matched_length":3,"match_coverage":100.0,"rule_relevance":90.0}},{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":12,"end_line":35,"matched_rule":{"identifier":"bsd-new_166.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":212,"matched_length":212,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mpl-2.0","unknown-license-reference","bsd-new"],"copyrights":[{"value":"Copyright 2010-2015 the V8 project authors","start_line":11,"end_line":11}],"holders":[{"value":"the V8 project authors","start_line":11,"end_line":11}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/NOTICE.serializer-2.7.2.txt","type":"file","name":"NOTICE.serializer-2.7.2.txt","base_name":"NOTICE.serializer-2.7.2","extension":".txt","size":864,"date":"2018-04-21","sha1":"ca90468dd2ea08ff739bd8b2b5fe5caf95a6d4c0","md5":"07a33ae5f86d354e436e196c1c1d1ccb","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":3,"matched_rule":{"identifier":"apache-2.0_300.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":14,"matched_length":14,"match_coverage":100.0,"rule_relevance":100.0}},{"key":"apache-2.0","score":90.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":9,"end_line":10,"matched_rule":{"identifier":"apache_5.RULE","license_expression":"apache-2.0 OR apache-1.1","licenses":["apache-2.0","apache-1.1"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":14,"matched_length":14,"match_coverage":100.0,"rule_relevance":90.0}},{"key":"apache-1.1","score":90.0,"name":"Apache License 1.1","short_name":"Apache 1.1","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://apache.org/licenses/LICENSE-1.1","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-1.1","spdx_license_key":"Apache-1.1","spdx_url":"https://spdx.org/licenses/Apache-1.1","start_line":9,"end_line":10,"matched_rule":{"identifier":"apache_5.RULE","license_expression":"apache-2.0 OR apache-1.1","licenses":["apache-2.0","apache-1.1"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":14,"matched_length":14,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["apache-2.0","apache-2.0 OR apache-1.1"],"copyrights":[{"value":"Copyright 1999-2006 The Apache Software Foundation","start_line":7,"end_line":7},{"value":"copyright (c) 1999-2002, Lotus Development Corporation., http://www.lotus.com","start_line":13,"end_line":18},{"value":"copyright (c) 2001-2002, Sun Microsystems., http://www.sun.com","start_line":13,"end_line":18},{"value":"copyright (c) 2003, IBM Corporation., http://www.ibm.com","start_line":13,"end_line":18}],"holders":[{"value":"The Apache Software Foundation","start_line":7,"end_line":7},{"value":"Lotus Development Corporation","start_line":13,"end_line":18},{"value":"Sun Microsystems","start_line":13,"end_line":18},{"value":"IBM Corporation","start_line":13,"end_line":18}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/","start_line":10,"end_line":10},{"url":"http://www.lotus.com/","start_line":14,"end_line":14},{"url":"http://www.sun.com/","start_line":16,"end_line":16},{"url":"http://www.ibm.com/","start_line":18,"end_line":18}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/NOTICE.xmlgraphics-commons-2.4.txt","type":"file","name":"NOTICE.xmlgraphics-commons-2.4.txt","base_name":"NOTICE.xmlgraphics-commons-2.4","extension":".txt","size":181,"date":"2019-10-29","sha1":"64b2606d5a9770ba25466236e368cb9b83d2861a","md5":"2ef37642d7d694ec84eec16a016fe54d","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,"licenses":[{"key":"apache-2.0","score":90.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":5,"matched_rule":{"identifier":"apache_5.RULE","license_expression":"apache-2.0 OR apache-1.1","licenses":["apache-2.0","apache-1.1"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":14,"matched_length":14,"match_coverage":100.0,"rule_relevance":90.0}},{"key":"apache-1.1","score":90.0,"name":"Apache License 1.1","short_name":"Apache 1.1","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://apache.org/licenses/LICENSE-1.1","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-1.1","spdx_license_key":"Apache-1.1","spdx_url":"https://spdx.org/licenses/Apache-1.1","start_line":4,"end_line":5,"matched_rule":{"identifier":"apache_5.RULE","license_expression":"apache-2.0 OR apache-1.1","licenses":["apache-2.0","apache-1.1"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":14,"matched_length":14,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["apache-2.0 OR apache-1.1"],"copyrights":[{"value":"Copyright 2006-2019 The Apache Software Foundation","start_line":2,"end_line":2}],"holders":[{"value":"The Apache Software Foundation","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/","start_line":5,"end_line":5}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/README.fop-transcoder-allinone-2.4.txt","type":"file","name":"README.fop-transcoder-allinone-2.4.txt","base_name":"README.fop-transcoder-allinone-2.4","extension":".txt","size":357,"date":"2019-10-29","sha1":"2d92d629fbe4618e65aae780d87812a59a0da853","md5":"ef261dbba05b236418069b95097fbf58","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":7,"matched_rule":{"identifier":"apache-2.0_313.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":7,"matched_length":7,"match_coverage":100.0,"rule_relevance":100.0}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://xmlgraphics.apache.org/fop","start_line":2,"end_line":2}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/README.js.txt","type":"file","name":"README.js.txt","base_name":"README.js","extension":".txt","size":743,"date":"2019-10-25","sha1":"213fc61f51141b6664a2b23ceb6257be68990747","md5":"1e766b95c4a097b47377d71618cb8c6a","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,"licenses":[{"key":"unknown","score":11.0,"name":"Unknown license detected but not recognized","short_name":"unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:unknown","spdx_license_key":null,"spdx_url":"","start_line":22,"end_line":22,"matched_rule":{"identifier":"lead-in_unknown_28.RULE","license_expression":"unknown","licenses":["unknown"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":2,"matched_length":2,"match_coverage":100.0,"rule_relevance":11}},{"key":"mpl-1.1","score":95.0,"name":"Mozilla Public License 1.1","short_name":"MPL 1.1","category":"Copyleft Limited","is_exception":false,"owner":"Mozilla","homepage_url":"http://www.mozilla.org/MPL/MPL-1.1.html","text_url":"http://www.mozilla.com/MPL/1.1/index.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mpl-1.1","spdx_license_key":"MPL-1.1","spdx_url":"https://spdx.org/licenses/MPL-1.1","start_line":22,"end_line":22,"matched_rule":{"identifier":"mpl-1.1_17.RULE","license_expression":"mpl-1.1","licenses":["mpl-1.1"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":5,"matched_length":5,"match_coverage":100.0,"rule_relevance":95.0}},{"key":"gpl-1.0-plus","score":100.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":23,"end_line":23,"matched_rule":{"identifier":"gpl-1.0-plus_146.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":5,"matched_length":5,"match_coverage":100.0,"rule_relevance":100.0}}],"license_expressions":["unknown","mpl-1.1","gpl-1.0-plus"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"anonymous@cvs-mirror.mozilla.org","start_line":11,"end_line":11}],"urls":[{"url":"ftp://ftp.mozilla.org/pub/mozilla.org/js/rhino1_6R5.zip","start_line":6,"end_line":6},{"url":"https://bugzilla.mozilla.org/attachment.cgi?id=288467","start_line":16,"end_line":16},{"url":"https://bugzilla.mozilla.org/show_bug.cgi?id=367627","start_line":20,"end_line":20}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/README.xalan-2.7.2.txt","type":"file","name":"README.xalan-2.7.2.txt","base_name":"README.xalan-2.7.2","extension":".txt","size":216,"date":"2019-10-25","sha1":"de379865e192d56214439f96d3ee92c5c5081ca6","md5":"9cccdeea57e85fcadc1adcdf25d6ef39","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":3,"matched_rule":{"identifier":"apache-2.0_313.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":7,"matched_length":7,"match_coverage":100.0,"rule_relevance":100.0}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://xml.apache.org/xalan-j","start_line":2,"end_line":2}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/README.xerces_2_12_0.txt","type":"file","name":"README.xerces_2_12_0.txt","base_name":"README.xerces_2_12_0","extension":".txt","size":214,"date":"2019-10-25","sha1":"ce43bd2b5ee01f301bead68cdd9f76aafff7fdee","md5":"bc178f40a1091981273a51133ee048a0","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,"licenses":[{"key":"apache-1.1","score":81.82,"name":"Apache License 1.1","short_name":"Apache 1.1","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://apache.org/licenses/LICENSE-1.1","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-1.1","spdx_license_key":"Apache-1.1","spdx_url":"https://spdx.org/licenses/Apache-1.1","start_line":2,"end_line":4,"matched_rule":{"identifier":"apache-1.1_28.RULE","license_expression":"apache-1.1","licenses":["apache-1.1"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":22,"matched_length":18,"match_coverage":81.82,"rule_relevance":100}}],"license_expressions":["apache-1.1"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://xml.apache.org/dist/xerces-j","start_line":2,"end_line":2}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/README.xml-apis-1.4.01.txt","type":"file","name":"README.xml-apis-1.4.01.txt","base_name":"README.xml-apis-1.4.01","extension":".txt","size":872,"date":"2019-10-29","sha1":"e384feacea65076b34956df7d6ab69a3c1bd3876","md5":"ce80ec72d4ca4adb7153a07d9a155482","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,"licenses":[{"key":"w3c","score":100.0,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":23,"end_line":25,"matched_rule":{"identifier":"w3c_and_w3c-documentation_1.RULE","license_expression":"w3c AND w3c-documentation","licenses":["w3c","w3c-documentation"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":28,"matched_length":28,"match_coverage":100.0,"rule_relevance":100}},{"key":"w3c-documentation","score":100.0,"name":"W3C Documentation License","short_name":"W3C Documentation License","category":"Free Restricted","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/TR/REC-DOM-Level-1/copyright-notice.html","text_url":"http://www.w3.org/TR/REC-DOM-Level-1/copyright-notice.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c-documentation","spdx_license_key":null,"spdx_url":"","start_line":23,"end_line":25,"matched_rule":{"identifier":"w3c_and_w3c-documentation_1.RULE","license_expression":"w3c AND w3c-documentation","licenses":["w3c","w3c-documentation"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":28,"matched_length":28,"match_coverage":100.0,"rule_relevance":100}},{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":27,"end_line":28,"matched_rule":{"identifier":"apache-2.0_229.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":22,"matched_length":22,"match_coverage":100.0,"rule_relevance":100.0}},{"key":"sax-pd","score":100.0,"name":"SAX Public Domain Notice","short_name":"SAX-PD","category":"Public Domain","is_exception":false,"owner":"SAX Project","homepage_url":"http://www.saxproject.org/copying.html","text_url":"http://www.saxproject.org/copying.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:sax-pd","spdx_license_key":"SAX-PD","spdx_url":"https://spdx.org/licenses/SAX-PD","start_line":30,"end_line":30,"matched_rule":{"identifier":"sax-pd_16.RULE","license_expression":"sax-pd","licenses":["sax-pd"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":8,"matched_length":8,"match_coverage":100.0,"rule_relevance":100.0}}],"license_expressions":["w3c AND w3c-documentation","apache-2.0","sax-pd"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://xml.apache.org/mirrors.cgi","start_line":4,"end_line":4},{"url":"http://xml.apache.org/commons/","start_line":8,"end_line":8}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/README.xml-apis-ext-1.3.04.txt","type":"file","name":"README.xml-apis-ext-1.3.04.txt","base_name":"README.xml-apis-ext-1.3.04","extension":".txt","size":593,"date":"2019-10-25","sha1":"1820559d3aa3965ed446df4a9ee5523ec305ddea","md5":"6368aad2078f2960d4156ef612ddacc0","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,"licenses":[{"key":"w3c","score":75.0,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":16,"end_line":19,"matched_rule":{"identifier":"w3c_and_w3c-documentation_1.RULE","license_expression":"w3c AND w3c-documentation","licenses":["w3c","w3c-documentation"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":28,"matched_length":21,"match_coverage":75.0,"rule_relevance":100}},{"key":"w3c-documentation","score":75.0,"name":"W3C Documentation License","short_name":"W3C Documentation License","category":"Free Restricted","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/TR/REC-DOM-Level-1/copyright-notice.html","text_url":"http://www.w3.org/TR/REC-DOM-Level-1/copyright-notice.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c-documentation","spdx_license_key":null,"spdx_url":"","start_line":16,"end_line":19,"matched_rule":{"identifier":"w3c_and_w3c-documentation_1.RULE","license_expression":"w3c AND w3c-documentation","licenses":["w3c","w3c-documentation"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":28,"matched_length":21,"match_coverage":75.0,"rule_relevance":100}},{"key":"unknown","score":16.0,"name":"Unknown license detected but not recognized","short_name":"unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:unknown","spdx_license_key":null,"spdx_url":"","start_line":17,"end_line":17,"matched_rule":{"identifier":"lead-in_unknown_25.RULE","license_expression":"unknown","licenses":["unknown"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":3,"matched_length":3,"match_coverage":100.0,"rule_relevance":16}}],"license_expressions":["w3c AND w3c-documentation","unknown"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://xml.apache.org/mirrors.cgi","start_line":4,"end_line":4},{"url":"http://xml.apache.org/commons/","start_line":8,"end_line":8}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/rhino-1.7.7.jar","type":"file","name":"rhino-1.7.7.jar","base_name":"rhino-1.7.7","extension":".jar","size":1255595,"date":"2019-10-25","sha1":"3a9ea863b86126b0ed8f2fe2230412747cd3c254","md5":"100d8ec9bc093bfb4137377cdd0c3868","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/rhino-1.7.7.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/serializer-2.7.2.jar","type":"file","name":"serializer-2.7.2.jar","base_name":"serializer-2.7.2","extension":".jar","size":276420,"date":"2019-10-29","sha1":"24247f3bb052ee068971393bdb83e04512bb1c3c","md5":"e8325763fd4235f174ab7b72ed815db1","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/serializer-2.7.2.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/xalan-2.7.2.jar","type":"file","name":"xalan-2.7.2.jar","base_name":"xalan-2.7.2","extension":".jar","size":3154938,"date":"2019-10-25","sha1":"d55d3f02a56ec4c25695fe67e1334ff8c2ecea23","md5":"6aa6607802502c8016b676f25f8e4873","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/xalan-2.7.2.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/xercesImpl-2.12.0.jar","type":"file","name":"xercesImpl-2.12.0.jar","base_name":"xercesImpl-2.12.0","extension":".jar","size":1386397,"date":"2019-10-25","sha1":"f02c844149fd306601f20e0b34853a670bef7fa2","md5":"b89632b53c4939a2982bcb52806f6dec","mime_type":"application/java-archive","file_type":"Java archive data (JAR)","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/xercesImpl-2.12.0.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/xml-apis-1.4.01.jar","type":"file","name":"xml-apis-1.4.01.jar","base_name":"xml-apis-1.4.01","extension":".jar","size":220536,"date":"2019-10-25","sha1":"3789d9fada2d3d458c4ba2de349d48780f381ee3","md5":"7eaad6fea5925cca6c36ee8b3e02ac9d","mime_type":"application/java-archive","file_type":"Java archive data (JAR)","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/xml-apis-1.4.01.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/xml-apis-ext-1.3.04.jar","type":"file","name":"xml-apis-ext-1.3.04.jar","base_name":"xml-apis-ext-1.3.04","extension":".jar","size":85686,"date":"2019-10-25","sha1":"41a8b86b358e87f3f13cf46069721719105aff66","md5":"bcb07d3b8d2397db7a3013b6465d347b","mime_type":"application/java-archive","file_type":"Java archive data (JAR)","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/xml-apis-ext-1.3.04.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/xmlgraphics-commons-2.4.jar","type":"file","name":"xmlgraphics-commons-2.4.jar","base_name":"xmlgraphics-commons-2.4","extension":".jar","size":674445,"date":"2019-10-25","sha1":"d570c64177cdeb928b7bc63314dd88da0fca1c53","md5":"31c8ebdde81c5fe83bc2dfef9484deec","mime_type":"application/java-archive","file_type":"Java archive data (JAR)","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/xmlgraphics-commons-2.4.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/build","type":"directory","name":"build","base_name":"build","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":8,"dirs_count":0,"size_count":2283371,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/build/ant-1.9.7.jar","type":"file","name":"ant-1.9.7.jar","base_name":"ant-1.9.7","extension":".jar","size":2036195,"date":"2019-10-25","sha1":"3b2a10512ee6537d3852c9b693a0284dcab5de68","md5":"a14502c25ee6bc76c4614315845b29e9","mime_type":"application/java-archive","file_type":"Java archive data (JAR)","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/build/ant-1.9.7.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/build/ant-launcher-1.9.7.jar","type":"file","name":"ant-launcher-1.9.7.jar","base_name":"ant-launcher-1.9.7","extension":".jar","size":18365,"date":"2019-10-25","sha1":"224857a490283e72da13ffe3082dea62c558ec76","md5":"f099489fbe6cc9665cb690b4b03cf48c","mime_type":"application/java-archive","file_type":"Java archive data (JAR)","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/build/ant-launcher-1.9.7.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/build/crimson-1.1.3.jar","type":"file","name":"crimson-1.1.3.jar","base_name":"crimson-1.1.3","extension":".jar","size":205045,"date":"2019-10-25","sha1":"31e3dac9777abfec809ad9315f8b5d283cd46c40","md5":"bad5c2ea1434205c6644f8c0e87cb210","mime_type":"application/zip","file_type":"Zip archive data, at least v1.0 to extract","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"jar","namespace":null,"name":null,"version":null,"qualifiers":{},"subpath":null,"primary_language":"Java","description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/build/crimson-1.1.3.jar","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":null,"repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/build/LICENSE.ant-1.9.7.txt","type":"file","name":"LICENSE.ant-1.9.7.txt","base_name":"LICENSE.ant-1.9.7","extension":".txt","size":15289,"date":"2019-10-25","sha1":"ed8378c38db4be13fca7c449b1bd032222495e81","md5":"c6050248a5a97f67ac931b5254c058cb","mime_type":"text/plain","file_type":"ISO-8859 text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":202,"matched_rule":{"identifier":"apache-2.0.LICENSE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":1581,"matched_length":1581,"match_coverage":100.0,"rule_relevance":100}},{"key":"w3c","score":100.0,"name":"W3C Software Notice and License","short_name":"W3C Software Notice and License","category":"Permissive","is_exception":false,"owner":"W3C - World Wide Web Consortium","homepage_url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","text_url":"http://www.open-xchange.com/fileadmin/downloads/W3C_SOFTWARE_NOTICE_AND_LICENSE.pdf","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:w3c","spdx_license_key":"W3C","spdx_url":"https://spdx.org/licenses/W3C","start_line":202,"end_line":255,"matched_rule":{"identifier":"w3c-software-20021231_2.RULE","license_expression":"w3c","licenses":["w3c"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":445,"matched_length":445,"match_coverage":100.0,"rule_relevance":100}},{"key":"sax-pd","score":72.48,"name":"SAX Public Domain Notice","short_name":"SAX-PD","category":"Public Domain","is_exception":false,"owner":"SAX Project","homepage_url":"http://www.saxproject.org/copying.html","text_url":"http://www.saxproject.org/copying.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:sax-pd","spdx_license_key":"SAX-PD","spdx_url":"https://spdx.org/licenses/SAX-PD","start_line":259,"end_line":269,"matched_rule":{"identifier":"sax-pd_2.RULE","license_expression":"sax-pd","licenses":["sax-pd"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":109,"matched_length":79,"match_coverage":72.48,"rule_relevance":100}}],"license_expressions":["apache-2.0","w3c","sax-pd"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"site-policy@w3.org","start_line":255,"end_line":255},{"email":"david@megginson.com","start_line":271,"end_line":271}],"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},{"url":"http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231","start_line":206,"end_line":206},{"url":"http://www.megginson.com/SAX/copying.html","start_line":259,"end_line":259},{"url":"http://saxproject.org/?selected=pd","start_line":261,"end_line":261}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/build/LICENSE.crimson-1.1.3.txt","type":"file","name":"LICENSE.crimson-1.1.3.txt","base_name":"LICENSE.crimson-1.1.3","extension":".txt","size":2870,"date":"2019-10-25","sha1":"eb8c5c1cd3a09d0e46d60dff31c6522f6ed93175","md5":"bb5917a9996f5c7dbcbb2bea57d1eb53","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,"licenses":[{"key":"apache-1.1","score":97.82,"name":"Apache License 1.1","short_name":"Apache 1.1","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://apache.org/licenses/LICENSE-1.1","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-1.1","spdx_license_key":"Apache-1.1","spdx_url":"https://spdx.org/licenses/Apache-1.1","start_line":2,"end_line":58,"matched_rule":{"identifier":"apache-1.1_63.RULE","license_expression":"apache-1.1","licenses":["apache-1.1"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":367,"matched_length":359,"match_coverage":97.82,"rule_relevance":100}}],"license_expressions":["apache-1.1"],"copyrights":[{"value":"Copyright (c) 1999-2002 The Apache Software Foundation","start_line":9,"end_line":10},{"value":"copyright (c) 1999, Sun Microsystems, Inc., http://www.sun.com","start_line":54,"end_line":58}],"holders":[{"value":"The Apache Software Foundation","start_line":9,"end_line":10},{"value":"Sun Microsystems, Inc.","start_line":54,"end_line":58}],"authors":[{"value":"the Apache Software Foundation (http://www.apache.org/)","start_line":26,"end_line":28}],"packages":[],"emails":[{"email":"apache@apache.org","start_line":34,"end_line":34}],"urls":[{"url":"http://xml.apache.org/crimson","start_line":2,"end_line":2},{"url":"http://www.apache.org/","start_line":27,"end_line":27},{"url":"http://www.sun.com/","start_line":57,"end_line":57}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/build/README.ant-1.9.7.txt","type":"file","name":"README.ant-1.9.7.txt","base_name":"README.ant-1.9.7","extension":".txt","size":4119,"date":"2019-10-25","sha1":"b1587f9ad0ccfb483ea6a1fd62b0cc622173e6ff","md5":"f16ea05c772f4e5c8a36f02980a3daa7","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,"licenses":[{"key":"unknown","score":22.0,"name":"Unknown license detected but not recognized","short_name":"unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:unknown","spdx_license_key":null,"spdx_url":"","start_line":63,"end_line":63,"matched_rule":{"identifier":"lead-in_unknown_66.RULE","license_expression":"unknown","licenses":["unknown"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":4,"matched_length":4,"match_coverage":100.0,"rule_relevance":22}},{"key":"unknown","score":16.0,"name":"Unknown license detected but not recognized","short_name":"unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:unknown","spdx_license_key":null,"spdx_url":"","start_line":80,"end_line":80,"matched_rule":{"identifier":"unknown_55.RULE","license_expression":"unknown","licenses":["unknown"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":3,"matched_length":3,"match_coverage":100.0,"rule_relevance":16}}],"license_expressions":["unknown","unknown"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://ant.apache.org/","start_line":49,"end_line":49},{"url":"http://www.wassenaar.org/","start_line":72,"end_line":72},{"url":"http://www.jcraft.com/jsch/index.html","start_line":89,"end_line":89},{"url":"http://java.sun.com/javase/technologies/security/","start_line":91,"end_line":91}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/build/README.crimson-1.1.3.txt","type":"file","name":"README.crimson-1.1.3.txt","base_name":"README.crimson-1.1.3","extension":".txt","size":217,"date":"2019-10-25","sha1":"e21c1ac29ea700aecbc05b6fa5aa30082a92fa3c","md5":"32df63b6735d89216658bb334154380f","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,"licenses":[{"key":"apache-1.1","score":68.18,"name":"Apache License 1.1","short_name":"Apache 1.1","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://apache.org/licenses/LICENSE-1.1","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-1.1","spdx_license_key":"Apache-1.1","spdx_url":"https://spdx.org/licenses/Apache-1.1","start_line":2,"end_line":3,"matched_rule":{"identifier":"apache-1.1_28.RULE","license_expression":"apache-1.1","licenses":["apache-1.1"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":22,"matched_length":15,"match_coverage":68.18,"rule_relevance":100}}],"license_expressions":["apache-1.1"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://xml.apache.org/crimson","start_line":2,"end_line":2}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/lib/build/svn-info-revision.xsl","type":"file","name":"svn-info-revision.xsl","base_name":"svn-info-revision","extension":".xsl","size":1271,"date":"2019-10-25","sha1":"02c2397a78ef8041040153e808bf6c28642e79d2","md5":"d836ab8ee740e403328f02702467d54a","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples","type":"directory","name":"samples","base_name":"samples","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":467,"dirs_count":52,"size_count":5278265,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/3D.svg","type":"file","name":"3D.svg","base_name":"3D","extension":".svg","size":19598,"date":"2019-10-25","sha1":"25d9c7dd5e904f4f60daa79ad4212b27d0c5456c","md5":"f374153fc6f37f3f7f92e2d94a4d09b7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/anne.pdf","type":"file","name":"anne.pdf","base_name":"anne","extension":".pdf","size":53162,"date":"2019-10-25","sha1":"bc5f444450290a244a52830ba51cc7467d5f3ca4","md5":"5740b5e9242437f73db63e4b553eca32","mime_type":"application/pdf","file_type":"PDF document, version 1.4","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/anne.png","type":"file","name":"anne.png","base_name":"anne","extension":".png","size":56829,"date":"2019-10-25","sha1":"4124c595680057286e06b5036e19da8a34fbcf57","md5":"17b58051a80dd209166915bf753353e6","mime_type":"image/png","file_type":"PNG image data, 450 x 500, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/anne.svg","type":"file","name":"anne.svg","base_name":"anne","extension":".svg","size":86690,"date":"2019-10-25","sha1":"22c55bfecb3f613b9e4de425a2603bb396dfe8f0","md5":"e95499223a9ac2d37c9536fe9bcf6383","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/asf-logo.svg","type":"file","name":"asf-logo.svg","base_name":"asf-logo","extension":".svg","size":101328,"date":"2019-10-25","sha1":"5b8990df9d1b9493bb7a9d6cfabb7f0834dbd6f2","md5":"4e190133eaa4867f059c5ed7b30c347f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11},{"url":"http://www.w3.org/1999/xlink","start_line":52,"end_line":52}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/barChart.svg","type":"file","name":"barChart.svg","base_name":"barChart","extension":".svg","size":5999,"date":"2019-10-25","sha1":"5f312fd33997ca826800a5f75aa7442119e6d241","md5":"dbd85c418788484c7a40afa3fc396638","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":28},{"value":"neeme.praks@one.lv","start_line":26,"end_line":28}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26},{"email":"neeme.praks@one.lv","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/batik3D.svg","type":"file","name":"batik3D.svg","base_name":"batik3D","extension":".svg","size":105758,"date":"2019-10-25","sha1":"1db460473c6ceefd7dc0f8b37cb4284a7acdf726","md5":"4e70b04010f53b2c77568f049a4cbd4d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/batik70.svg","type":"file","name":"batik70.svg","base_name":"batik70","extension":".svg","size":11885,"date":"2019-10-25","sha1":"1d47366e0c281434f6a36fbe06a116bfdbea85b9","md5":"9e6281c4394e4fac4c6efea674ff7e5c","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/batikBatik.svg","type":"file","name":"batikBatik.svg","base_name":"batikBatik","extension":".svg","size":17069,"date":"2019-10-25","sha1":"e1c79800709812e9ad27a2bd8eef4b09e23b6ac9","md5":"270262b995d19a138d4d74d478fe39e7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bill.haneman@ireland.sun.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":28,"end_line":28}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/batikCandy.svg","type":"file","name":"batikCandy.svg","base_name":"batikCandy","extension":".svg","size":6508,"date":"2019-10-25","sha1":"a27ceb3ae4f245f45a13a52fcf86a3d763b27cbd","md5":"44249150f0e4867c03dded908b4a691e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/batikFX.svg","type":"file","name":"batikFX.svg","base_name":"batikFX","extension":".svg","size":17318,"date":"2019-10-25","sha1":"50d2eefd0ab67b5b12be98bd1813dae2c142e059","md5":"b9b7746b0142a3f5ea5bdaed22cde7b0","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/batikLogo.svg","type":"file","name":"batikLogo.svg","base_name":"batikLogo","extension":".svg","size":16659,"date":"2019-10-25","sha1":"c095a913bbe4824045a4755fbe9f44002179650e","md5":"8b91c227f41fe5886feecad472e0e8f3","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":26,"end_line":29},{"value":"thomas.deweese@kodak.com","start_line":26,"end_line":29},{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":29}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":26,"end_line":26},{"email":"thomas.deweese@kodak.com","start_line":27,"end_line":27},{"email":"bella.robinson@cmis.csiro.au","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/batikYin.svg","type":"file","name":"batikYin.svg","base_name":"batikYin","extension":".svg","size":26821,"date":"2019-10-25","sha1":"ed6b95bc0250bfdf96c9a12b631a60ff05b95e2a","md5":"efe1a707e4d1ee1c0ee2dd8c606c26e1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/chessboard.svg","type":"file","name":"chessboard.svg","base_name":"chessboard","extension":".svg","size":5380,"date":"2019-10-25","sha1":"5959fda0ea95a74ffed8d28abe30599fa4568a08","md5":"15a2ae684fa44eed959b96793216f82e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/chessFont.svg","type":"file","name":"chessFont.svg","base_name":"chessFont","extension":".svg","size":20387,"date":"2019-10-25","sha1":"da8747d5eaf38cfa41fe0de901fffda196329430","md5":"23cf80f6e0ff866ad51f8d0132553d20","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Max Froumentin ","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"mf@w3.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/gradients.svg","type":"file","name":"gradients.svg","base_name":"gradients","extension":".svg","size":5906,"date":"2019-10-25","sha1":"3a977a3be610d6f95442f795af550406b6941a02","md5":"3c2e7639087d95ff282619000f73de18","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/GVT.svg","type":"file","name":"GVT.svg","base_name":"GVT","extension":".svg","size":7515,"date":"2019-10-25","sha1":"bb5bcbd7d5429b19714494f67085ad65e745731a","md5":"fa35602d1a30ea642ec483d2b86b7e40","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/henryV.svg","type":"file","name":"henryV.svg","base_name":"henryV","extension":".svg","size":6244,"date":"2019-10-25","sha1":"c5dca97e8e987326edfd1f4b81c64b21f6c18085","md5":"dbdcd1033043f427f670bef58d1b35f1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bill.haneman@ireland.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/logoShadowOffset.svg","type":"file","name":"logoShadowOffset.svg","base_name":"logoShadowOffset","extension":".svg","size":43219,"date":"2019-10-25","sha1":"36341ee083a97f1507a9329d6498cff3f523c2b3","md5":"76179f7e69731038a6f6be3a94a7e0af","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/logoTexture.svg","type":"file","name":"logoTexture.svg","base_name":"logoTexture","extension":".svg","size":26620,"date":"2019-10-25","sha1":"a5eadff23ab2b6a593d62a09e8f504ff610bdfc6","md5":"9d75ed25a6caa79c0dba4a78ddfb8f0d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":28,"end_line":28}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/mapSpain.svg","type":"file","name":"mapSpain.svg","base_name":"mapSpain","extension":".svg","size":261224,"date":"2019-10-25","sha1":"56dfac001e87dae05ec3566066987d2c0d4b984d","md5":"646a1cf592f430ae7f5a527da5212eb2","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Andreas Neuman","start_line":26,"end_line":28},{"value":"Andreas Neumann","start_line":31,"end_line":33},{"value":"Andreas Neumann","start_line":1633,"end_line":1637}],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/mapWaadt.svg","type":"file","name":"mapWaadt.svg","base_name":"mapWaadt","extension":".svg","size":262925,"date":"2019-10-25","sha1":"9f81e75b7a2f5b5db380f98377fb8d8dded7ccea","md5":"2ff20d69343b4ddd5e4cb1a3e08c1c9d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Andreas Neuman","start_line":25,"end_line":27}],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/mathMetal.svg","type":"file","name":"mathMetal.svg","base_name":"mathMetal","extension":".svg","size":30539,"date":"2019-10-25","sha1":"53a147bfa4489ceb836e3bcc614dd702ea48e5bf","md5":"9edbd69339f71f4ad90479958264f1d1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Christophe.Held@sophia.inria.fr","start_line":27,"end_line":29},{"value":"vincent.hardy@eng.sun.com","start_line":27,"end_line":29}],"packages":[],"emails":[{"email":"Christophe.Held@sophia.inria.fr","start_line":27,"end_line":27},{"email":"vincent.hardy@eng.sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/mines.svg","type":"file","name":"mines.svg","base_name":"mines","extension":".svg","size":15614,"date":"2019-10-25","sha1":"df9860bedbc46ed9da0f2a618969937d9740a440","md5":"a1fab049a5d2071d1fecbef0246e93df","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"thomas.deweese@kodak.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/moonPhases.svg","type":"file","name":"moonPhases.svg","base_name":"moonPhases","extension":".svg","size":95492,"date":"2019-10-25","sha1":"d625f962c3e6ebe1f709dbd97b07b2f69a8c3f66","md5":"1014b43426bf16b8e95f755fc917cdfa","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":27,"end_line":27}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/sizeOfSun.svg","type":"file","name":"sizeOfSun.svg","base_name":"sizeOfSun","extension":".svg","size":11315,"date":"2019-10-25","sha1":"1e86ad0c28e6c018cea2e35ed7761bf1e7f0f3be","md5":"b5a3fb372b60579c7aae8f1ae05ec032","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":29,"end_line":29}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/starfield.svg","type":"file","name":"starfield.svg","base_name":"starfield","extension":".svg","size":12973,"date":"2019-10-25","sha1":"a3be93fd1a7a95fd89117ce8f4ce95f5d7cf1545","md5":"477fabeca33e5432f74c92d21a35ba6e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"shillion@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"shillion@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/strokeFont.svg","type":"file","name":"strokeFont.svg","base_name":"strokeFont","extension":".svg","size":71133,"date":"2019-10-25","sha1":"cdaa2e1626c42e71f1404d8b3f0c420df08d1440","md5":"2ea551e0ca4103d1ab621255649002de","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thomas DeWeese ","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/sunRise.svg","type":"file","name":"sunRise.svg","base_name":"sunRise","extension":".svg","size":67290,"date":"2019-10-25","sha1":"5b075dce4ac403a85d49cb919c6a040f3633b846","md5":"d3a8af14ba14f7646e12b301e3764661","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@eng.sun.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"vhardy@eng.sun.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":28,"end_line":28},{"url":"http://www.larabiefonts.com/","start_line":357,"end_line":357}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/sydney.svg","type":"file","name":"sydney.svg","base_name":"sydney","extension":".svg","size":6306,"date":"2019-10-25","sha1":"1ddf54bfdbb7bfcff6c2d98c7b4c2460aed9e577","md5":"60691578ff1736b5d9fd5c03ac34f4c6","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":8,"end_line":21,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":15,"end_line":15},{"url":"http://www.w3.org/1999/xlink","start_line":26,"end_line":26}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/textRotate.svg","type":"file","name":"textRotate.svg","base_name":"textRotate","extension":".svg","size":5046,"date":"2019-10-25","sha1":"0d89db66e26eaf2a2fed546fe0af81b08ec250f5","md5":"4e1e9ce7ddf347d63100a3c4424e97c3","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bill.haneman@ireland.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/textRotateShadows.svg","type":"file","name":"textRotateShadows.svg","base_name":"textRotateShadows","extension":".svg","size":4826,"date":"2019-10-25","sha1":"40e6e9a2471635adf097b5ca7d354c7dbac3bb0b","md5":"f7fadd8ce1d28cbc92df60ed9b931125","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bill.haneman@ireland.sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions","type":"directory","name":"extensions","base_name":"extensions","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":14,"dirs_count":1,"size_count":94361,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions/colorSwitch.svg","type":"file","name":"colorSwitch.svg","base_name":"colorSwitch","extension":".svg","size":5814,"date":"2019-10-25","sha1":"96ac7f0eb7b365fb92816ae0c07f0e175ea7aafb","md5":"f4fbd92f6fbb884ce12063b5cb7f89ce","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35},{"url":"http://xml.apache.org/batik/ext","start_line":36,"end_line":36},{"url":"http://xml.apache.org/batik/ext/colorSwitch/1.0","start_line":61,"end_line":61}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions/extension.css","type":"file","name":"extension.css","base_name":"extension","extension":".css","size":972,"date":"2019-10-25","sha1":"0c95f7fae3cc47bd35c4c06bb3504110d15dc5d2","md5":"72dc59746dbc0c27446d05a3f61745f3","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions/flowText.svg","type":"file","name":"flowText.svg","base_name":"flowText","extension":".svg","size":4464,"date":"2019-10-25","sha1":"d1f2936a7e71b5b372d8fbadb1e73c63b8156b88","md5":"721fb7d0a37d5f19cea805da7896cdd1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/ext","start_line":48,"end_line":48}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions/flowTextAlign.svg","type":"file","name":"flowTextAlign.svg","base_name":"flowTextAlign","extension":".svg","size":7269,"date":"2019-10-25","sha1":"55872c1f7c317450029d47e1845636668456af72","md5":"cf5ab399d555475400f2914e942367dd","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33},{"url":"http://xml.apache.org/batik/ext","start_line":48,"end_line":48}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions/gears.svg","type":"file","name":"gears.svg","base_name":"gears","extension":".svg","size":3247,"date":"2019-10-25","sha1":"20fb90084dbd0c6cfae2192f880e1ba5d845a447","md5":"f3f12decfde3eb210ef6dce9f37a766e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":27,"end_line":27},{"url":"http://xml.apache.org/batik/ext","start_line":28,"end_line":28}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions/histogramNormalization.jpg","type":"file","name":"histogramNormalization.jpg","base_name":"histogramNormalization","extension":".jpg","size":43304,"date":"2019-10-25","sha1":"beaa63f8972e37bed2f0ba0b870b6b54022ed1f5","md5":"1324d422bff79a2f0564ebbaa0867a5a","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 480x720, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions/histogramNormalization.svg","type":"file","name":"histogramNormalization.svg","base_name":"histogramNormalization","extension":".svg","size":4063,"date":"2019-10-25","sha1":"d8aaa80257b5509baa715020c2521da9e2d284ff","md5":"9936ec3360ce4b7d9bf203a1dde02f93","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/ext","start_line":34,"end_line":34},{"url":"http://xml.apache.org/batik/ext/histogramNormalization/1.0","start_line":54,"end_line":54}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions/regularPolygon.svg","type":"file","name":"regularPolygon.svg","base_name":"regularPolygon","extension":".svg","size":3829,"date":"2019-10-25","sha1":"06b84bd17d4cc4f4bcb2e60b17bbf34e3e4a3f19","md5":"f9c02f03eb334fc88797448aff7274fa","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/ext","start_line":34,"end_line":34},{"url":"http://xml.apache.org/batik/ext/poly/1.0","start_line":47,"end_line":47}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions/solidColor.svg","type":"file","name":"solidColor.svg","base_name":"solidColor","extension":".svg","size":4720,"date":"2019-10-25","sha1":"13374842937fd65e46707c3187c92ba9e574cfa3","md5":"baac1579d47c7fae9ead2594fd5db941","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35},{"url":"http://xml.apache.org/batik/ext","start_line":37,"end_line":37},{"url":"http://xml.apache.org/batik/ext/solidColor/1.0","start_line":62,"end_line":62}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions/solidColor2.svg","type":"file","name":"solidColor2.svg","base_name":"solidColor2","extension":".svg","size":4746,"date":"2019-10-25","sha1":"3eb9d24ff6db10548d20c8585866129188886991","md5":"72d610f9c69f257f3ab4787c719f4208","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35},{"url":"http://xml.apache.org/batik/ext","start_line":37,"end_line":37},{"url":"http://xml.apache.org/batik/ext/solidColor/1.0","start_line":62,"end_line":62}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions/star.svg","type":"file","name":"star.svg","base_name":"star","extension":".svg","size":3816,"date":"2019-10-25","sha1":"1ccacc528aa6b09508ba99976c3b6da5ac96cf9d","md5":"8ae3b63ff038378edd3dfb07d406010e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thomas.DeWeese@Kodak.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/ext","start_line":33,"end_line":33},{"url":"http://xml.apache.org/batik/ext/star/1.0","start_line":46,"end_line":46}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions/xsl","type":"directory","name":"xsl","base_name":"xsl","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":8117,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions/xsl/data.xml","type":"file","name":"data.xml","base_name":"data","extension":".xml","size":1796,"date":"2019-10-25","sha1":"1cd5fe8a7aaca1fc48cf247019ac3d6509eb7ad3","md5":"253eb026798f8b1a1b081091b70843db","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":28,"end_line":29}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions/xsl/data.xsl","type":"file","name":"data.xsl","base_name":"data","extension":".xsl","size":3211,"date":"2019-10-25","sha1":"3998795021dea3a47a96aac16bdbd0964ba0c91e","md5":"b5b837ad0563907631b454d496cedf85","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/extensions/xsl/nodata.xsl","type":"file","name":"nodata.xsl","base_name":"nodata","extension":".xsl","size":3110,"date":"2019-10-25","sha1":"4068d06679c5e9e29a91e83d1b63df1121ae8d7e","md5":"ca69e17f73a0fb6fdfe0eccd6cc5b96b","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/solitaire","type":"directory","name":"solitaire","base_name":"solitaire","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":8,"dirs_count":2,"size_count":107621,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/solitaire/klondike.svg","type":"file","name":"klondike.svg","base_name":"klondike","extension":".svg","size":10922,"date":"2019-10-25","sha1":"8daa012d1ccfec35888207618c7372b59347ffcb","md5":"13d83d2f6c332940d278f1ef5025bb60","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/solitaire/towers.svg","type":"file","name":"towers.svg","base_name":"towers","extension":".svg","size":25211,"date":"2019-10-25","sha1":"60b7da25b48fb1325d60d1de5735408327a993df","md5":"7f7e896de678d331e67e896b68ca69ca","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11},{"url":"http://www.w3.org/1999/xlink","start_line":26,"end_line":26}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/solitaire/cards","type":"directory","name":"cards","base_name":"cards","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":46263,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/solitaire/cards/default.svg","type":"file","name":"default.svg","base_name":"default","extension":".svg","size":46263,"date":"2019-10-25","sha1":"992d2eba53411d910b2c8222b37e73fabc89b0d8","md5":"b2b6b64db774884350815ffd8556bb2b","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9},{"url":"http://www.w3.org/1999/xlink","start_line":25,"end_line":25}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/solitaire/script","type":"directory","name":"script","base_name":"script","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":25225,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/solitaire/script/board.js","type":"file","name":"board.js","base_name":"board","extension":".js","size":4555,"date":"2019-10-25","sha1":"0e9b2f2a7cd8322d6237c9534b6a8251ede63dd3","md5":"fd127bd1c467fa6c52496633e2bc8f79","mime_type":"text/plain","file_type":"ASCII text","programming_language":"JavaScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9},{"url":"http://www.w3.org/1999/xlink","start_line":18,"end_line":18}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/solitaire/script/card.js","type":"file","name":"card.js","base_name":"card","extension":".js","size":6081,"date":"2019-10-25","sha1":"f7916f0981bdec233fba0c1db271139ef8e0ac2c","md5":"b0b13c6a8a9247114f8b1a7fbaa63ba5","mime_type":"text/plain","file_type":"ASCII text","programming_language":"JavaScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9},{"url":"http://www.w3.org/1999/xlink","start_line":18,"end_line":18}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/solitaire/script/deck.js","type":"file","name":"deck.js","base_name":"deck","extension":".js","size":1609,"date":"2019-10-25","sha1":"6464c20ec6e83ffc4121df9e5d7a4aba1f3bb48d","md5":"a1113c28c8c6f0f4ffe649c6f80dfab4","mime_type":"text/plain","file_type":"ASCII text","programming_language":"JavaScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/solitaire/script/pile.js","type":"file","name":"pile.js","base_name":"pile","extension":".js","size":10691,"date":"2019-10-25","sha1":"8bea71451449b900adc2faa10d4e88482ff57941","md5":"b01c16ed3c90690f180d827a1b9964bd","mime_type":"text/plain","file_type":"ASCII text","programming_language":"JavaScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":21,"end_line":21}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/solitaire/script/util.js","type":"file","name":"util.js","base_name":"util","extension":".js","size":2289,"date":"2019-10-25","sha1":"c7a58f927c337a84b6d12ab138dff690a5b15c32","md5":"debb10edc6bdd4ad49c441be48809be8","mime_type":"text/plain","file_type":"ASCII text","programming_language":"JavaScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests","type":"directory","name":"tests","base_name":"tests","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":413,"dirs_count":46,"size_count":3590705,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":72,"dirs_count":21,"size_count":870340,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/icc","type":"directory","name":"icc","base_name":"icc","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":740,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/icc/changeColor.icm","type":"file","name":"changeColor.icm","base_name":"changeColor","extension":".icm","size":740,"date":"2019-10-25","sha1":"d6f5717173554f387d06b60576213b4c48b74774","md5":"38a2de183517e70881972962563e5274","mime_type":"application/vnd.iccprofile","file_type":"Microsoft ICM Color Profile","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) Eastman Kodak Company, 1999","start_line":18,"end_line":18}],"holders":[{"value":"Eastman Kodak Company","start_line":18,"end_line":18}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images","type":"directory","name":"images","base_name":"images","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":39,"dirs_count":0,"size_count":497409,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/arabic.png","type":"file","name":"arabic.png","base_name":"arabic","extension":".png","size":5012,"date":"2019-10-25","sha1":"26cef1df10c2c2f6c22ce8e2e73a4f9d3bf0baa9","md5":"3bd9da250369b0c58b53c0ca779d9ea6","mime_type":"image/png","file_type":"PNG image data, 388 x 58, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/bmpCursor.bmp","type":"file","name":"bmpCursor.bmp","base_name":"bmpCursor","extension":".bmp","size":3128,"date":"2019-10-25","sha1":"d098c331bb316b70638a10fd5fda3d5d232f3d94","md5":"5fde605a9613601aabcec5574fae5664","mime_type":"image/x-ms-bmp","file_type":"PC bitmap, Windows 3.x format, 32 x 32 x 24","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/brushedMetal.jpg","type":"file","name":"brushedMetal.jpg","base_name":"brushedMetal","extension":".jpg","size":94851,"date":"2019-10-25","sha1":"832e1e0776fe7e72af3a5675ad08ab45950aa77a","md5":"99b17e1134d1ae54374353c64915d615","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.02, resolution (DPI), density 72x72, segment length 16, baseline, precision 8, 450x500, frames 3, comment: \"File written by Adobe Photoshop\\250 5.2\", baseline, precision 8, 450x500, frames 3, baseline, precision 8, 450x500, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/canaryRelief.png","type":"file","name":"canaryRelief.png","base_name":"canaryRelief","extension":".png","size":3039,"date":"2019-10-25","sha1":"71aa54b327e467090b99eec4f0fbf90acce252c7","md5":"4ea4e8aa3858662ca374603bbc7b7b74","mime_type":"image/png","file_type":"PNG image data, 200 x 92, 8-bit grayscale, interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/hotSpotCenter.png","type":"file","name":"hotSpotCenter.png","base_name":"hotSpotCenter","extension":".png","size":324,"date":"2019-10-25","sha1":"361d67e879e5cd659bce079c2074321f835c6d6f","md5":"94a6d1399a9e5e337ff1f2fbd9363df3","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/hotSpotCenterBig.png","type":"file","name":"hotSpotCenterBig.png","base_name":"hotSpotCenterBig","extension":".png","size":617,"date":"2019-10-25","sha1":"ff0ea69fbe4fda8f0a0d53c7e7116898c51dcfb9","md5":"daaa3f517d1a6ecdad094cdec5ab5331","mime_type":"image/png","file_type":"PNG image data, 64 x 64, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/hotSpotCenterSmall.png","type":"file","name":"hotSpotCenterSmall.png","base_name":"hotSpotCenterSmall","extension":".png","size":230,"date":"2019-10-25","sha1":"62cece52269e207b3f0533f1f19fbbdf32df1307","md5":"c308e3fb38669ac1b631fcaa93e02c04","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/hotSpotE.png","type":"file","name":"hotSpotE.png","base_name":"hotSpotE","extension":".png","size":320,"date":"2019-10-25","sha1":"b60d9816069418aff9b62a1b9a984962178f8da0","md5":"85ba1b38edda1ad4bfe3e58efd228966","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/hotSpotN.png","type":"file","name":"hotSpotN.png","base_name":"hotSpotN","extension":".png","size":328,"date":"2019-10-25","sha1":"5cb71ddccdeade2982e7d78077d00f7a52498874","md5":"2f606d91767c9bed051942fe72c6aebc","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/hotSpotNE.png","type":"file","name":"hotSpotNE.png","base_name":"hotSpotNE","extension":".png","size":321,"date":"2019-10-25","sha1":"82cca1938683af17dc5ed227175bd9003f1a6918","md5":"dbe2ca5eccffa41f0ea87e74651cea12","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/hotSpotNW.png","type":"file","name":"hotSpotNW.png","base_name":"hotSpotNW","extension":".png","size":322,"date":"2019-10-25","sha1":"881e1f19d21f1fb1477f09c7a74d08bb231b3b58","md5":"17e18b8c8df76d693533557179b1f2db","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/hotSpotS.png","type":"file","name":"hotSpotS.png","base_name":"hotSpotS","extension":".png","size":324,"date":"2019-10-25","sha1":"5bf747b54afe35f6e588d48c99bb0e70fca83e50","md5":"67428aadfe8d3a705edc125b4ef22eb4","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/hotSpotSE.png","type":"file","name":"hotSpotSE.png","base_name":"hotSpotSE","extension":".png","size":320,"date":"2019-10-25","sha1":"200225ee2da371f1d1f8b0140470264fbcbff7c6","md5":"508bb38f51cd5919317d3511b5fe58ab","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/hotSpotSW.png","type":"file","name":"hotSpotSW.png","base_name":"hotSpotSW","extension":".png","size":319,"date":"2019-10-25","sha1":"887357a398174e49fdac87968c1619f5b7bb6d8c","md5":"32387b49fc406afcc129c4ba6b822f5a","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/hotSpotW.png","type":"file","name":"hotSpotW.png","base_name":"hotSpotW","extension":".png","size":321,"date":"2019-10-25","sha1":"0a0498fb651a52ff72d234d03c758ca30d19608d","md5":"920ffbf24af746ff95ab17cac4efffe1","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/jpeg.jpg","type":"file","name":"jpeg.jpg","base_name":"jpeg","extension":".jpg","size":21379,"date":"2019-10-25","sha1":"2d9b1029531c2e5a5ec20e9a8ebaf9d16a6e193d","md5":"8b0a3ec19f17d627f5dffab7f762359d","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.02, resolution (DPI), density 72x72, segment length 16, baseline, precision 8, 300x100, frames 3, comment: \"File written by Adobe Photoshop\\250 5.2\", baseline, precision 8, 300x100, frames 3, baseline, precision 8, 300x100, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/jpegCursor.jpg","type":"file","name":"jpegCursor.jpg","base_name":"jpegCursor","extension":".jpg","size":6644,"date":"2019-10-25","sha1":"079d62ada559d3c2b4fdd7d701420d1bd91faa7a","md5":"868737bbc6271deb0dec3033fc824d24","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.02, resolution (DPI), density 72x72, segment length 16, progressive, precision 8, 32x32, frames 3, comment: \"File written by Adobe Photoshop\\250 5.2\", progressive, precision 8, 32x32, frames 3, progressive, precision 8, 32x32, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/operaBridge.jpg","type":"file","name":"operaBridge.jpg","base_name":"operaBridge","extension":".jpg","size":31244,"date":"2019-10-25","sha1":"f611de738cc74c4d8a2f813039090c18a9f1358f","md5":"e9dfc3bcdd0d216652e4d30ae4986615","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.02, resolution (DPI), density 72x72, segment length 16, Exif Standard: [TIFF image data, big-endian, direntries=8, manufacturer=EASTMAN KODAK COMPANY, model=KODAK DX3900 ZOOM DIGITAL CAMERA, orientation=upper-left, xresolution=490, yresolution=498, resolutionunit=2], baseline, precision 8, 480x320, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/operaSteps.jpg","type":"file","name":"operaSteps.jpg","base_name":"operaSteps","extension":".jpg","size":32729,"date":"2019-10-25","sha1":"ae87c9d1c043aba7357884c459d0db6d78f48de7","md5":"c4609fc03d88cda0b350153d371f2066","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.02, resolution (DPI), density 72x72, segment length 16, Exif Standard: [TIFF image data, big-endian, direntries=8, manufacturer=EASTMAN KODAK COMPANY, model=KODAK DX3900 ZOOM DIGITAL CAMERA, orientation=upper-left, xresolution=490, yresolution=498, resolutionunit=2], baseline, precision 8, 480x320, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/operaWalk.jpg","type":"file","name":"operaWalk.jpg","base_name":"operaWalk","extension":".jpg","size":22085,"date":"2019-10-25","sha1":"73a15cf7ca41dbfb26ed2d7f0eac7cb25bbaf939","md5":"09e9e5593e10bf6d5c40ab97f4cde2f1","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.02, resolution (DPI), density 72x72, segment length 16, Exif Standard: [TIFF image data, little-endian, direntries=5, xresolution=74, yresolution=82, resolutionunit=1], baseline, precision 8, 320x480, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/png.png","type":"file","name":"png.png","base_name":"png","extension":".png","size":21496,"date":"2019-10-25","sha1":"f16292b68ded4bbd6c29a7f3fe980bf1cefe31df","md5":"cf8dc5bae06897a52f053791deaeb5d1","mime_type":"image/png","file_type":"PNG image data, 300 x 100, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/png2.png","type":"file","name":"png2.png","base_name":"png2","extension":".png","size":2856,"date":"2019-10-25","sha1":"2b6d46f89c9a52a9bcee0ec805719730baf9cb2c","md5":"60423c3b3e03d342f7126ab2387a0613","mime_type":"image/png","file_type":"PNG image data, 100 x 100, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/pngCursor.png","type":"file","name":"pngCursor.png","base_name":"pngCursor","extension":".png","size":349,"date":"2019-10-25","sha1":"a8cc691016a50d79541af7e6f2d4b341b15007a2","md5":"232618dd05bfaadea3e51e0ace2cf746","mime_type":"image/png","file_type":"PNG image data, 32 x 32, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/sm_colors.tif","type":"file","name":"sm_colors.tif","base_name":"sm_colors","extension":".tif","size":13610,"date":"2019-10-25","sha1":"298ad1ca364d967c9708f2eca11e2afb1ec531d5","md5":"9ba4cd5efb230185f72b3c0c2e9519e9","mime_type":"image/tiff","file_type":"TIFF image data, big-endian, direntries=16, height=64, bps=0, compression=none, PhotometricIntepretation=RGB, description=***************************************************************, width=64","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/sm_colors_pb.tif","type":"file","name":"sm_colors_pb.tif","base_name":"sm_colors_pb","extension":".tif","size":14102,"date":"2019-10-25","sha1":"18042f4a030e23ceddbf78e09452fc4d0082c01e","md5":"991b80c31513e10f0c7f5eec975213d8","mime_type":"image/tiff","file_type":"TIFF image data, big-endian, direntries=19, height=64, bps=0, compression=PackBits (Macintosh RLE), PhotometricIntepretation=RGB, description=***************************************************************, width=64","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/sm_colors_pb_tile.tif","type":"file","name":"sm_colors_pb_tile.tif","base_name":"sm_colors_pb_tile","extension":".tif","size":20322,"date":"2019-10-25","sha1":"bbbce086cd3e170037485de4c215c6778308c31a","md5":"508b76d5b039f4e9a1ce5fc2c964c918","mime_type":"image/tiff","file_type":"TIFF image data, big-endian, direntries=20, height=64, bps=0, compression=PackBits (Macintosh RLE), PhotometricIntepretation=RGB, description=***************************************************************, width=64","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/sm_colors_tile.tif","type":"file","name":"sm_colors_tile.tif","base_name":"sm_colors_tile","extension":".tif","size":20132,"date":"2019-10-25","sha1":"f8be1ae33bec7b710a88a73463a8b7728378c327","md5":"90a08035568fc746573ffdd68ca26ff5","mime_type":"image/tiff","file_type":"TIFF image data, big-endian, direntries=20, height=64, bps=0, compression=none, PhotometricIntepretation=RGB, description=***************************************************************, width=64","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/spainRelief.png","type":"file","name":"spainRelief.png","base_name":"spainRelief","extension":".png","size":134968,"date":"2019-10-25","sha1":"40b5e30473446dbbd1db542715448640aafeef5b","md5":"a766d981508245183a75fec14119cd33","mime_type":"image/png","file_type":"PNG image data, 600 x 473, 8-bit grayscale, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/svg.png","type":"file","name":"svg.png","base_name":"svg","extension":".png","size":9277,"date":"2019-10-25","sha1":"16622bede2c25f971e1e0ecbd3c122be3b5fd25c","md5":"525a79f0fcc34fb603e7a9d99631162f","mime_type":"image/png","file_type":"PNG image data, 150 x 194, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/svg.svg","type":"file","name":"svg.svg","base_name":"svg","extension":".svg","size":6244,"date":"2019-10-25","sha1":"b5f3f9f9709eab53e44a93c20015bf16ce015124","md5":"3b3cfa2cfbdc587ab86a1fe185ac7afe","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":28,"end_line":28}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/svg2.svg","type":"file","name":"svg2.svg","base_name":"svg2","extension":".svg","size":2045,"date":"2019-10-25","sha1":"8dfc9d13b30ab509b390a5edb07ec88876e4af0c","md5":"bbf5fe56a969e4bae9b6160ece333b7f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":28,"end_line":28}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/svg3.svg","type":"file","name":"svg3.svg","base_name":"svg3","extension":".svg","size":2090,"date":"2019-10-25","sha1":"1ad51cec0884153d3b256ae6ae0ad957915e2d65","md5":"27a564133bb03b7a1a8637743a1aac0e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":28,"end_line":28}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/svgCursor.svg","type":"file","name":"svgCursor.svg","base_name":"svgCursor","extension":".svg","size":1421,"date":"2019-10-25","sha1":"2afe9445a46427856518055bdedafd686135f978","md5":"7ae707b89cb35faaa0dd565e7976ccec","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":19,"end_line":19}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/svgCursor2.svg","type":"file","name":"svgCursor2.svg","base_name":"svgCursor2","extension":".svg","size":1448,"date":"2019-10-25","sha1":"623fc446b60b5831313604c63c044fb04ddb73b7","md5":"9c243d261ba28719e6397dadc7fde11a","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":18,"end_line":18}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/svgCursor3.svg","type":"file","name":"svgCursor3.svg","base_name":"svgCursor3","extension":".svg","size":1470,"date":"2019-10-25","sha1":"c1c96494a3b742085692a50e243e7d3c0159a44b","md5":"795f7aaa5db3b907915528019b86986a","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":18,"end_line":18}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/svgCursor4.svg","type":"file","name":"svgCursor4.svg","base_name":"svgCursor4","extension":".svg","size":1303,"date":"2019-10-25","sha1":"4ceeae0a2ce058dbe8a5d69df500df3540211da1","md5":"7a8c1924df87d4af7496b0978c830516","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9},{"url":"http://www.w3.org/1999/xlink","start_line":17,"end_line":17}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/tde.jpg","type":"file","name":"tde.jpg","base_name":"tde","extension":".jpg","size":8775,"date":"2019-10-25","sha1":"4c40f1c942d1df68e3458427c82f60a2c2626b18","md5":"8f7040726d8a77d50f88f9e0ce2d2a09","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.02, resolution (DPI), density 72x72, segment length 16, baseline, precision 8, 70x29, frames 3, comment: \"File written by Adobe Photoshop\\250 5.2\", baseline, precision 8, 70x29, frames 3, baseline, precision 8, 70x29, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/tiffCursor.tif","type":"file","name":"tiffCursor.tif","base_name":"tiffCursor","extension":".tif","size":8158,"date":"2019-10-25","sha1":"74428f8938a49e47f82d52120ecd3109ccac0b41","md5":"b5816aa6c1d83e44aee581604edda9be","mime_type":"image/tiff","file_type":"TIFF image data, little-endian, direntries=18, height=32, bps=230, compression=none, PhotometricIntepretation=RGB, width=32","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/images/toBeProfiled.png","type":"file","name":"toBeProfiled.png","base_name":"toBeProfiled","extension":".png","size":3486,"date":"2019-10-25","sha1":"be798b5b023955c89b91eb9c8c232a4e5dbca38d","md5":"ad9b12b2a79c37ec4f4af4018c6eacd8","mime_type":"image/png","file_type":"PNG image data, 125 x 50, 8-bit/color RGBA, non-interlaced","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java","type":"directory","name":"java","base_name":"java","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":12,"size_count":17543,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":5,"size_count":168,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/resources/com","type":"directory","name":"com","base_name":"com","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":4,"size_count":168,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/resources/com/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":86,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/resources/com/test/script","type":"directory","name":"script","base_name":"script","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":86,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/resources/com/test/script/java-binding.mf","type":"file","name":"java-binding.mf","base_name":"java-binding","extension":".mf","size":86,"date":"2019-10-25","sha1":"464a23bb8f30582d35d82db08472771de37e1bfb","md5":"d74651f4075fe1d9c891af4c9ce8c7dc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/resources/com/untrusted","type":"directory","name":"untrusted","base_name":"untrusted","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":82,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/resources/com/untrusted/script","type":"directory","name":"script","base_name":"script","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":82,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/resources/com/untrusted/script/security2.mf","type":"file","name":"security2.mf","base_name":"security2","extension":".mf","size":82,"date":"2019-10-25","sha1":"a82772a242ee1b3b09499c9829860671a28ab9b4","md5":"64d5869e9576a69437e002ce6b0a60a5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/sources","type":"directory","name":"sources","base_name":"sources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":5,"size_count":17375,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/sources/com","type":"directory","name":"com","base_name":"com","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":4,"size_count":17375,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/sources/com/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":1993,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/sources/com/test/script","type":"directory","name":"script","base_name":"script","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1993,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/sources/com/test/script/EventListenerInitializerImpl.java","type":"file","name":"EventListenerInitializerImpl.java","base_name":"EventListenerInitializerImpl","extension":".java","size":1993,"date":"2019-10-25","sha1":"098493315f7481b957c64c75426f22aa56384713","md5":"1ec3c350393d19b09f1d6d427c2bf857","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"cjolif@apache.org","start_line":34,"end_line":34}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/sources/com/untrusted","type":"directory","name":"untrusted","base_name":"untrusted","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":15382,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/sources/com/untrusted/script","type":"directory","name":"script","base_name":"script","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":15382,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/java/sources/com/untrusted/script/UntrustedScriptHandler.java","type":"file","name":"UntrustedScriptHandler.java","base_name":"UntrustedScriptHandler","extension":".java","size":15382,"date":"2019-10-25","sha1":"656dbc975cdd2397307398690841a7f232f7e254","md5":"b3a54f9aab1bf57ad12fd5537b2a2a99","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":55,"end_line":55}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/script","type":"directory","name":"script","base_name":"script","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":20016,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/script/common.js","type":"file","name":"common.js","base_name":"common","extension":".js","size":3895,"date":"2019-10-25","sha1":"75c5936bf5beb3cec090840073a887613e26be4c","md5":"109ba1ff4b6d66dd70747f87decd770a","mime_type":"text/plain","file_type":"ASCII text","programming_language":"JavaScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":21,"end_line":21}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/script/rhinoSecurity.js","type":"file","name":"rhinoSecurity.js","base_name":"rhinoSecurity","extension":".js","size":11799,"date":"2019-10-25","sha1":"cfb8e1afe6502262c0d8eef88668500c52dbe5a3","md5":"32228bad3232777a7c456cbba09010e3","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"JavaScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/script/scrollbar.js","type":"file","name":"scrollbar.js","base_name":"scrollbar","extension":".js","size":4322,"date":"2019-10-25","sha1":"6dd7c6274abd051d5fe85918bd89b8453eb332a4","md5":"c48201102af2ea805d96052b01475beb","mime_type":"text/plain","file_type":"ASCII text","programming_language":"JavaScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":21,"end_line":21}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style","type":"directory","name":"style","base_name":"style","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":15,"dirs_count":1,"size_count":15074,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/basicsad.css","type":"file","name":"basicsad.css","base_name":"basicsad","extension":".css","size":973,"date":"2019-10-25","sha1":"6c57d07aebade16c6b7809e95e4bc6e955d447a7","md5":"2a9be8eeac3dd2fc16087ef7065956d2","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/cold.css","type":"file","name":"cold.css","base_name":"cold","extension":".css","size":866,"date":"2019-10-25","sha1":"de8d32eea7dd92d0e1f67b02a9eae441c74076fd","md5":"7b39fb24c1616a5fc13be9df6dca74d8","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/cssMediaList.css","type":"file","name":"cssMediaList.css","base_name":"cssMediaList","extension":".css","size":1395,"date":"2019-10-25","sha1":"19ddc355daf18efac9f12ccf7d77f6ac5064d380","md5":"c1eea401c333598387dc0ae650574f0a","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/cssMediaPrint.css","type":"file","name":"cssMediaPrint.css","base_name":"cssMediaPrint","extension":".css","size":1053,"date":"2019-10-25","sha1":"e1e10f5eb91cb136e98c1ed8120d128d8f50b418","md5":"07c343141eeffb1293a7d546807ecac2","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/cssMediaProjection.css","type":"file","name":"cssMediaProjection.css","base_name":"cssMediaProjection","extension":".css","size":1025,"date":"2019-10-25","sha1":"d169e26841a9dce6370c831846ee72459951b462","md5":"f5e1d4039649a339dd138a2c3e3a8e10","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/cssMediaScreen.css","type":"file","name":"cssMediaScreen.css","base_name":"cssMediaScreen","extension":".css","size":1052,"date":"2019-10-25","sha1":"b5c818f07c9d802b3568f4c6874f23be5f04f98f","md5":"9b417887eb859c8132eb48ae5fd7d9d0","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/default.css","type":"file","name":"default.css","base_name":"default","extension":".css","size":972,"date":"2019-10-25","sha1":"f55fb7fe5dc7a1e8dc1e3d85313ebb6d4716573e","md5":"4585546d920538065a84e536591d6508","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/grim.css","type":"file","name":"grim.css","base_name":"grim","extension":".css","size":973,"date":"2019-10-25","sha1":"02eff670ddeb0754f0f8b14a3d626d4833f1438a","md5":"0ab6d5f3ab9b41f6b2cbeb073f693cfe","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/hot.css","type":"file","name":"hot.css","base_name":"hot","extension":".css","size":864,"date":"2019-10-25","sha1":"85b4f78af4c600f494fc8a838b638e50a1ac843d","md5":"9b91fe341ad83cfe943132c35eb729a9","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/oups.css","type":"file","name":"oups.css","base_name":"oups","extension":".css","size":973,"date":"2019-10-25","sha1":"685f08f672e3937d78d32e21794eab5cc2dd1e7c","md5":"7b3563f149cbdebd9db1b8a9157fedd4","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/smiling.css","type":"file","name":"smiling.css","base_name":"smiling","extension":".css","size":973,"date":"2019-10-25","sha1":"5e519b65395ecb394c81c7db0b3440fb22486900","md5":"9e222cbeb63738eeb3f625ef1956fc55","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/test.css","type":"file","name":"test.css","base_name":"test","extension":".css","size":972,"date":"2019-10-25","sha1":"0c95f7fae3cc47bd35c4c06bb3504110d15dc5d2","md5":"72dc59746dbc0c27446d05a3f61745f3","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/wow.css","type":"file","name":"wow.css","base_name":"wow","extension":".css","size":973,"date":"2019-10-25","sha1":"bc0ac2ee0210945cd03f6de1fb6d6f6842ccbcd5","md5":"d2788a3dbf9880e59cfac5426d229899","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/subdir","type":"directory","name":"subdir","base_name":"subdir","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2010,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/subdir/useStylesheet.css","type":"file","name":"useStylesheet.css","base_name":"useStylesheet","extension":".css","size":1060,"date":"2019-10-25","sha1":"69fdbea4e55200ca22d953ad39485892db7d05ba","md5":"9cc49b2c02b350a3b3da367f26a04f7c","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/style/subdir/useStylesheet2.css","type":"file","name":"useStylesheet2.css","base_name":"useStylesheet2","extension":".css","size":950,"date":"2019-10-25","sha1":"b6108190224a51c024b7e0821c2897d6b4be4026","md5":"fc03858f38cd31e46ead81ae673fcd17","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/svg","type":"directory","name":"svg","base_name":"svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":17784,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/svg/defs.svg","type":"file","name":"defs.svg","base_name":"defs","extension":".svg","size":15387,"date":"2019-10-25","sha1":"2fded88a2836675fdfcefe1d2764f97c016364cd","md5":"c1cf4d03ebe72fe72ad86dcbfe26576a","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/svg/defs2.svg","type":"file","name":"defs2.svg","base_name":"defs2","extension":".svg","size":2397,"date":"2019-10-25","sha1":"9f513cd97b188bab4bdc0ccf454c961e6367c283","md5":"3408899cdb635ee1e7f7f40b4d0020a6","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":29,"end_line":29}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/ttf","type":"directory","name":"ttf","base_name":"ttf","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":53460,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/ttf/glb12.ttf","type":"file","name":"glb12.ttf","base_name":"glb12","extension":".ttf","size":53460,"date":"2019-10-25","sha1":"e3e3f18de60ced845db1bdb200c5a78045050027","md5":"db0c49bf5018ba00da945cf25ad8f4e0","mime_type":"application/x-font-ttf","file_type":"TrueType font data","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/wmf","type":"directory","name":"wmf","base_name":"wmf","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":0,"size_count":248314,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/wmf/batik-rendering-nothing2.wmf","type":"file","name":"batik-rendering-nothing2.wmf","base_name":"batik-rendering-nothing2","extension":".wmf","size":772,"date":"2019-10-25","sha1":"6a33d11c3487059140639de011ccf29afaa2f86d","md5":"b457f6c9f6939ad3e7177829f603433d","mime_type":"application/octet-stream","file_type":"ms-windows metafont .wmf","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/wmf/black_shapes.wmf","type":"file","name":"black_shapes.wmf","base_name":"black_shapes","extension":".wmf","size":2276,"date":"2019-10-25","sha1":"12176115500f788412e1acc4a2363deab0007754","md5":"4b5c5584c89e2f7daff8eb1b11330a38","mime_type":"application/octet-stream","file_type":"ms-windows metafont .wmf","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/wmf/imageWMF.wmf","type":"file","name":"imageWMF.wmf","base_name":"imageWMF","extension":".wmf","size":221682,"date":"2019-10-25","sha1":"b75fe0ee55dc327e90a8f9919296731a85265c18","md5":"6b0efaf956daad2157f5b4d26a592bd0","mime_type":"application/octet-stream","file_type":"ms-windows metafont .wmf","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/wmf/negApmText1.wmf","type":"file","name":"negApmText1.wmf","base_name":"negApmText1","extension":".wmf","size":12652,"date":"2019-10-25","sha1":"3a85d05cfdbaf9fcd4f3b1bd3159c7d5b637ea41","md5":"2be1e46d220ca9f2220e8c320d177ef4","mime_type":"application/octet-stream","file_type":"ms-windows metafont .wmf","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/wmf/negApmText2.wmf","type":"file","name":"negApmText2.wmf","base_name":"negApmText2","extension":".wmf","size":5650,"date":"2019-10-25","sha1":"cd8206f890eb4fdc78c59abd1f3451365068e2d2","md5":"348de5656ad382f635fb028eb22cefa1","mime_type":"application/octet-stream","file_type":"ms-windows metafont .wmf","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/wmf/testChart.wmf","type":"file","name":"testChart.wmf","base_name":"testChart","extension":".wmf","size":4200,"date":"2019-10-25","sha1":"2ff51d842e6dbd4b696dc41ef64cca86dabc7a5b","md5":"c0a61c96faaf2c22367d4b8677e39c2b","mime_type":"application/octet-stream","file_type":"ms-windows metafont .wmf","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/resources/wmf/textGreek.wmf","type":"file","name":"textGreek.wmf","base_name":"textGreek","extension":".wmf","size":1082,"date":"2019-10-25","sha1":"64846488ac4ba9a4a2095540850cea69531703a7","md5":"814285addbdfd840d82c64720e8fea75","mime_type":"application/octet-stream","file_type":"ms-windows metafont .wmf","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec","type":"directory","name":"spec","base_name":"spec","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":274,"dirs_count":16,"size_count":2401109,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/color","type":"directory","name":"color","base_name":"color","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":40795,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/color/colorProfile.svg","type":"file","name":"colorProfile.svg","base_name":"colorProfile","extension":".svg","size":21264,"date":"2019-10-25","sha1":"97ce7e6c4850424d3e6e294dc7393978540dce5a","md5":"21a9e0ed3ad7002cbba4135c80ce581b","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":28,"end_line":29}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/color/colors.svg","type":"file","name":"colors.svg","base_name":"colors","extension":".svg","size":11489,"date":"2019-10-25","sha1":"ad6b9e7ad6576ccc0a65fd9734f9b1a401948129","md5":"d01f06d443cf2d504cfcf8d0f34a8dc4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Stephane Hillion","start_line":26,"end_line":27}],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/color/systemColors.svg","type":"file","name":"systemColors.svg","base_name":"systemColors","extension":".svg","size":8042,"date":"2019-10-25","sha1":"b6c71a998e9bdf819a2eb8c302aed87b0aac29f1","md5":"22f23872302778945b96b322ca8cf2db","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"stephane@hillion.org","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":29,"end_line":29}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/coordinates","type":"directory","name":"coordinates","base_name":"coordinates","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":10611,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/coordinates/em.svg","type":"file","name":"em.svg","base_name":"em","extension":".svg","size":4048,"date":"2019-10-25","sha1":"d8857cd2dc2ceb1c416bcd6bb1fd16d82cf0f41f","md5":"7b58a8ed14f57cd89774860c4479e505","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/coordinates/percentagesAndUnits.svg","type":"file","name":"percentagesAndUnits.svg","base_name":"percentagesAndUnits","extension":".svg","size":6563,"date":"2019-10-25","sha1":"902d11bc75a58e5409374d9787484550b1fdc21c","md5":"32caa7f002acf46ce8dbf9d201172ab3","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters","type":"directory","name":"filters","base_name":"filters","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":17,"dirs_count":0,"size_count":148957,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/enableBackground.svg","type":"file","name":"enableBackground.svg","base_name":"enableBackground","extension":".svg","size":7640,"date":"2019-10-25","sha1":"41a5900895754307a3696b422d66b93c33ad4314","md5":"137b4fa62ff51720c4c37564f3b560a7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@kodak.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/feColorMatrix.svg","type":"file","name":"feColorMatrix.svg","base_name":"feColorMatrix","extension":".svg","size":6746,"date":"2019-10-25","sha1":"8b7726ca1fb68cadc18e9565edaf487fbf4f7804","md5":"e92414ac3671882e4b5fec893b9f23b3","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/feComponentTransfer.svg","type":"file","name":"feComponentTransfer.svg","base_name":"feComponentTransfer","extension":".svg","size":9653,"date":"2019-10-25","sha1":"dc178613142e6e62348199c2a9683e8f9e129d2e","md5":"038bcd7ab9fd1eb80713a136f4ca33ab","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/feComponentTransfer2.svg","type":"file","name":"feComponentTransfer2.svg","base_name":"feComponentTransfer2","extension":".svg","size":10449,"date":"2019-10-25","sha1":"b54de6a85b7e130187fe3693f29c85144a502db3","md5":"aeaf23cc8c069c76638076539c29c480","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/feComposite.svg","type":"file","name":"feComposite.svg","base_name":"feComposite","extension":".svg","size":9702,"date":"2019-10-25","sha1":"e074425b033ec026ebe9f3f727dbd02d779223c2","md5":"db4d257895dc47b39fc20c1aa04e8492","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/feConvolveMatrix.svg","type":"file","name":"feConvolveMatrix.svg","base_name":"feConvolveMatrix","extension":".svg","size":12900,"date":"2019-10-25","sha1":"f8f5e16d29b1d403f7a63cf5510d7c0da2ec6a02","md5":"66c5af106632a88efbf7b444a89af0cb","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@kodak.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/feDisplacementMap.svg","type":"file","name":"feDisplacementMap.svg","base_name":"feDisplacementMap","extension":".svg","size":8818,"date":"2019-10-25","sha1":"32ceca5656b8f450da6d3da7df7e2edc20e4f6f1","md5":"74ede66089d92fdae7607c76f7de0da4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/feGaussianDefault.svg","type":"file","name":"feGaussianDefault.svg","base_name":"feGaussianDefault","extension":".svg","size":1988,"date":"2019-10-25","sha1":"175d2c7f30695a893f50417bfb022daac232bc2e","md5":"1a6d232e9b5e8750b0d0b4c66705c7ca","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/feImage.svg","type":"file","name":"feImage.svg","base_name":"feImage","extension":".svg","size":4749,"date":"2019-10-25","sha1":"94b0d2d6c9f2a7d1e5a18cf247c7526042a85587","md5":"96e3301fd60a2fac082f5c4746492488","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/feImage2.svg","type":"file","name":"feImage2.svg","base_name":"feImage2","extension":".svg","size":7237,"date":"2019-10-25","sha1":"295a5e31e873884a270af0372c3f14c6fe30c68e","md5":"2b78ec923c50335f694431e863b102a7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/feMerge.svg","type":"file","name":"feMerge.svg","base_name":"feMerge","extension":".svg","size":9156,"date":"2019-10-25","sha1":"1207c9af46af5097f282eb6d509d53ae8895bc7a","md5":"672631219da43a0997b8aca082beaa75","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@kodak.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/feMorphology.svg","type":"file","name":"feMorphology.svg","base_name":"feMorphology","extension":".svg","size":5228,"date":"2019-10-25","sha1":"e13f7e25ee266d72cedb00985fe9923e526fbbd8","md5":"21e7a3a2997e6cc2abebfe5b7faa04db","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/feTile.svg","type":"file","name":"feTile.svg","base_name":"feTile","extension":".svg","size":6853,"date":"2019-10-25","sha1":"60fe35b01a017a61c14abff6fd47f94bb13ea18c","md5":"4efe8cc10615c1e09926d7de08c6e8d9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/feTileTarget.svg","type":"file","name":"feTileTarget.svg","base_name":"feTileTarget","extension":".svg","size":8574,"date":"2019-10-25","sha1":"f2d87e305931bd8154704fa18e56d8b2f03fb0c7","md5":"4e5a53742d1ae7c061f50f3667a0228f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/feTurbulence.svg","type":"file","name":"feTurbulence.svg","base_name":"feTurbulence","extension":".svg","size":5061,"date":"2019-10-25","sha1":"0fc3f19bd4e9551d2e2aff81a13d4008deadcf0a","md5":"5c482e362ca954b118f442ff796716f0","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/filterRegions.svg","type":"file","name":"filterRegions.svg","base_name":"filterRegions","extension":".svg","size":25671,"date":"2019-10-25","sha1":"f662ca2368cc609699f1bddea4a9336e4555965d","md5":"2d89a21b68b8f4c429b82e300a53a470","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":30,"end_line":31}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":36,"end_line":36}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/filters/svgEnableBackground.svg","type":"file","name":"svgEnableBackground.svg","base_name":"svgEnableBackground","extension":".svg","size":8532,"date":"2019-10-25","sha1":"dd810648d1be357d33e491d171861d48f26ad1e2","md5":"0c3106a1ebf440d211a232fd176c4177","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@kodak.com","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"deweese@kodak.com","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts","type":"directory","name":"fonts","base_name":"fonts","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":0,"size_count":411009,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/batikFont.svg","type":"file","name":"batikFont.svg","base_name":"batikFont","extension":".svg","size":14334,"date":"2019-10-25","sha1":"7008b512cf0c80609d6c6b00ee610aaf529a1a0f","md5":"7359148094f6cdfbf19774cfa9876868","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontAltGlyph.svg","type":"file","name":"fontAltGlyph.svg","base_name":"fontAltGlyph","extension":".svg","size":13687,"date":"2019-10-25","sha1":"bd55c7bee95a82d4aa86ff7880ce5f7dbcc83514","md5":"1f5255344475f9ee35e50200ebe4aa60","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://www.microsoft.com/truetype","start_line":51,"end_line":51},{"url":"http://www.steadystate.com/svg","start_line":53,"end_line":53}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontAltGlyph2.svg","type":"file","name":"fontAltGlyph2.svg","base_name":"fontAltGlyph2","extension":".svg","size":6669,"date":"2019-10-25","sha1":"afd9ef032a417f0e3704f8339a0937777a56a017","md5":"b1ce526702a6f804e3cc7d8fd5f0a523","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontAltGlyph3.svg","type":"file","name":"fontAltGlyph3.svg","base_name":"fontAltGlyph3","extension":".svg","size":13681,"date":"2019-10-25","sha1":"05514a236e5bdcbd52600c199f91f3f8711ae2f3","md5":"29e3106632bf5a6c758938c5554b38c3","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://www.microsoft.com/truetype","start_line":51,"end_line":51},{"url":"http://www.steadystate.com/svg","start_line":53,"end_line":53}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontArabic.svg","type":"file","name":"fontArabic.svg","base_name":"fontArabic","extension":".svg","size":119742,"date":"2019-10-25","sha1":"02adf60dbca7d01c0fa37377cb10881b0d628e3c","md5":"67b14dd1b1d83d967c0f44ef1808b7cb","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontBounds.svg","type":"file","name":"fontBounds.svg","base_name":"fontBounds","extension":".svg","size":3663,"date":"2019-10-25","sha1":"1e83c4bb1cb463224d3ae58f70baed9c9d6813ec","md5":"b0a280826edd8e7ac683f4cdde6335ba","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro","start_line":26,"end_line":27}],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontChoice.svg","type":"file","name":"fontChoice.svg","base_name":"fontChoice","extension":".svg","size":13670,"date":"2019-10-25","sha1":"2d9944e5e1481ecb4e1971799656314a67580d06","md5":"68d344ef24fb81e7238ef4545fc6d13e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":29,"end_line":30}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34},{"url":"http://www.microsoft.com/truetype","start_line":54,"end_line":54}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontDecorations.svg","type":"file","name":"fontDecorations.svg","base_name":"fontDecorations","extension":".svg","size":46306,"date":"2019-10-25","sha1":"32fbd8398f9e3a602e18a705a0517985f9024f13","md5":"f338764199216df969c5b2fa0cea84fd","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://www.microsoft.com/truetype","start_line":51,"end_line":51},{"url":"http://www.steadystate.com/svg","start_line":53,"end_line":53}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontExternalFont.svg","type":"file","name":"fontExternalFont.svg","base_name":"fontExternalFont","extension":".svg","size":2612,"date":"2019-10-25","sha1":"480cd3ff6359874a669e04031da1990d28618879","md5":"ed4f823c67404e302c504c70bc84e656","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontFace.svg","type":"file","name":"fontFace.svg","base_name":"fontFace","extension":".svg","size":4951,"date":"2019-10-25","sha1":"c90d654a2242b2d928e18dcdd5bc2cfb984155d2","md5":"7d75cccbeef8c040bd1a742b08d5c925","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"thomas.deweese@kodak.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontFamilyCaseSensitivity.svg","type":"file","name":"fontFamilyCaseSensitivity.svg","base_name":"fontFamilyCaseSensitivity","extension":".svg","size":7894,"date":"2019-10-25","sha1":"ee2727046d0050fc68bac7379c5f7b825f15c5b4","md5":"0a68a613db3b883f1d07f3a37f7386f5","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontGlyphChoice.svg","type":"file","name":"fontGlyphChoice.svg","base_name":"fontGlyphChoice","extension":".svg","size":43956,"date":"2019-10-25","sha1":"da61eefdd9085c945f87deaecbf40179e17c5390","md5":"aea815147a788060e3f2a4fd85a39175","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://www.microsoft.com/truetype","start_line":51,"end_line":51}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontGlyphsBoth.svg","type":"file","name":"fontGlyphsBoth.svg","base_name":"fontGlyphsBoth","extension":".svg","size":26472,"date":"2019-10-25","sha1":"043114b044ebf1972b49bb9f9ef335b0f710e4e5","md5":"bbf62e67b09ae0a0914467757600f1d5","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"dean.jackson@cmis.csiro.au","start_line":30,"end_line":31}],"packages":[],"emails":[{"email":"dean.jackson@cmis.csiro.au","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":37,"end_line":37},{"url":"http://www.microsoft.com/truetype","start_line":61,"end_line":61},{"url":"http://www.steadystate.com/svg","start_line":63,"end_line":63}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontGlyphsChildSVG.svg","type":"file","name":"fontGlyphsChildSVG.svg","base_name":"fontGlyphsChildSVG","extension":".svg","size":25192,"date":"2019-10-25","sha1":"9d99577eae7f5725444c17ae3773d9effe6f2d5c","md5":"3c1825fce1f34e8a04d3e3f9a02492eb","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"dean.jackson@cmis.csiro.au","start_line":30,"end_line":31}],"packages":[],"emails":[{"email":"dean.jackson@cmis.csiro.au","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35},{"url":"http://www.microsoft.com/truetype","start_line":59,"end_line":59},{"url":"http://www.steadystate.com/svg","start_line":61,"end_line":61}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontGlyphsD.svg","type":"file","name":"fontGlyphsD.svg","base_name":"fontGlyphsD","extension":".svg","size":24614,"date":"2019-10-25","sha1":"3b0ac1bc4851d29f97a88a9f905d2c18e5df211a","md5":"2005c5607ca662577982356cb0a0cfb1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"dean.jackson@cmis.csiro.au","start_line":30,"end_line":31}],"packages":[],"emails":[{"email":"dean.jackson@cmis.csiro.au","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35},{"url":"http://www.microsoft.com/truetype","start_line":63,"end_line":63},{"url":"http://www.steadystate.com/svg","start_line":65,"end_line":65}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontKerning.svg","type":"file","name":"fontKerning.svg","base_name":"fontKerning","extension":".svg","size":19663,"date":"2019-10-25","sha1":"3dbe53c18368026566775dde867a969a4336dea4","md5":"8feb1411384382a571889d7607bda0ab","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://www.microsoft.com/truetype","start_line":51,"end_line":51},{"url":"http://www.steadystate.com/svg","start_line":53,"end_line":53}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontOnPath.svg","type":"file","name":"fontOnPath.svg","base_name":"fontOnPath","extension":".svg","size":7736,"date":"2019-10-25","sha1":"652558a60e1f82d1cde7a4560b9e389129e2149d","md5":"67d282c3fdd5757c8b576e61c537890b","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/fonts/fontStyling.svg","type":"file","name":"fontStyling.svg","base_name":"fontStyling","extension":".svg","size":16167,"date":"2019-10-25","sha1":"2ad6608f8b64fb2ebcbfce7a191f64f346bcb2e0","md5":"5919a70bcdfafc892e4391af7a6a4539","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://www.microsoft.com/truetype","start_line":65,"end_line":65}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/interactivity","type":"directory","name":"interactivity","base_name":"interactivity","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":10,"dirs_count":0,"size_count":134284,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/interactivity/cursor.svg","type":"file","name":"cursor.svg","base_name":"cursor","extension":".svg","size":8666,"date":"2019-10-25","sha1":"708744817ac4f9cf1e8675cdb629566610ea755b","md5":"f8c56bb465fd586aff9356a761238c71","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/interactivity/cursor2.svg","type":"file","name":"cursor2.svg","base_name":"cursor2","extension":".svg","size":6747,"date":"2019-10-25","sha1":"527846ea0f20d42638d29c8f6985e0a934c43c20","md5":"0acfbe910d26fc6461c6ea8b9bc0d062","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/interactivity/cursor3.svg","type":"file","name":"cursor3.svg","base_name":"cursor3","extension":".svg","size":5170,"date":"2019-10-25","sha1":"1c232d78dbcc59f5a0b17186d62cb242d4c5107e","md5":"8ae06153a8ae93773696040a891ecef3","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/interactivity/cursor4.svg","type":"file","name":"cursor4.svg","base_name":"cursor4","extension":".svg","size":9042,"date":"2019-10-25","sha1":"cf9e76c727f4b4cdee4555a247840d84d1dc03f0","md5":"1a7e3447f7a676b85aed229ec6ee20f1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":31,"end_line":32}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":37,"end_line":37}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/interactivity/cursorImage.svg","type":"file","name":"cursorImage.svg","base_name":"cursorImage","extension":".svg","size":1035,"date":"2019-10-25","sha1":"4cafaab0f938b91d14f7b288908fd2cc11df3778","md5":"2463545255d9efd44c5308dc3930b0d2","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":19,"end_line":19}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/interactivity/cursorImage2.svg","type":"file","name":"cursorImage2.svg","base_name":"cursorImage2","extension":".svg","size":1031,"date":"2019-10-25","sha1":"ec7fa792eae3ac280392bc473504f438b0ae0608","md5":"787149ddd66e9e98d71665a882609fe1","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":18,"end_line":18}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/interactivity/focus.svg","type":"file","name":"focus.svg","base_name":"focus","extension":".svg","size":4838,"date":"2019-10-25","sha1":"dad98950af0d582cef86f7aa30869d43f7b4552d","md5":"585f669018a04037524538727d9edd5e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":28},{"value":"vincent.hardy@sun.com","start_line":26,"end_line":28}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26},{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/interactivity/keyEvents.svg","type":"file","name":"keyEvents.svg","base_name":"keyEvents","extension":".svg","size":4850,"date":"2019-10-25","sha1":"c714985f8d5fa52710abb6c96396cf0251c76f8b","md5":"d77fc574e22402adf18d5589accad558","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":8,"end_line":21,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":27,"end_line":29},{"value":"vincent.hardy@sun.com","start_line":27,"end_line":29}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":27,"end_line":27},{"email":"vincent.hardy@sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":15,"end_line":15},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/interactivity/keyEvents2.svg","type":"file","name":"keyEvents2.svg","base_name":"keyEvents2","extension":".svg","size":15239,"date":"2019-10-25","sha1":"240dd1f42a223dd5541103e18dbee6a98dba4fea","md5":"829a821e70b5bee1bce6d109f0fa841d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":8,"end_line":21,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":15,"end_line":15},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/interactivity/pointerEvents.svg","type":"file","name":"pointerEvents.svg","base_name":"pointerEvents","extension":".svg","size":77666,"date":"2019-10-25","sha1":"3939224b426d65bf66f273ba3caf239d24103977","md5":"e2cef03cf85b9dc5b181705ac047b11d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/linking","type":"directory","name":"linking","base_name":"linking","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":0,"size_count":67949,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/linking/anchor.svg","type":"file","name":"anchor.svg","base_name":"anchor","extension":".svg","size":31970,"date":"2019-10-25","sha1":"f7963f69e76352b64d38cada6b349373d08d249c","md5":"d9aa8ae9b8524e5ad8f6363b19ac7db0","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/linking/anchorInsideText.svg","type":"file","name":"anchorInsideText.svg","base_name":"anchorInsideText","extension":".svg","size":5834,"date":"2019-10-25","sha1":"f6efabec50a82e138090be762881f6ae8af1b759","md5":"549723ab507d9990c46cb6ff3bf5ecc4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/linking/linkingTransform.svg","type":"file","name":"linkingTransform.svg","base_name":"linkingTransform","extension":".svg","size":3080,"date":"2019-10-25","sha1":"6097cca25c5fc83a68bac78b8f210b77051b731a","md5":"ee3b71f4d916fb0a1d350114371d9f7c","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/linking/linkingViewBox.svg","type":"file","name":"linkingViewBox.svg","base_name":"linkingViewBox","extension":".svg","size":3614,"date":"2019-10-25","sha1":"1e8784e5fdcc07374b66b281dba8e8584bfc2bab","md5":"e70d91d76b793ad8dcc3a3df5c14ee96","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/linking/pointerEvents.svg","type":"file","name":"pointerEvents.svg","base_name":"pointerEvents","extension":".svg","size":12269,"date":"2019-10-25","sha1":"1e43793d6887fee15a9904cc2567db4b6a4a8b79","md5":"6500554eaad9f06f75e39fbd50a68eee","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/linking/pointerEvents2.svg","type":"file","name":"pointerEvents2.svg","base_name":"pointerEvents2","extension":".svg","size":11182,"date":"2019-10-25","sha1":"36a25aee85555601b65a04f150c1ea88880c6860","md5":"486548b7ed033fea7983461b4ad83d80","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/masking","type":"directory","name":"masking","base_name":"masking","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":31265,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/masking/clip.svg","type":"file","name":"clip.svg","base_name":"clip","extension":".svg","size":10571,"date":"2019-10-25","sha1":"a39aa0589501d70d1f1caf0e19340da805604232","md5":"a160bcb932fbae13049c719d85511ab0","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/masking/clipQuality.svg","type":"file","name":"clipQuality.svg","base_name":"clipQuality","extension":".svg","size":10925,"date":"2019-10-25","sha1":"492dd0de689f71914257a72a18ab106b3432dd83","md5":"4d6fbb352ad8bd54df6a5acb8e420599","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":27,"end_line":29},{"value":"deweese@apache.org","start_line":27,"end_line":29}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":27,"end_line":27},{"email":"deweese@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":36,"end_line":36}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/masking/clipTransform.svg","type":"file","name":"clipTransform.svg","base_name":"clipTransform","extension":".svg","size":3482,"date":"2019-10-25","sha1":"2e4613c474978a53f05d4b19d23e61ed5a5b0786","md5":"3baa674c798a00370b46e4ea4892af55","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/masking/maskRegions.svg","type":"file","name":"maskRegions.svg","base_name":"maskRegions","extension":".svg","size":6287,"date":"2019-10-25","sha1":"f6e49eca11ca03e288837759d62340fefd01a157","md5":"9959c1a14818d67a9f77f4be634dd758","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/painting","type":"directory","name":"painting","base_name":"painting","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":14,"dirs_count":0,"size_count":111122,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/painting/bboxOnText.svg","type":"file","name":"bboxOnText.svg","base_name":"bboxOnText","extension":".svg","size":2515,"date":"2019-10-25","sha1":"a3e7454b445a3e247b8fd789c0bc1d6e8f698a3f","md5":"25a380cf764cce16b309870eba92c251","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"cjolif@ilog.fr","start_line":24,"end_line":27},{"value":"vhardy@apache.org","start_line":24,"end_line":27}],"packages":[],"emails":[{"email":"cjolif@ilog.fr","start_line":24,"end_line":24},{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/painting/display.svg","type":"file","name":"display.svg","base_name":"display","extension":".svg","size":7840,"date":"2019-10-25","sha1":"a2b5c1bed1e7c562857bbecb206d460982fb344d","md5":"102397ceb9cc8c3bdec3275dc30bb833","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/painting/image-rendering.svg","type":"file","name":"image-rendering.svg","base_name":"image-rendering","extension":".svg","size":2973,"date":"2019-10-25","sha1":"db450a61817a78d8a9a0db26623e68e688748993","md5":"fd5529d36200e73410c80013eb22a51e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/painting/markersExt.svg","type":"file","name":"markersExt.svg","base_name":"markersExt","extension":".svg","size":11524,"date":"2019-10-25","sha1":"e27cabbb8798a3cf2cd8ea47943e11e651663b3b","md5":"2a96311c4051209c0d5d0737d8f72a44","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/painting/markersMisc.svg","type":"file","name":"markersMisc.svg","base_name":"markersMisc","extension":".svg","size":11813,"date":"2019-10-25","sha1":"a791d31f80a79f30eb2aa2487b04b210635311f3","md5":"bda1f6261150cbb6a6e3b5bfbdc44dbc","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/painting/markersOrientA.svg","type":"file","name":"markersOrientA.svg","base_name":"markersOrientA","extension":".svg","size":11496,"date":"2019-10-25","sha1":"4ea02106e070c74b238935a4e67cd8ed6dfe6775","md5":"d3e8deee0db851efdad84f24441cc04e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/painting/markersOrientB.svg","type":"file","name":"markersOrientB.svg","base_name":"markersOrientB","extension":".svg","size":8135,"date":"2019-10-25","sha1":"858d849b8e2f1ef13e0f0b1c26aa1de2dff1b499","md5":"af31c33911fb124f0b1efceb48a5f484","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/painting/markersPreserveAspectRatio.svg","type":"file","name":"markersPreserveAspectRatio.svg","base_name":"markersPreserveAspectRatio","extension":".svg","size":25733,"date":"2019-10-25","sha1":"c63a94dfd28bb37da25dcd1ebc6b2d13dffc0724","md5":"47cd79ea7d956ddd1032d8f1fe7c99c1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/painting/markersShapes.svg","type":"file","name":"markersShapes.svg","base_name":"markersShapes","extension":".svg","size":7592,"date":"2019-10-25","sha1":"6d8d7b865d697f117eebe5b1c554ddd8eddf1f2d","md5":"bf4e5b1f8ed44c661fb2349efe288ebb","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/painting/shape-rendering.svg","type":"file","name":"shape-rendering.svg","base_name":"shape-rendering","extension":".svg","size":2957,"date":"2019-10-25","sha1":"815696a241bdc17563fa78a0930a8cbdbf787a7a","md5":"c23f26c48c3f8c3ab75c4643e64f3e8e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/painting/stroke-rendering.svg","type":"file","name":"stroke-rendering.svg","base_name":"stroke-rendering","extension":".svg","size":3283,"date":"2019-10-25","sha1":"12043c69b89f9a870dde7b7b015b378c35482037","md5":"8f1c6380b126a9bf2b233a35fe0f0e60","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/painting/text-rendering.svg","type":"file","name":"text-rendering.svg","base_name":"text-rendering","extension":".svg","size":3552,"date":"2019-10-25","sha1":"61955ec955b520bce3653aa23995d940a18cf14e","md5":"1adf424e324b29b62a3d0da34fd6f5ca","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/painting/text-rendering2.svg","type":"file","name":"text-rendering2.svg","base_name":"text-rendering2","extension":".svg","size":4320,"date":"2019-10-25","sha1":"e199bf1bccd9b20cce7b102bfee2b1793c71c2c6","md5":"89a954dc03fd90c95ab5d7b15f81394a","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/painting/visibility.svg","type":"file","name":"visibility.svg","base_name":"visibility","extension":".svg","size":7389,"date":"2019-10-25","sha1":"3b2b5f3ba5d022299473458eab3587c62fb53137","md5":"c2de4f2be07a9ee347feb37c1df2227d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints","type":"directory","name":"paints","base_name":"paints","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":15,"dirs_count":0,"size_count":131484,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints/externalPaints.svg","type":"file","name":"externalPaints.svg","base_name":"externalPaints","extension":".svg","size":4687,"date":"2019-10-25","sha1":"e410dc933a780d1f3bdd5c51dbcd29a2d2a422c9","md5":"d0becc3b1e6d837738b4b90710a0569c","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints/gradientLimit.svg","type":"file","name":"gradientLimit.svg","base_name":"gradientLimit","extension":".svg","size":7140,"date":"2019-10-25","sha1":"186abf4cc0e5f66066ddb87df4a6c119d4d644d9","md5":"22e73b89897e869f4ad966173947d7a0","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints/gradientPoint.svg","type":"file","name":"gradientPoint.svg","base_name":"gradientPoint","extension":".svg","size":5707,"date":"2019-10-25","sha1":"a26afc96dcc54e452d46fa3ee3f750ecd5dd7668","md5":"3e9d158580112a67ac9ef8425d451b5e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints/linearGradientLine.svg","type":"file","name":"linearGradientLine.svg","base_name":"linearGradientLine","extension":".svg","size":4218,"date":"2019-10-25","sha1":"974bc83cc8466162c71b01920ee9a0e0946b41a6","md5":"437060f96275293adf18cbe37af6aaa3","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints/linearGradientOrientation.svg","type":"file","name":"linearGradientOrientation.svg","base_name":"linearGradientOrientation","extension":".svg","size":6624,"date":"2019-10-25","sha1":"85d7892fa121e78c69e8f8162684d0f0634a3cd6","md5":"47c3194060b2193f5a47def96fefdc22","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints/linearGradientRepeat.svg","type":"file","name":"linearGradientRepeat.svg","base_name":"linearGradientRepeat","extension":".svg","size":6470,"date":"2019-10-25","sha1":"0c9ce914fe91c7bfbf52d1c8b90cafde8bb2cafb","md5":"5a39b34b4bddd6be4f78ba5cfb31d33a","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":24,"end_line":26},{"value":"vhardy@apache.org","start_line":24,"end_line":26}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":24,"end_line":24},{"email":"vhardy@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints/patternPreserveAspectRatioA.svg","type":"file","name":"patternPreserveAspectRatioA.svg","base_name":"patternPreserveAspectRatioA","extension":".svg","size":22141,"date":"2019-10-25","sha1":"9f56fe5a9acdc573d36538669a7edae57df6ba44","md5":"a30c141693a59cea9f4b51b6badc03f1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@eng.sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vhardy@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints/patternRegionA.svg","type":"file","name":"patternRegionA.svg","base_name":"patternRegionA","extension":".svg","size":11101,"date":"2019-10-25","sha1":"4f73a9216ec768bfdf11d9569d96803d8270fa21","md5":"d57ae513b53a11a2989869678a8f7421","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@eng.sun.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@eng.sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints/patternRegionB.svg","type":"file","name":"patternRegionB.svg","base_name":"patternRegionB","extension":".svg","size":12657,"date":"2019-10-25","sha1":"d311b74d390c7e6dc2f8ed71fd8696cfe40c15c2","md5":"4fc9ef9b014547325553c40cf5f3ca61","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@eng.sun.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@eng.sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints/patternRegions.svg","type":"file","name":"patternRegions.svg","base_name":"patternRegions","extension":".svg","size":12413,"date":"2019-10-25","sha1":"5db732d3e5ab937fae8aa292062e3d19b9fb0119","md5":"0018896f7e7050c1fd99eb439f0955fd","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@eng.sun.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@eng.sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints/radialGradient.svg","type":"file","name":"radialGradient.svg","base_name":"radialGradient","extension":".svg","size":9382,"date":"2019-10-25","sha1":"1e9ed9528b77aa736ac79f1def67f4c2a7648bb7","md5":"81c8965de2610c1b41842cd87dc768eb","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":29,"end_line":29}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints/radialGradient2.svg","type":"file","name":"radialGradient2.svg","base_name":"radialGradient2","extension":".svg","size":9568,"date":"2019-10-25","sha1":"5a81386d173a25bd5062b60cc1bdc88d220673d3","md5":"af235983e9c393c804df97edba9bc17c","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":24,"end_line":26},{"value":"vhardy@apache.org","start_line":24,"end_line":26}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":24,"end_line":24},{"email":"vhardy@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints/radialGradient3.svg","type":"file","name":"radialGradient3.svg","base_name":"radialGradient3","extension":".svg","size":9578,"date":"2019-10-25","sha1":"48b730a8beaf81cd4f46ee1fc698ebcde02959c3","md5":"3772c18f30348d147e35233513b3de5d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":24,"end_line":26},{"value":"vhardy@apache.org","start_line":24,"end_line":26}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":24,"end_line":24},{"email":"vhardy@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints/radialGradientLine.svg","type":"file","name":"radialGradientLine.svg","base_name":"radialGradientLine","extension":".svg","size":3157,"date":"2019-10-25","sha1":"a31e9a4f0918863ece3fdd4bebb4f0fd43067065","md5":"d4307988f0e44931b6fd367832b834cc","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/paints/radialGradientOrientation.svg","type":"file","name":"radialGradientOrientation.svg","base_name":"radialGradientOrientation","extension":".svg","size":6641,"date":"2019-10-25","sha1":"3cb9f4c7c7c419a62dfb69ae4c954f2b61b1f135","md5":"c6a0f62afa4baeec45118af9856528a7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/rendering","type":"directory","name":"rendering","base_name":"rendering","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":21386,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/rendering/opacity.svg","type":"file","name":"opacity.svg","base_name":"opacity","extension":".svg","size":5134,"date":"2019-10-25","sha1":"1ad150e58c37f349571b9eb3c5f417096e5ae6cb","md5":"5ad25b439d6305fa299631834d2190b0","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/rendering/opacity2.svg","type":"file","name":"opacity2.svg","base_name":"opacity2","extension":".svg","size":5192,"date":"2019-10-25","sha1":"320333fd80e72099cd68ded2b568e7d818467af1","md5":"03ea67e63d200d10423ee115fdafb8e8","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/rendering/paintOpacity.svg","type":"file","name":"paintOpacity.svg","base_name":"paintOpacity","extension":".svg","size":11060,"date":"2019-10-25","sha1":"09e499597aefba6a4c4b5d8562189123d534b374","md5":"c937c4f949a761a3f90960af718c4664","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting","type":"directory","name":"scripting","base_name":"scripting","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":113,"dirs_count":1,"size_count":695651,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/add.svg","type":"file","name":"add.svg","base_name":"add","extension":".svg","size":3233,"date":"2019-10-25","sha1":"bfc5e5de2c77bef7df9e6bd17a8c83e444393330","md5":"4dc16f247cf68f2d32cf1350d4997d24","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/addDescOnClick.svg","type":"file","name":"addDescOnClick.svg","base_name":"addDescOnClick","extension":".svg","size":6648,"date":"2019-10-25","sha1":"db44eaced3e602845643e51b7f00424792bf8ab4","md5":"a0db585dde49a2324409284fc9be73d9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/alert.svg","type":"file","name":"alert.svg","base_name":"alert","extension":".svg","size":4520,"date":"2019-10-25","sha1":"e0febc10eab7477529ac51556bdbfa9f4bbf028f","md5":"2740e669752bf8f6d08f38e9cdf62eb7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/bbox.svg","type":"file","name":"bbox.svg","base_name":"bbox","extension":".svg","size":17682,"date":"2019-10-25","sha1":"713a558a44671d2463368c316c9f9ab892f9c650","md5":"71ed120e58a1ef09c08755dab4852620","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":28,"end_line":29}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/boundsTransformChange.svg","type":"file","name":"boundsTransformChange.svg","base_name":"boundsTransformChange","extension":".svg","size":2791,"date":"2019-10-25","sha1":"e194673a74c2c239c3bb9ce070bf66c18d296f53","md5":"45c1f8b7fcc974bfb9a2835ecea762ae","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/bug12933.svg","type":"file","name":"bug12933.svg","base_name":"bug12933","extension":".svg","size":4561,"date":"2019-10-25","sha1":"035e36f9142213a0e378bf1b74d15b8af0f210d2","md5":"6005f258ffa6ed17748b57f64db24695","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/circle.svg","type":"file","name":"circle.svg","base_name":"circle","extension":".svg","size":2572,"date":"2019-10-25","sha1":"16a50f624e7cfb4a1444b920b058faf27ec29563","md5":"379b0d5ac874ab2d90100b3b0b72f899","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/currentScaleTranslate.svg","type":"file","name":"currentScaleTranslate.svg","base_name":"currentScaleTranslate","extension":".svg","size":4613,"date":"2019-10-25","sha1":"9764dd261d51a15d488db160d075f27a93248cdb","md5":"1a0b4d17151b0afdcf94a114578f8f38","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/display.svg","type":"file","name":"display.svg","base_name":"display","extension":".svg","size":4580,"date":"2019-10-25","sha1":"3abd50c1eb7a63dd11ee39d5ad3930d66484ddda","md5":"39e4014d9bb97f7737bf1bb25d740ad4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/domSVGColor.svg","type":"file","name":"domSVGColor.svg","base_name":"domSVGColor","extension":".svg","size":7092,"date":"2019-10-25","sha1":"46d95352648287cd96ba226ef09abfa781dc3421","md5":"648e1fa19b0c20e4c32e279530da2dad","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/ellipse.svg","type":"file","name":"ellipse.svg","base_name":"ellipse","extension":".svg","size":2910,"date":"2019-10-25","sha1":"2cbf2abeb02d92828e4833e262b04501079a0de1","md5":"ddfdb01019dc2d13972442e78e303a9a","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/enclosureList.svg","type":"file","name":"enclosureList.svg","base_name":"enclosureList","extension":".svg","size":18021,"date":"2019-10-25","sha1":"b9d092e8e29f58469a5fe982f1190ad2722c5cf6","md5":"520def46150a94122901c1ec8f90d34b","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":36,"end_line":36}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/enclosureList2.svg","type":"file","name":"enclosureList2.svg","base_name":"enclosureList2","extension":".svg","size":19123,"date":"2019-10-25","sha1":"83b22f05d05304b8e6fb20ced0a12e2127318f27","md5":"ed38148450410b079f14afb46663b7bf","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":36,"end_line":36}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/eventAttrAdd.svg","type":"file","name":"eventAttrAdd.svg","base_name":"eventAttrAdd","extension":".svg","size":3810,"date":"2019-10-25","sha1":"e7f53b9a5cfcfe05bd6ff3d1d7457e9668f61fa8","md5":"eeda8dfeae9dc48b6f5ff647fb735aa9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/fill.svg","type":"file","name":"fill.svg","base_name":"fill","extension":".svg","size":2325,"date":"2019-10-25","sha1":"653da0d477857fe706266002cba5118ef77056d4","md5":"01e1f88a5c8d5f06681e5bff26915a06","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/filterPatternUpdate.svg","type":"file","name":"filterPatternUpdate.svg","base_name":"filterPatternUpdate","extension":".svg","size":5780,"date":"2019-10-25","sha1":"b5086b35afe0a440fbe0f432e1004c747f9956fd","md5":"de8b9cee0e3f1482bbe26222aba457c1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/filterPatternUpdateRef.svg","type":"file","name":"filterPatternUpdateRef.svg","base_name":"filterPatternUpdateRef","extension":".svg","size":5014,"date":"2019-10-25","sha1":"9efc27e5b60ff4ab467490ff840232b87cd88dd5","md5":"9d7593fc1bc982e909a083861692eb7f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/forceRedraw.svg","type":"file","name":"forceRedraw.svg","base_name":"forceRedraw","extension":".svg","size":4049,"date":"2019-10-25","sha1":"e0bbbf488412774f6fb26a28d49c8305ca4f32c3","md5":"5d31bd64c94d71c5e74bbc84dda897b3","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":28,"end_line":29}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/getElementById.svg","type":"file","name":"getElementById.svg","base_name":"getElementById","extension":".svg","size":7915,"date":"2019-10-25","sha1":"3a05146f3c3923e6984b6448310b1847c9483cbf","md5":"e9201460706928453b57d022686c2ca9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/gradientsUpdate.svg","type":"file","name":"gradientsUpdate.svg","base_name":"gradientsUpdate","extension":".svg","size":5348,"date":"2019-10-25","sha1":"dc6d2fbe0ac2e4f9225e5f14e5b8f48ae40c9101","md5":"a77f2c671cca487b5dfd5bfcccd9bc57","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/gradientsUpdateRef.svg","type":"file","name":"gradientsUpdateRef.svg","base_name":"gradientsUpdateRef","extension":".svg","size":4592,"date":"2019-10-25","sha1":"d991800a84172c78eb977334c750ecb18b201c02","md5":"eaaafddee383b3dca4db09a6e4d68d78","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/image.svg","type":"file","name":"image.svg","base_name":"image","extension":".svg","size":4397,"date":"2019-10-25","sha1":"e86d54876b552f06855ded91f272ce148113ac98","md5":"b33cf74d1f220f3701d944fc82dc2aab","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/imageraster.svg","type":"file","name":"imageraster.svg","base_name":"imageraster","extension":".svg","size":7061,"date":"2019-10-25","sha1":"45654c4a6a4a4f1d36c348e3f5d02c00a0f76e9d","md5":"221e77b4a31a4885bab9bb81db646ce0","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/imageRefUpdate.svg","type":"file","name":"imageRefUpdate.svg","base_name":"imageRefUpdate","extension":".svg","size":4221,"date":"2019-10-25","sha1":"e61b1006dc3a61a761356f960d824408dc32d71b","md5":"9eadb702eac03cef01ae79ba149f7027","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/imageRendering.svg","type":"file","name":"imageRendering.svg","base_name":"imageRendering","extension":".svg","size":2481,"date":"2019-10-25","sha1":"0fd610d949720fe32148660253737c158cced55b","md5":"ee63fea522f3b958746c20b576638f46","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/imagesvg.svg","type":"file","name":"imagesvg.svg","base_name":"imagesvg","extension":".svg","size":7001,"date":"2019-10-25","sha1":"10b52f4c33c731d7e16efc42beaffe179175a139","md5":"269c2ef73432330ea78697ea1cf741b5","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/imageUpdate.svg","type":"file","name":"imageUpdate.svg","base_name":"imageUpdate","extension":".svg","size":5340,"date":"2019-10-25","sha1":"0a5df04ff80b07d7e4919cafa554a0b2027a0ed8","md5":"3744909e6b44027bfee81fd0d4c466cf","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/intersectionList.svg","type":"file","name":"intersectionList.svg","base_name":"intersectionList","extension":".svg","size":17284,"date":"2019-10-25","sha1":"8b63d7c12061d669b7239b66f4d123905407cda6","md5":"af10245c1c6e4540df91e3b44717456b","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":36,"end_line":36}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/intersectionList2.svg","type":"file","name":"intersectionList2.svg","base_name":"intersectionList2","extension":".svg","size":19138,"date":"2019-10-25","sha1":"17297698e008645277675277560dbe448b58c9fa","md5":"93c8f9891f4d877f743aac9aea48b2be","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":36,"end_line":36}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/javaBinding.svg","type":"file","name":"javaBinding.svg","base_name":"javaBinding","extension":".svg","size":3292,"date":"2019-10-25","sha1":"8c1d04df820119feb7f50545bae20e0fc443ca22","md5":"9539e5de56d0a026406c6f05cdb8e381","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/line.svg","type":"file","name":"line.svg","base_name":"line","extension":".svg","size":3139,"date":"2019-10-25","sha1":"17d976c6f7034c04a7d8d8ee832c26d1a6cb6350","md5":"1b5950bcd103152f7d5a4705a5120e7d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/markerUpdate.svg","type":"file","name":"markerUpdate.svg","base_name":"markerUpdate","extension":".svg","size":7703,"date":"2019-10-25","sha1":"bb367aa4d8d2ae1cd5033f7fdfdd60961ce0394b","md5":"cf47e08e37e373227f6e1fa474516b52","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/markerUpdateRef.svg","type":"file","name":"markerUpdateRef.svg","base_name":"markerUpdateRef","extension":".svg","size":3782,"date":"2019-10-25","sha1":"9985539353f58637ce78c0109b0de2985e5445c7","md5":"15a5635326fa47d0216c4f6beed599e1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/maskClipUpdate.svg","type":"file","name":"maskClipUpdate.svg","base_name":"maskClipUpdate","extension":".svg","size":5060,"date":"2019-10-25","sha1":"c96399cf53b3041f935a7eb0e63f2f1717c8514d","md5":"b61962cbce3100aa9eb45bb4873c9244","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/maskClipUpdateRef.svg","type":"file","name":"maskClipUpdateRef.svg","base_name":"maskClipUpdateRef","extension":".svg","size":4303,"date":"2019-10-25","sha1":"f81770a36ecf5d16d828531528169972756f570e","md5":"e2c3ceffa7bbd4954901594e77510637","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/memoryLeak1.svg","type":"file","name":"memoryLeak1.svg","base_name":"memoryLeak1","extension":".svg","size":3526,"date":"2019-10-25","sha1":"7c4fc10f046740eb9b68407fb8847c151353249e","md5":"d7a34c67f553478444258733d4494179","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/modalEventTest.svg","type":"file","name":"modalEventTest.svg","base_name":"modalEventTest","extension":".svg","size":4375,"date":"2019-10-25","sha1":"e03bf80ee591d51aa812b98bc2c63ba1a51d09b4","md5":"91359976f45866e9cc4b9325cb8e798e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":29,"end_line":30}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":36,"end_line":36}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/nestedsvg.svg","type":"file","name":"nestedsvg.svg","base_name":"nestedsvg","extension":".svg","size":2048,"date":"2019-10-25","sha1":"89552929cc929fedfe43bf8a7c8c387f07d2c4cf","md5":"78b217849ecbce4c75e8afbee3a6968f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/normalizedPathTest.svg","type":"file","name":"normalizedPathTest.svg","base_name":"normalizedPathTest","extension":".svg","size":2926,"date":"2019-10-25","sha1":"e16f198e10920005383080ec90f2ad218b28d431","md5":"b37ec02b4226bd1fe01318babd27aeab","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"andrest@world-affair.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"andrest@world-affair.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/paintType.svg","type":"file","name":"paintType.svg","base_name":"paintType","extension":".svg","size":5841,"date":"2019-10-25","sha1":"1b5b26798d62e13199481b692e57422e6eebf710","md5":"a45f5a569f0f005e827a5f4297107555","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/path.svg","type":"file","name":"path.svg","base_name":"path","extension":".svg","size":2223,"date":"2019-10-25","sha1":"2d5d07f1e91f7e1b8c6a482ed8e83aa940db3119","md5":"e425c0a92ea8c9e7e3072f1eacf0bb67","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/path_pathSegList1.svg","type":"file","name":"path_pathSegList1.svg","base_name":"path_pathSegList1","extension":".svg","size":12500,"date":"2019-10-25","sha1":"8e032e5cd3e3c9fb8d365abfa928c4d4c7c0a954","md5":"b61e0c71e109b200d8febf2954def1c4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/path_pathSegList2.svg","type":"file","name":"path_pathSegList2.svg","base_name":"path_pathSegList2","extension":".svg","size":8195,"date":"2019-10-25","sha1":"37cd43345553abbe7fc4ab205e5993bbd6df32c6","md5":"2c2619e1a49799a8001c0858d077d8b6","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/path_pathSegList_create.svg","type":"file","name":"path_pathSegList_create.svg","base_name":"path_pathSegList_create","extension":".svg","size":9547,"date":"2019-10-25","sha1":"38179dc8a2eec9c6689a94d9499624ba7619d5a2","md5":"cb8024558d2503176d455ee04b4cb288","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/pathLength.svg","type":"file","name":"pathLength.svg","base_name":"pathLength","extension":".svg","size":4371,"date":"2019-10-25","sha1":"107a8934a8e3267a2b529114edabab447999b0ac","md5":"5cc7a5ebeddcc9c3121b94873517deac","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/polygon.svg","type":"file","name":"polygon.svg","base_name":"polygon","extension":".svg","size":2247,"date":"2019-10-25","sha1":"712497a2fea1986e6d6b82c688fdcd410dc4af5e","md5":"12d048a9da97ec36d9c5e9717dd3060d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/polygon_points1.svg","type":"file","name":"polygon_points1.svg","base_name":"polygon_points1","extension":".svg","size":10690,"date":"2019-10-25","sha1":"3f5559acbb2cf84651af6a8883dec38fa861fddd","md5":"30778114686e0cffa7e3b298d01f24b2","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/polygon_points2.svg","type":"file","name":"polygon_points2.svg","base_name":"polygon_points2","extension":".svg","size":8125,"date":"2019-10-25","sha1":"afe9241cfa32bced148ef4ad2b21dcaf6fdccb69","md5":"b0c8a1890c8b519f81a0afbe98c364cc","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/polyline.svg","type":"file","name":"polyline.svg","base_name":"polyline","extension":".svg","size":2267,"date":"2019-10-25","sha1":"c293b4a4e9eb2519b3ce2322b4320338c9e55a3b","md5":"cb5fb84f83821aba21f856fa33afe3b5","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/polyline_points1.svg","type":"file","name":"polyline_points1.svg","base_name":"polyline_points1","extension":".svg","size":10625,"date":"2019-10-25","sha1":"7fc9e12f5f4ddfd4d8a72e7ed5d78c7b555257f3","md5":"bc8c440ee0e0a840750a59df1782d73d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/polyline_points2.svg","type":"file","name":"polyline_points2.svg","base_name":"polyline_points2","extension":".svg","size":8156,"date":"2019-10-25","sha1":"ce3b5f00b7f9be89b2d711d2d1110514ceba7558","md5":"06ee77b07cdb06fa8013519886f91be6","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/primaryDoc.svg","type":"file","name":"primaryDoc.svg","base_name":"primaryDoc","extension":".svg","size":2724,"date":"2019-10-25","sha1":"d3356f7c2103a3393a774fd58cce47e456e0dddb","md5":"968916a894562d793e2f1766bd7bbfd5","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"cam@mcc.id.au","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"cam@mcc.id.au","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://www.w3.org/1999/xlink","start_line":29,"end_line":29}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/rect.svg","type":"file","name":"rect.svg","base_name":"rect","extension":".svg","size":3420,"date":"2019-10-25","sha1":"f6ada0f8153eaf8304e6e8f524485a8dba702c79","md5":"97904122d918fa270b6e17a3d89e42cb","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/rectResizeOnClick.svg","type":"file","name":"rectResizeOnClick.svg","base_name":"rectResizeOnClick","extension":".svg","size":3541,"date":"2019-10-25","sha1":"2864a5c46091aa38f2bceaf1ae24dcd0e0cdeac1","md5":"c9e862993b48ff963697b271da8721fb","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":28,"end_line":29}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/relativeURI.svg","type":"file","name":"relativeURI.svg","base_name":"relativeURI","extension":".svg","size":8396,"date":"2019-10-25","sha1":"9d6b09543c17020d1f8888f94002402f3e61de61","md5":"742e00b32bc00bab1d68dcbc63ccdc73","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/remove.svg","type":"file","name":"remove.svg","base_name":"remove","extension":".svg","size":3369,"date":"2019-10-25","sha1":"5881304efa45c97ff22466cb4613d24730a657d9","md5":"3dcd29bb5daa6d5902fec2da9959b2de","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/removeLast.svg","type":"file","name":"removeLast.svg","base_name":"removeLast","extension":".svg","size":2104,"date":"2019-10-25","sha1":"4c8d22f72e09d2d897380ee84c19321a62bd5f5e","md5":"eab2065e92c9f4cbef146c460270bf75","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/removeOnclick.svg","type":"file","name":"removeOnclick.svg","base_name":"removeOnclick","extension":".svg","size":3379,"date":"2019-10-25","sha1":"c51559e7b3a67a81654be2167d99d9be6a49e785","md5":"fd345f43daf5d4dfe81375a4e6e4dc11","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/resourceDocDynamic11.svg","type":"file","name":"resourceDocDynamic11.svg","base_name":"resourceDocDynamic11","extension":".svg","size":1587,"date":"2019-10-25","sha1":"d0ea5387cba73b6eb218ceb57f0c325dff3c7e98","md5":"b0fd38791c3b0a7a31a388ee2c9fd8c0","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"cam@mcc.id.au","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"cam@mcc.id.au","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/resourceDocDynamic12.svg","type":"file","name":"resourceDocDynamic12.svg","base_name":"resourceDocDynamic12","extension":".svg","size":1587,"date":"2019-10-25","sha1":"ccfd5310ce0a6e6c9ec39e1b126a8cdffacdcd96","md5":"986b180f32934ca9ef6fb0a11946f3b2","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"cam@mcc.id.au","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"cam@mcc.id.au","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/resourceDocStatic11.svg","type":"file","name":"resourceDocStatic11.svg","base_name":"resourceDocStatic11","extension":".svg","size":1502,"date":"2019-10-25","sha1":"caa333d7dd47404f3ae7b2b75d83569d0e7d36bd","md5":"da1513a15533ad740f8f27dfc4e770cb","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"cam@mcc.id.au","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"cam@mcc.id.au","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/resourceDocStatic12.svg","type":"file","name":"resourceDocStatic12.svg","base_name":"resourceDocStatic12","extension":".svg","size":1504,"date":"2019-10-25","sha1":"438a183d9d446f5fa979df98d47ddd1edc0f5ae5","md5":"42fe686678cb48aa6cbe666250a21d71","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"cam@mcc.id.au","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"cam@mcc.id.au","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/rootSizeChange.svg","type":"file","name":"rootSizeChange.svg","base_name":"rootSizeChange","extension":".svg","size":3717,"date":"2019-10-25","sha1":"2087d72d91e46358377aff3faaf2e8ec2d3cfe27","md5":"625c07aa9d92ada7ce7f1298fa1dc756","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/security.svg","type":"file","name":"security.svg","base_name":"security","extension":".svg","size":7749,"date":"2019-10-25","sha1":"0eb55993d3ae03931b3c42d287c1499792b93211","md5":"bbef8acdfda49328c494e839f7fbdb83","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":37,"end_line":38}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":37,"end_line":37}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":44,"end_line":44}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/security2.svg","type":"file","name":"security2.svg","base_name":"security2","extension":".svg","size":8113,"date":"2019-10-25","sha1":"9a467c0247bf6bcf2b729ab6d62d6b2a9089fa3f","md5":"4cae1da82a8ab6e74222f177e95953a4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":8,"end_line":21,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":40,"end_line":41}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":40,"end_line":40}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":15,"end_line":15},{"url":"http://www.w3.org/1999/xlink","start_line":47,"end_line":47}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/security3.svg","type":"file","name":"security3.svg","base_name":"security3","extension":".svg","size":10644,"date":"2019-10-25","sha1":"1ba70dcb526446d1c57403c3899ad8e94e5627a8","md5":"255cafd25fc04dccf125411e21b88804","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/security3Include.svg","type":"file","name":"security3Include.svg","base_name":"security3Include","extension":".svg","size":1865,"date":"2019-10-25","sha1":"1d36ea3e24b4e7b44483ff5c968abcb94bc257c6","md5":"acdef0f901152764151a8d87c077efa1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/setProperty.svg","type":"file","name":"setProperty.svg","base_name":"setProperty","extension":".svg","size":2899,"date":"2019-10-25","sha1":"c25bedd46a0e9142991da88cd2870137829830df","md5":"f73341991a3c42ec7510c75a6e44f6e9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/styling.svg","type":"file","name":"styling.svg","base_name":"styling","extension":".svg","size":5218,"date":"2019-10-25","sha1":"eed6b27847e409154cd510e189e3d0859db58475","md5":"4348cbdbbaa5c419cc80fa45482fc4a9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":26,"end_line":26}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/suspendRedraw.svg","type":"file","name":"suspendRedraw.svg","base_name":"suspendRedraw","extension":".svg","size":7447,"date":"2019-10-25","sha1":"7147cda290b31b0cb5cdf46e059873be9d99a498","md5":"116c312c929f518b04be30ffc6c87236","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":28,"end_line":29}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/svg.svg","type":"file","name":"svg.svg","base_name":"svg","extension":".svg","size":2828,"date":"2019-10-25","sha1":"f6db4c8cdd8c377a813eb12d18f291da8469aeeb","md5":"7f553e1b4efbdf2ac0640d5315be2d19","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/svg2.svg","type":"file","name":"svg2.svg","base_name":"svg2","extension":".svg","size":2652,"date":"2019-10-25","sha1":"ce3d35d99fe23a23773da3fc7969b20f0d26d4a4","md5":"57fa676aa17c93cdbf241735e9fae1df","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/svgFontMove.svg","type":"file","name":"svgFontMove.svg","base_name":"svgFontMove","extension":".svg","size":2582,"date":"2019-10-25","sha1":"9eee081a28b5c1d031ac292d9f7929b4d7cdfe7d","md5":"702dbbd934d357e3e19ebf910c7c82f1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/text.svg","type":"file","name":"text.svg","base_name":"text","extension":".svg","size":4272,"date":"2019-10-25","sha1":"ac3382da8a5a34b9396f55da18b4c7ef4c669e65","md5":"ace3eb64befec1f57287fd3105d0ac83","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/text_children1.svg","type":"file","name":"text_children1.svg","base_name":"text_children1","extension":".svg","size":4916,"date":"2019-10-25","sha1":"2e2f4909077d08cd45078314e937f85c4a387bb6","md5":"914d8af10e4bb15d6febea8dbb20dbe1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/text_children2.svg","type":"file","name":"text_children2.svg","base_name":"text_children2","extension":".svg","size":4163,"date":"2019-10-25","sha1":"f5591fbe0e0a47e185dcf38c835c131704fc64e4","md5":"a761022621f1a8e01ebe1267ad65b9ed","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/text_children3.svg","type":"file","name":"text_children3.svg","base_name":"text_children3","extension":".svg","size":6216,"date":"2019-10-25","sha1":"878199dccd021da1fdea566dd67a80d74f025d64","md5":"06678050aaaeb5131fe1178330fc399d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/text_content.svg","type":"file","name":"text_content.svg","base_name":"text_content","extension":".svg","size":15112,"date":"2019-10-25","sha1":"80b9af2ea7248fb83db6dffaa109b21051ddca5e","md5":"02ce847638c683e9fc09f56eb1f8db7b","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/text_dxlist1.svg","type":"file","name":"text_dxlist1.svg","base_name":"text_dxlist1","extension":".svg","size":10748,"date":"2019-10-25","sha1":"e1e26bad1d2b78d9708fe41dbf26c793fa5bee03","md5":"a74b43598834d6e892584d7cfb0cd90b","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/text_dxlist2.svg","type":"file","name":"text_dxlist2.svg","base_name":"text_dxlist2","extension":".svg","size":6251,"date":"2019-10-25","sha1":"367d904a1fbec54f03deaff36a92d4ba7d758e89","md5":"3c50753aca955bc7def6a8e79d6e678c","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/text_dylist1.svg","type":"file","name":"text_dylist1.svg","base_name":"text_dylist1","extension":".svg","size":11629,"date":"2019-10-25","sha1":"564588395a6d4eefc296abe4727fd320b5a0192e","md5":"0808ebd3545394388aff6953ed2cf055","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/text_dylist2.svg","type":"file","name":"text_dylist2.svg","base_name":"text_dylist2","extension":".svg","size":6635,"date":"2019-10-25","sha1":"7f37a5e64f763ca462a54ae70f0b8fc843ef40c6","md5":"1a3c3e27352175c0de5063d85fbaa773","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/text_xlist1.svg","type":"file","name":"text_xlist1.svg","base_name":"text_xlist1","extension":".svg","size":10804,"date":"2019-10-25","sha1":"9a064583e9e0943f2c9b931f6fb3b2fc3bfd1335","md5":"d05fd9ae45637260642473a1a8779603","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/text_xlist2.svg","type":"file","name":"text_xlist2.svg","base_name":"text_xlist2","extension":".svg","size":6214,"date":"2019-10-25","sha1":"20ca58464aecc5475facbb6e60e809e518e6971b","md5":"601c7aecb1088340abca7c95294f9a57","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/text_ylist1.svg","type":"file","name":"text_ylist1.svg","base_name":"text_ylist1","extension":".svg","size":11723,"date":"2019-10-25","sha1":"540cc6608b8c8966b4756897536874cb16c87933","md5":"c9afa6bbf35641671b1c92051671c68f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/text_ylist2.svg","type":"file","name":"text_ylist2.svg","base_name":"text_ylist2","extension":".svg","size":6624,"date":"2019-10-25","sha1":"9f1127ccf9cff52feec5543c4e1b3e65bf2b70ad","md5":"888a1bbb755f89dd58c215c13befd331","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/textAllProperties.svg","type":"file","name":"textAllProperties.svg","base_name":"textAllProperties","extension":".svg","size":10629,"date":"2019-10-25","sha1":"f60ec2b23bb0f4034fb9b89cd672c34a505902db","md5":"fffe8172401fdbaad4f14e36e1317706","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/textpathProperties.svg","type":"file","name":"textpathProperties.svg","base_name":"textpathProperties","extension":".svg","size":5763,"date":"2019-10-25","sha1":"f892a208cf9edab0a08bcfbb6e2de95c1b5e983b","md5":"c3cb05353b473135af77e2c73de952b9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":28},{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":28}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26},{"email":"nicolas.socheleau@bitflash.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/textProperties.svg","type":"file","name":"textProperties.svg","base_name":"textProperties","extension":".svg","size":2942,"date":"2019-10-25","sha1":"c8bd220238d81d0cc0ec9f30bd20d3d94b4ce327","md5":"c4992d421a990163c47975670e3f29b2","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/textProperties2.svg","type":"file","name":"textProperties2.svg","base_name":"textProperties2","extension":".svg","size":9301,"date":"2019-10-25","sha1":"5600d863b09668499816580296a75b28e79dcaea","md5":"e005d0145f02e64a6b4680c677df817e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bill.haneman@ireland.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/textSelection.svg","type":"file","name":"textSelection.svg","base_name":"textSelection","extension":".svg","size":4020,"date":"2019-10-25","sha1":"b6e38011a679b124c9ecdda7f00e8f7dada8ca8e","md5":"46093559afdf0405028c20e320d3c1c0","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/transform.svg","type":"file","name":"transform.svg","base_name":"transform","extension":".svg","size":4287,"date":"2019-10-25","sha1":"869c9ae034e5502b4fcf99a36a169ad8f19a6c54","md5":"f10638fcb71b07fcfbf5c8c1593ce1cf","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/transform2.svg","type":"file","name":"transform2.svg","base_name":"transform2","extension":".svg","size":3217,"date":"2019-10-25","sha1":"83889704e1a561c0f253915a2776c340e4d7e8a1","md5":"a1c258e97684b91a7dca3e589ca19479","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/transform_create.svg","type":"file","name":"transform_create.svg","base_name":"transform_create","extension":".svg","size":8224,"date":"2019-10-25","sha1":"819250d8f57587f26a791eb673e5ad0e8a60e93e","md5":"b1f767049340dbb715684059e6781cb7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/transform_create1.svg","type":"file","name":"transform_create1.svg","base_name":"transform_create1","extension":".svg","size":8133,"date":"2019-10-25","sha1":"c965ec18d5995bd09e16a5b43e4f480446633c9d","md5":"5a4862d8db974030b227abdf5c37bb89","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/transform_getTransform1.svg","type":"file","name":"transform_getTransform1.svg","base_name":"transform_getTransform1","extension":".svg","size":12830,"date":"2019-10-25","sha1":"4a05044e40a9ce2e2a2dac8b865a3e4fe41bb40a","md5":"85850e06ce7cef1dc841b23e3342c777","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/transform_getTransform2.svg","type":"file","name":"transform_getTransform2.svg","base_name":"transform_getTransform2","extension":".svg","size":6994,"date":"2019-10-25","sha1":"54a07aaa2c4a36e9d8ac3d7df08edcfe56e159e4","md5":"6c8f3e27a3b7acb9d5db85aa32127cf1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/trefProperties.svg","type":"file","name":"trefProperties.svg","base_name":"trefProperties","extension":".svg","size":3721,"date":"2019-10-25","sha1":"b4380617f96f73c36e1407464dc7c71acdb5a280","md5":"090c354e4e8c4ec5226b8cd7903a4eba","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":28},{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":28}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26},{"email":"nicolas.socheleau@bitflash.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/tspan.svg","type":"file","name":"tspan.svg","base_name":"tspan","extension":".svg","size":4661,"date":"2019-10-25","sha1":"a229331b1179ac5dfcb89c0ba8c95b6d5f60f071","md5":"6786ec7d6f83c7a112f69a5e3e483c3e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/tspan_children1.svg","type":"file","name":"tspan_children1.svg","base_name":"tspan_children1","extension":".svg","size":5040,"date":"2019-10-25","sha1":"11b91894f2589ba0244400c0705a7c97fd63a061","md5":"78b1aad4177eb7eef7572585d75734a3","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/tspan_children2.svg","type":"file","name":"tspan_children2.svg","base_name":"tspan_children2","extension":".svg","size":4291,"date":"2019-10-25","sha1":"88c0dc3bd538a805da74ad0ca75f13299efc07a1","md5":"2768a18c133e959b6c3da93d0fe059b1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/tspan_children3.svg","type":"file","name":"tspan_children3.svg","base_name":"tspan_children3","extension":".svg","size":5024,"date":"2019-10-25","sha1":"bc383ef06ba6ee3b6217a59b3272e65da41bba4e","md5":"be91384560da3021caa9525d658b207f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/tspanProperties.svg","type":"file","name":"tspanProperties.svg","base_name":"tspanProperties","extension":".svg","size":3248,"date":"2019-10-25","sha1":"ba0d676760fa3a63e36125aec5b13f6895ebfbf1","md5":"427d34b3490236669c2706658151c3de","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":28},{"value":"nicolas.socheleau@bitflash.com","start_line":26,"end_line":28}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26},{"email":"nicolas.socheleau@bitflash.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/use.svg","type":"file","name":"use.svg","base_name":"use","extension":".svg","size":8932,"date":"2019-10-25","sha1":"0687db75856307d888e0ea40ca922aabff7bc334","md5":"1114af2739f145fe0d1bbba066a35f42","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/viewBoxOnLoad.svg","type":"file","name":"viewBoxOnLoad.svg","base_name":"viewBoxOnLoad","extension":".svg","size":2484,"date":"2019-10-25","sha1":"97bfe879391e628d4e65064a7eb6c5a0efa07637","md5":"7effd4d8d72394a59c3b080599d1154f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/visibility.svg","type":"file","name":"visibility.svg","base_name":"visibility","extension":".svg","size":4699,"date":"2019-10-25","sha1":"06db0fc0c01dab5e6bf27dce4bc341e5bc5b4f03","md5":"5046f4f549fb30f65d836069c6c8dbcc","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/visibilityOnClick.svg","type":"file","name":"visibilityOnClick.svg","base_name":"visibilityOnClick","extension":".svg","size":6193,"date":"2019-10-25","sha1":"5c7a7194baf8a09ed6f5f065d9dbb4fa010f86d2","md5":"368147c00b73a8e914596b609dbe70cc","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/xAnimOnClick.svg","type":"file","name":"xAnimOnClick.svg","base_name":"xAnimOnClick","extension":".svg","size":4531,"date":"2019-10-25","sha1":"13e3ea6786ff1d98a304feb345a1a2582aa188b3","md5":"3e35fe00bb23717c6fc4e88f1a41bc30","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/xyModifOnClick.svg","type":"file","name":"xyModifOnClick.svg","base_name":"xyModifOnClick","extension":".svg","size":3571,"date":"2019-10-25","sha1":"727483e3da979fa1f3ea67b35496b0b1f1020ef6","md5":"fda8310717e43b842183cbd4cd6679c8","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/xyModifOnLoad.svg","type":"file","name":"xyModifOnLoad.svg","base_name":"xyModifOnLoad","extension":".svg","size":3116,"date":"2019-10-25","sha1":"8f105bef3314440528a340dfb40d4b4ffe9c529c","md5":"72d121c7fb0c26a182477170b29016c9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/zeroSize.svg","type":"file","name":"zeroSize.svg","base_name":"zeroSize","extension":".svg","size":10450,"date":"2019-10-25","sha1":"38aed0329356bf36bd38f0453d0d9e0404789364","md5":"f367983eaa8bfb2fc309e016c4984110","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/textcontent","type":"directory","name":"textcontent","base_name":"textcontent","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":26173,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/textcontent/missing-glpyh.svg","type":"file","name":"missing-glpyh.svg","base_name":"missing-glpyh","extension":".svg","size":14364,"date":"2019-10-25","sha1":"589b73c21a6411a954eaea155b48503468a61986","md5":"0206dc2a140cb5e2f9ca4fe7fff8f014","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"dean.jackson@cmis.csiro.au","start_line":30,"end_line":31}],"packages":[],"emails":[{"email":"dean.jackson@cmis.csiro.au","start_line":30,"end_line":30}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35},{"url":"http://www.microsoft.com/truetype","start_line":123,"end_line":123},{"url":"http://www.steadystate.com/svg","start_line":125,"end_line":125}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/scripting/textcontent/numberOfChars.svg","type":"file","name":"numberOfChars.svg","base_name":"numberOfChars","extension":".svg","size":11809,"date":"2019-10-25","sha1":"988c660165f58987f02d22f4989bcef240048bff","md5":"3e7977d035368fc12df9698c4436e601","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/shapes","type":"directory","name":"shapes","base_name":"shapes","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":6355,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/shapes/emptyShape.svg","type":"file","name":"emptyShape.svg","base_name":"emptyShape","extension":".svg","size":2175,"date":"2019-10-25","sha1":"e3bcff6107b3f051ca6596464ebc2e6d36a0aabb","md5":"59efc70a7def0e1b75acd4bb6361af85","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/shapes/zero.svg","type":"file","name":"zero.svg","base_name":"zero","extension":".svg","size":4180,"date":"2019-10-25","sha1":"2e744e8502f90f4b0f2e490b92baa21d92110796","md5":"a36f9ae66801cdfc9b4f9dd9513294c5","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure","type":"directory","name":"structure","base_name":"structure","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":28,"dirs_count":0,"size_count":386369,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/dataProtocol.svg","type":"file","name":"dataProtocol.svg","base_name":"dataProtocol","extension":".svg","size":38339,"date":"2019-10-25","sha1":"7b40fef45cb67a112966703af6c8cab5c7657baf","md5":"d7251b5da6ada1f5c7c871a67cbf8405","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/externalUseCascading.svg","type":"file","name":"externalUseCascading.svg","base_name":"externalUseCascading","extension":".svg","size":2856,"date":"2019-10-25","sha1":"401889c96788038b035ee0328238757232797818","md5":"27951084ab6446c41817cfd1a3545358","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/image.svg","type":"file","name":"image.svg","base_name":"image","extension":".svg","size":2794,"date":"2019-10-25","sha1":"15cea50c9d8094246b34429e646cf10197fcc275","md5":"c60e1ecea272834e1c94204ab751afff","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/rasterImageViewBox.svg","type":"file","name":"rasterImageViewBox.svg","base_name":"rasterImageViewBox","extension":".svg","size":23898,"date":"2019-10-25","sha1":"28739360cd97b241de0532a6ae0e6b4df42b34ab","md5":"c73ece16145cc1dad4bd2e9e10e953c9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/rasterImageViewBoxClip.svg","type":"file","name":"rasterImageViewBoxClip.svg","base_name":"rasterImageViewBoxClip","extension":".svg","size":29461,"date":"2019-10-25","sha1":"995571f990a3a0d92be62006ce0233509dff2093","md5":"dbd5eafddcf7b38a3a7fddf75a77e0c2","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":28,"end_line":29}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/rasterImageViewBoxOverflow.svg","type":"file","name":"rasterImageViewBoxOverflow.svg","base_name":"rasterImageViewBoxOverflow","extension":".svg","size":24372,"date":"2019-10-25","sha1":"1aa93f878e56967bd969b2a8dd81fad46aa3a0e3","md5":"d39a63c5ba54896e2dfcde8e6d6b9212","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/requiredFeatures.svg","type":"file","name":"requiredFeatures.svg","base_name":"requiredFeatures","extension":".svg","size":8347,"date":"2019-10-25","sha1":"09ff792fe9d309518b426926fdaf4dd5421374b2","md5":"aad78e09d4b6cf44d97c11ab491a82d9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/requiredFeaturesCombo.svg","type":"file","name":"requiredFeaturesCombo.svg","base_name":"requiredFeaturesCombo","extension":".svg","size":4794,"date":"2019-10-25","sha1":"0df5e7961285ecf219ae3ccb1ca7137d45482211","md5":"42a3b2aab52acdd21c717a8a0885267d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/svgImageViewBox.svg","type":"file","name":"svgImageViewBox.svg","base_name":"svgImageViewBox","extension":".svg","size":23892,"date":"2019-10-25","sha1":"3ff42e49c3ca66571f64ff9ace88240a78797b10","md5":"dff6c2698e5916b0d1b128935a15fa9e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/svgImageViewBoxClip.svg","type":"file","name":"svgImageViewBoxClip.svg","base_name":"svgImageViewBoxClip","extension":".svg","size":29454,"date":"2019-10-25","sha1":"8a29a75afe4a5875cd305ecf55d8723dd4120331","md5":"b33065cca43af082f480c2f1dd48447d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":28,"end_line":29}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/svgImageViewBoxOverflow.svg","type":"file","name":"svgImageViewBoxOverflow.svg","base_name":"svgImageViewBoxOverflow","extension":".svg","size":24650,"date":"2019-10-25","sha1":"2c29056998b5dad93cc39f0b28aa21edfd1017bb","md5":"e406eb1a03255a87dc186455eb618a5d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/switch.svg","type":"file","name":"switch.svg","base_name":"switch","extension":".svg","size":2650,"date":"2019-10-25","sha1":"a4fa15f86a5188a64ed06826761fa4baa496045a","md5":"d642c0789c0ff8fea6db488449de9372","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/symbolViewBox.svg","type":"file","name":"symbolViewBox.svg","base_name":"symbolViewBox","extension":".svg","size":26825,"date":"2019-10-25","sha1":"1a21fbb0a8a3ccda8a3f7c5e227fc23aa4ed8109","md5":"8968a4c8f3836cd7d95781bbadc75b1b","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/symbolViewBoxClip.svg","type":"file","name":"symbolViewBoxClip.svg","base_name":"symbolViewBoxClip","extension":".svg","size":32563,"date":"2019-10-25","sha1":"695a4f34c6b414270e088035f39eb8e10a043eb6","md5":"8222564de823b12ac6afe3c32b41a82f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":29,"end_line":30}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":29,"end_line":29}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/symbolViewBoxOverflow.svg","type":"file","name":"symbolViewBoxOverflow.svg","base_name":"symbolViewBoxOverflow","extension":".svg","size":28341,"date":"2019-10-25","sha1":"e816df2f88828311efac080201dd2535f6682d11","md5":"03a804052ab2c659822ecd2f6acdac91","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":28,"end_line":29}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/systemLanguage.svg","type":"file","name":"systemLanguage.svg","base_name":"systemLanguage","extension":".svg","size":8642,"date":"2019-10-25","sha1":"1f47c3bc1fcd2cbbdbe89898e669bea9203d06ac","md5":"f289e706a9d1d682d8c7bb2449e66462","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/systemLanguageDialect.svg","type":"file","name":"systemLanguageDialect.svg","base_name":"systemLanguageDialect","extension":".svg","size":2449,"date":"2019-10-25","sha1":"142bc7257d7808a0758cc3aa47fe3e236f5cf750","md5":"440abd539ca1f12e3c4bbc9372495cd9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/tiff.svg","type":"file","name":"tiff.svg","base_name":"tiff","extension":".svg","size":3166,"date":"2019-10-25","sha1":"3aacd2b003a38042ecc00595631a27c2fa6c8286","md5":"797180ea3668f5a6e04d20ed61cd8420","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/toolTips.svg","type":"file","name":"toolTips.svg","base_name":"toolTips","extension":".svg","size":24341,"date":"2019-10-25","sha1":"22cf545685d2c792909f1742baf735d4509eddb5","md5":"02b1a3152c078d7d5942a3ccc6778dc8","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":31,"end_line":32}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":36,"end_line":36}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/useMultiple.svg","type":"file","name":"useMultiple.svg","base_name":"useMultiple","extension":".svg","size":4306,"date":"2019-10-25","sha1":"94ebed30ec44a90207211e8f49731e1e128819a4","md5":"9b7b452cc2d6bc092e23f0ccfdc73aea","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/useMultipleURI.svg","type":"file","name":"useMultipleURI.svg","base_name":"useMultipleURI","extension":".svg","size":4975,"date":"2019-10-25","sha1":"021130fcc32905ebd8eb1ddc801cc7dc301b4638","md5":"e72b316618b30fcd859879f7d607bf1f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/useStylesheet.svg","type":"file","name":"useStylesheet.svg","base_name":"useStylesheet","extension":".svg","size":2951,"date":"2019-10-25","sha1":"a4ec164059f98e897665363bfec68bd8f7d887c4","md5":"795d635c3b6366f920575b128278b745","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/useStyling.svg","type":"file","name":"useStyling.svg","base_name":"useStyling","extension":".svg","size":3025,"date":"2019-10-25","sha1":"9609dff7451191c5405b74fe4f8dc1fe8a09340d","md5":"30ea89f5bb0d5bfce10957e176ad5115","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/useStylingURI.svg","type":"file","name":"useStylingURI.svg","base_name":"useStylingURI","extension":".svg","size":7233,"date":"2019-10-25","sha1":"ea8ea98793540b57bded9136507890e9927a5d03","md5":"948bf602f7237eb07ed298a695042c9c","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/useTargets.svg","type":"file","name":"useTargets.svg","base_name":"useTargets","extension":".svg","size":5572,"date":"2019-10-25","sha1":"964846a7f40c0608ee8f8f0891635d8dfa6eec27","md5":"7da0f390bbcfa148d28c9c3d58120564","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/useTargets2.svg","type":"file","name":"useTargets2.svg","base_name":"useTargets2","extension":".svg","size":8658,"date":"2019-10-25","sha1":"54f218f1762cd3ac547c1e6f1cfc80afb67dc45a","md5":"dc68cefe2d69981d52929d9ec4fb4279","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/xmlBase.svg","type":"file","name":"xmlBase.svg","base_name":"xmlBase","extension":".svg","size":2805,"date":"2019-10-25","sha1":"dd484ff818a681b4a402d2017dee3d41c2855399","md5":"45195004b2e9c60e62f6894c7b583658","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"thomas.deweese@kodak.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"thomas.deweese@kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/structure/xmlBaseStyling.svg","type":"file","name":"xmlBaseStyling.svg","base_name":"xmlBaseStyling","extension":".svg","size":5010,"date":"2019-10-25","sha1":"8cb43335d3437e2d96502edf03e38aad0d908a2f","md5":"fd4dacb0ac1d687b5534bd817c64d802","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/styling","type":"directory","name":"styling","base_name":"styling","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":9,"dirs_count":0,"size_count":33291,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/styling/alternateStylesheet.svg","type":"file","name":"alternateStylesheet.svg","base_name":"alternateStylesheet","extension":".svg","size":6106,"date":"2019-10-25","sha1":"764cc219592dd6c5122686b4b0f6427a08d1825f","md5":"38ae4c10fbb30af66212d6fb8643b3ba","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/styling/cssMedia.svg","type":"file","name":"cssMedia.svg","base_name":"cssMedia","extension":".svg","size":5928,"date":"2019-10-25","sha1":"d8f2b89e7b4a3c7ea397589798c6f16a24b25e2f","md5":"760467f40b8812ac9944c1bfb0dac1e9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/styling/cssMediaList.svg","type":"file","name":"cssMediaList.svg","base_name":"cssMediaList","extension":".svg","size":4609,"date":"2019-10-25","sha1":"3ec1aabb408ebf953a14b9626128a4125f3f6515","md5":"f39be491cff555f4e67d73ab1e57b5f4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/styling/defaultFontFamily.svg","type":"file","name":"defaultFontFamily.svg","base_name":"defaultFontFamily","extension":".svg","size":1188,"date":"2019-10-25","sha1":"bccfb71194c568713303032cb8a9bc8eefd7fa8e","md5":"fedea49cd5215f2bac1c6ec504deffd6","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":24,"end_line":24}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/styling/emptyStyle.svg","type":"file","name":"emptyStyle.svg","base_name":"emptyStyle","extension":".svg","size":1114,"date":"2019-10-25","sha1":"e7e8bfa77b9c8459a824ff86979b81398f3ae295","md5":"e7a9f30cb3e71f7d6ae1989bc7900d7d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":23,"end_line":23}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/styling/fontShorthand.svg","type":"file","name":"fontShorthand.svg","base_name":"fontShorthand","extension":".svg","size":4448,"date":"2019-10-25","sha1":"4611b590bee7bcb6bce151bde964edbf069addc6","md5":"b0d397ae03fe0d7d923586b4bb8c4e7c","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thierry.Kormann@sophia.inria.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/styling/important.svg","type":"file","name":"important.svg","base_name":"important","extension":".svg","size":3186,"date":"2019-10-25","sha1":"bd74d94ad3282c6403569d3a6c90175351eddeca","md5":"d2511091f89245f02dfb2f2f87f6ba94","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/styling/smiley.svg","type":"file","name":"smiley.svg","base_name":"smiley","extension":".svg","size":3681,"date":"2019-10-25","sha1":"16ef630e9986ab2a3111edddebdd732d4a5d8d56","md5":"5417b94db6d0ee54005241567b7af6cc","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":38,"end_line":38}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/styling/styleElement.svg","type":"file","name":"styleElement.svg","base_name":"styleElement","extension":".svg","size":3031,"date":"2019-10-25","sha1":"9655161f560d3e5a3f0d8ba4a8293152bb8bbf1d","md5":"5ddf003b917bfaf13a255aff3eb2c6a3","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text","type":"directory","name":"text","base_name":"text","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":30,"dirs_count":0,"size_count":170581,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/longTextOnPath.svg","type":"file","name":"longTextOnPath.svg","base_name":"longTextOnPath","extension":".svg","size":3361,"date":"2019-10-25","sha1":"d2cf5120886f3f5aae43ad62943b97be011c560b","md5":"f9424f349aca641bdd8e1685cb234877","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/smallFonts.svg","type":"file","name":"smallFonts.svg","base_name":"smallFonts","extension":".svg","size":6035,"date":"2019-10-25","sha1":"1b5c810156d2e16610884f1720ee57560612919e","md5":"bb4f4fe63fa44ae278dfb5578e63c4c2","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":28,"end_line":29}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textAnchor.svg","type":"file","name":"textAnchor.svg","base_name":"textAnchor","extension":".svg","size":7955,"date":"2019-10-25","sha1":"9d2ddd11686f29d17c5ae9abc1455241e119a2f3","md5":"120e24367b9e660bc1d2590b2cbe05a8","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textAnchor2.svg","type":"file","name":"textAnchor2.svg","base_name":"textAnchor2","extension":".svg","size":5993,"date":"2019-10-25","sha1":"ccff45406335552d741c648a0b75f34f1f628bed","md5":"2831595bf388d86c4120bd576d5a8322","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textAnchor3.svg","type":"file","name":"textAnchor3.svg","base_name":"textAnchor3","extension":".svg","size":6395,"date":"2019-10-25","sha1":"5df6b72c376a8d9f938da6cabd2e3bdd47676852","md5":"080331c2e147e64163b2e6e479686cae","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textBiDi.svg","type":"file","name":"textBiDi.svg","base_name":"textBiDi","extension":".svg","size":5034,"date":"2019-10-25","sha1":"d052f5745145f1ba8667d9115515146cb62f4dc4","md5":"d591e81ed8681766917b0e3871c0cbbf","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bill.haneman@ireland.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textBiDi2.svg","type":"file","name":"textBiDi2.svg","base_name":"textBiDi2","extension":".svg","size":2871,"date":"2019-10-25","sha1":"26c541bf3e01f5f5b045491fbef84d557952c1d9","md5":"8d83bb95e28c7a1f4ad94405b178ec28","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textDecoration.svg","type":"file","name":"textDecoration.svg","base_name":"textDecoration","extension":".svg","size":4641,"date":"2019-10-25","sha1":"c7a76f49df868e447630a2ce29126c6ffad02a9b","md5":"d0323ef66e4a2ab547686feda0e02e58","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textDecoration2.svg","type":"file","name":"textDecoration2.svg","base_name":"textDecoration2","extension":".svg","size":5428,"date":"2019-10-25","sha1":"c2e037fd05b3237054c7ab196d2787e6662249f2","md5":"39c85a7b7966bb77a9666a10b10bd22f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textEffect.svg","type":"file","name":"textEffect.svg","base_name":"textEffect","extension":".svg","size":5463,"date":"2019-10-25","sha1":"0090e16fb8e0e3c472109040dc857db41562fdd2","md5":"ef78e02378e1c3c2b7a9b2af93e71a93","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textEffect2.svg","type":"file","name":"textEffect2.svg","base_name":"textEffect2","extension":".svg","size":4633,"date":"2019-10-25","sha1":"efc51c1c7207bdd815db20aa38331c7bf7aee4bc","md5":"95b700962c96bc1ff3d496d52c7e74da","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textEffect3.svg","type":"file","name":"textEffect3.svg","base_name":"textEffect3","extension":".svg","size":6146,"date":"2019-10-25","sha1":"8a1a466d00cbd116b0a86fa7bac58852357a8ac8","md5":"76ab012ee2af0d971169e908de4fa5a8","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textFeatures.svg","type":"file","name":"textFeatures.svg","base_name":"textFeatures","extension":".svg","size":5465,"date":"2019-10-25","sha1":"cdb2db604b3971296a8197adc109ecbdb0025b04","md5":"782dd6a6ec61014245867c350b7c831e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bill.haneman@ireland.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textGlyphOrientationHorizontal.svg","type":"file","name":"textGlyphOrientationHorizontal.svg","base_name":"textGlyphOrientationHorizontal","extension":".svg","size":4353,"date":"2019-10-25","sha1":"801ac923ebff103799b4a21738ddecd22ecb1200","md5":"1fe0ae347de5a99ac84c501159c24a9d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textLayout.svg","type":"file","name":"textLayout.svg","base_name":"textLayout","extension":".svg","size":6492,"date":"2019-10-25","sha1":"f9e3e9c21785e47561ef77845b5ab4943ca9672f","md5":"f922abe0a5cff9712688dceecb197e35","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bill.haneman@ireland.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textLayout2.svg","type":"file","name":"textLayout2.svg","base_name":"textLayout2","extension":".svg","size":5017,"date":"2019-10-25","sha1":"ff2620e5deb2984ad0459afe5b3cc29648283a50","md5":"3c1eede583ab9c0f5a8f8b12d2b9a6d2","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bill.haneman@ireland.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textLength.svg","type":"file","name":"textLength.svg","base_name":"textLength","extension":".svg","size":6238,"date":"2019-10-25","sha1":"86efbab098def957a8ee69eae99c7063a62165f8","md5":"d991f622360ac4a5bf1dc044ad15e7a4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textOnPath.svg","type":"file","name":"textOnPath.svg","base_name":"textOnPath","extension":".svg","size":7964,"date":"2019-10-25","sha1":"52a520b66d7cc2c43faa3816932a2029262ff466","md5":"b9850439684073df5eb7b9b357113343","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textOnPath2.svg","type":"file","name":"textOnPath2.svg","base_name":"textOnPath2","extension":".svg","size":3643,"date":"2019-10-25","sha1":"1a9d4b704663abd647e3906a97fd49bbd4598040","md5":"387c0cf1798dacd0322eeef395b07ba3","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":26,"end_line":26}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textOnPath3.svg","type":"file","name":"textOnPath3.svg","base_name":"textOnPath3","extension":".svg","size":3258,"date":"2019-10-25","sha1":"fa380bb3ec35122bcb3186f4dbcd73ea1792343c","md5":"9399669548363fb11baf79f641351f93","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":26,"end_line":26}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textOnPathSpaces.svg","type":"file","name":"textOnPathSpaces.svg","base_name":"textOnPathSpaces","extension":".svg","size":7135,"date":"2019-10-25","sha1":"28f4d653a1b9500fe109ccf8616020c7880a8725","md5":"832f21a2c88575981c323d1a30926118","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textPCDATA.svg","type":"file","name":"textPCDATA.svg","base_name":"textPCDATA","extension":".svg","size":2687,"date":"2019-10-25","sha1":"15fab7caa51e65bbdbc3e83261a0702150f655dd","md5":"c09d03f10cb6af8e5644ea2d8a3a04ad","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textPosition.svg","type":"file","name":"textPosition.svg","base_name":"textPosition","extension":".svg","size":4619,"date":"2019-10-25","sha1":"9d908451ad62b38eb3f819409d2dd19ead97e20f","md5":"a2e4ae9ad75e4d21ddf76bc19a6d224e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textPosition2.svg","type":"file","name":"textPosition2.svg","base_name":"textPosition2","extension":".svg","size":5926,"date":"2019-10-25","sha1":"d7cd193354746ced8fb1334c2112e521cc20ff8e","md5":"85175361018fa31f0a5e4022bf13d8c6","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textProperties.svg","type":"file","name":"textProperties.svg","base_name":"textProperties","extension":".svg","size":7486,"date":"2019-10-25","sha1":"f7be8a92296d2911262224571896879dc7fb362f","md5":"a3ec731f0254a602ce8942393b90eb3c","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bill.haneman@ireland.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textProperties2.svg","type":"file","name":"textProperties2.svg","base_name":"textProperties2","extension":".svg","size":5751,"date":"2019-10-25","sha1":"348faa44454628d5b8aa15d45a194325cfb087b6","md5":"aee2fd9a3b726538f4a26a0ea31d848a","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bill.haneman@ireland.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/textStyles.svg","type":"file","name":"textStyles.svg","base_name":"textStyles","extension":".svg","size":8443,"date":"2019-10-25","sha1":"36ed839ade3225582220fb85bf62e03b613401ed","md5":"f008c2176c794a119f2cd830fc3bc035","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bill.haneman@ireland.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bill.haneman@ireland.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/verticalText.svg","type":"file","name":"verticalText.svg","base_name":"verticalText","extension":".svg","size":4912,"date":"2019-10-25","sha1":"a0010820e78cd0e7837a5dc14bb70c589574ea0c","md5":"798a4a916af4f2719f587b02476cceb9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"dean.jackson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"dean.jackson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/verticalTextOnPath.svg","type":"file","name":"verticalTextOnPath.svg","base_name":"verticalTextOnPath","extension":".svg","size":9514,"date":"2019-10-25","sha1":"8310e9d216609767a9f05445fb7f60d3c1c4744a","md5":"d3ef91795c17dac0ae58bae0d8ac4616","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec/text/xmlSpace.svg","type":"file","name":"xmlSpace.svg","base_name":"xmlSpace","extension":".svg","size":7723,"date":"2019-10-25","sha1":"a5da09bf3570f14ef9549744e6773ba2da7fd874","md5":"ee3e4d0444d5694daa04916a1c0a2af9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34},{"url":"http://graphics.apache.org/batik/foo","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12","type":"directory","name":"spec12","base_name":"spec12","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":67,"dirs_count":6,"size_count":319256,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/filters","type":"directory","name":"filters","base_name":"filters","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":20669,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/filters/filterRegion.svg","type":"file","name":"filterRegion.svg","base_name":"filterRegion","extension":".svg","size":4609,"date":"2019-10-25","sha1":"fe3b93c365f310fb11e52f30d8f7ddf889a323da","md5":"b5805ef3c01747fa2f616947adb9354a","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/filters/filterRegionDetailed.svg","type":"file","name":"filterRegionDetailed.svg","base_name":"filterRegionDetailed","extension":".svg","size":16060,"date":"2019-10-25","sha1":"980a5ade2a907138ead50a8266dcbd5e236954ab","md5":"bdfa023b643e9e334896687e4c3a8226","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/paints","type":"directory","name":"paints","base_name":"paints","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":18380,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/paints/colorFunctions.svg","type":"file","name":"colorFunctions.svg","base_name":"colorFunctions","extension":".svg","size":5946,"date":"2019-10-25","sha1":"73cdaf4c49bb70147f43f7a037af2e6f3025914f","md5":"71b5d472d920ae8fa112ac51c73d7dc7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/paints/colorFunctionsDevice.svg","type":"file","name":"colorFunctionsDevice.svg","base_name":"colorFunctionsDevice","extension":".svg","size":4010,"date":"2019-10-25","sha1":"43ebd4583e98aa19bbc293f1b6dd7d15abd5ff8b","md5":"82feeef8b0a4e1c08348a42fba945ebc","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/paints/ncp-example.icc","type":"file","name":"ncp-example.icc","base_name":"ncp-example","extension":".icc","size":532,"date":"2019-10-25","sha1":"4578e339c8677593538e40e79b09b155627fa0c5","md5":"ed1412587c9409ee24a1ef5658cd0430","mime_type":"application/vnd.iccprofile","file_type":"ICC Profile","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/paints/solidColor.svg","type":"file","name":"solidColor.svg","base_name":"solidColor","extension":".svg","size":3933,"date":"2019-10-25","sha1":"5faa0c26461f1b84012c1c127ca4618ae0967fd9","md5":"d5674f9dc2841b0828be69c4f838ce7b","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/paints/solidColor2.svg","type":"file","name":"solidColor2.svg","base_name":"solidColor2","extension":".svg","size":3959,"date":"2019-10-25","sha1":"820c8f7b43bbc24ade9cc62e8431a0f7b7885d40","md5":"f143606a217db31674076b77732bb295","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure","type":"directory","name":"structure","base_name":"structure","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":51,"dirs_count":2,"size_count":223424,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/multi-2.jpg","type":"file","name":"multi-2.jpg","base_name":"multi-2","extension":".jpg","size":1046,"date":"2019-10-25","sha1":"d05dfaddc12b19207a5d69c5fb3b62126ea77552","md5":"dd158314078bb732d395f8c6c981b5b1","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, resolution (DPI), density 230x230, segment length 16, baseline, precision 8, 30x45, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/multi-3.jpg","type":"file","name":"multi-3.jpg","base_name":"multi-3","extension":".jpg","size":1918,"date":"2019-10-25","sha1":"39dc9621245a94113210914592e281d4010e8b6f","md5":"d260ccd91820f6fa91e975b77a879197","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, resolution (DPI), density 230x230, segment length 16, baseline, precision 8, 60x90, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/multi-4.jpg","type":"file","name":"multi-4.jpg","base_name":"multi-4","extension":".jpg","size":4696,"date":"2019-10-25","sha1":"7a89d2905ff2fe5d6123610398e9bf33ee8891ba","md5":"af7b719272da9d950304c59115aded9a","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, resolution (DPI), density 230x230, segment length 16, baseline, precision 8, 120x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/multi-5.jpg","type":"file","name":"multi-5.jpg","base_name":"multi-5","extension":".jpg","size":14244,"date":"2019-10-25","sha1":"84464655bb2daeceef08b257aa5b747eabb57ea9","md5":"0a4a4f41dffd2d73da470154d0b5cd89","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, resolution (DPI), density 230x230, segment length 16, baseline, precision 8, 240x360, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/multi.svg","type":"file","name":"multi.svg","base_name":"multi","extension":".svg","size":4507,"date":"2019-10-25","sha1":"a21718e8dc6e6d009fdf1b01833d833ce3679444","md5":"2fa9ec585247daf3e9e3c02ff3996be5","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thomas.DeWeese@Kodak.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":36,"end_line":36}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/multi2.svg","type":"file","name":"multi2.svg","base_name":"multi2","extension":".svg","size":2728,"date":"2019-10-25","sha1":"3af8637d38ed4948aa94b8ac5e081dc42322a2df","md5":"9121815e2cac9e7519cfa68937f9e74e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera","type":"directory","name":"opera","base_name":"opera","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":45,"dirs_count":1,"size_count":194285,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/opera-0-0-0.svg","type":"file","name":"opera-0-0-0.svg","base_name":"opera-0-0-0","extension":".svg","size":1971,"date":"2019-10-25","sha1":"95597a365a2bbdba3d676c5e40f931abfc55c779","md5":"5eec4a61bcb57bd43127b311ace253d0","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":25,"end_line":25}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/opera-0-0-2.svg","type":"file","name":"opera-0-0-2.svg","base_name":"opera-0-0-2","extension":".svg","size":1966,"date":"2019-10-25","sha1":"d04e620a496551ed81a8202347ca9d6d0c6dee68","md5":"0b5ada05958a2f9f084d7051b4979bd6","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":8,"end_line":21,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":15,"end_line":15},{"url":"http://www.w3.org/1999/xlink","start_line":26,"end_line":26}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/opera-0-0-4.svg","type":"file","name":"opera-0-0-4.svg","base_name":"opera-0-0-4","extension":".svg","size":1971,"date":"2019-10-25","sha1":"b0f28d0aceeb935f23574334867ccb140d501620","md5":"af3daceb206da14aef7d18c9331ebb3d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":25,"end_line":25}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/opera-0-2-0.svg","type":"file","name":"opera-0-2-0.svg","base_name":"opera-0-2-0","extension":".svg","size":1970,"date":"2019-10-25","sha1":"7f5e56702c7d783976b364e7acc26c074c0da4dd","md5":"b5493b8d75676ef877486cb92f864dc6","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":25,"end_line":25}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/opera-0-2-2.svg","type":"file","name":"opera-0-2-2.svg","base_name":"opera-0-2-2","extension":".svg","size":1970,"date":"2019-10-25","sha1":"a8d91be5caba8d03f40b62c6bb36cc7721cddf5e","md5":"774e43f66f890e6872d6b2e69c3fcf7a","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":25,"end_line":25}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/opera-0-2-4.svg","type":"file","name":"opera-0-2-4.svg","base_name":"opera-0-2-4","extension":".svg","size":1970,"date":"2019-10-25","sha1":"6da44eac7a43aadd0163ccabe74a8535d9af3d1c","md5":"538989124c29324eba692001ae84b0c5","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":25,"end_line":25}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/opera-1-0-0.svg","type":"file","name":"opera-1-0-0.svg","base_name":"opera-1-0-0","extension":".svg","size":2532,"date":"2019-10-25","sha1":"da58e49e29d7372fd2e23e163b5042766879373a","md5":"6d642bd094cffe00c505035fa6cd77ac","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":25,"end_line":25}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/opera-1-0-2.svg","type":"file","name":"opera-1-0-2.svg","base_name":"opera-1-0-2","extension":".svg","size":1818,"date":"2019-10-25","sha1":"1016289cbaa2521feb312b50e5c7cefc6ef99c32","md5":"656f4155a29247aa8bacad64850057e7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":25,"end_line":25}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/opera-2-0-0.svg","type":"file","name":"opera-2-0-0.svg","base_name":"opera-2-0-0","extension":".svg","size":1815,"date":"2019-10-25","sha1":"9fa09bc33f0d9a6812bc788d8e5db140c96b74d1","md5":"58ded1616cbe9ed50082515a277d20e5","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":25,"end_line":25}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/opera-3-0-0.svg","type":"file","name":"opera-3-0-0.svg","base_name":"opera-3-0-0","extension":".svg","size":1457,"date":"2019-10-25","sha1":"aa8d9a6ee122ac1efb3213dc2596813150ad78e7","md5":"cf081d10d74ef91919a7c386fd362687","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":25,"end_line":25}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/opera-subImage.svg","type":"file","name":"opera-subImage.svg","base_name":"opera-subImage","extension":".svg","size":14982,"date":"2019-10-25","sha1":"a681abc0dce17ffa42657c5f2c278e8c6abf3118","md5":"b5ce1e17e5490f6c82daccb9ccf09a23","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thomas.DeWeese@Kodak.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/opera-subImageRef.svg","type":"file","name":"opera-subImageRef.svg","base_name":"opera-subImageRef","extension":".svg","size":1938,"date":"2019-10-25","sha1":"717900dc205b866323c0cdc8aa3f98bd982b3d41","md5":"953b5b61aba9c7df98b33e95676736ea","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thomas.DeWeese@Kodak.com","start_line":28,"end_line":29}],"packages":[],"emails":[{"email":"Thomas.DeWeese@Kodak.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires","type":"directory","name":"multires","base_name":"multires","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":33,"dirs_count":0,"size_count":157925,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-0-0.jpg","type":"file","name":"opera-0-0-0.jpg","base_name":"opera-0-0-0","extension":".jpg","size":2608,"date":"2019-10-25","sha1":"529111176d817823c0ad1a6d1bfa00a87584f10a","md5":"b9b119043e9121d38ca0ae9ba6ce2fcd","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-0-1.jpg","type":"file","name":"opera-0-0-1.jpg","base_name":"opera-0-0-1","extension":".jpg","size":2881,"date":"2019-10-25","sha1":"1494498e8b15a64eee315935b58f76af149ef717","md5":"47aaa68b6ad70c868d386c94a6c2df62","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-0-2.jpg","type":"file","name":"opera-0-0-2.jpg","base_name":"opera-0-0-2","extension":".jpg","size":4427,"date":"2019-10-25","sha1":"13779e2aa5374d6d80128a0fcd0afd72d423dfac","md5":"17716afd24bad32e7a2a36a7613ab2b7","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-0-3.jpg","type":"file","name":"opera-0-0-3.jpg","base_name":"opera-0-0-3","extension":".jpg","size":7518,"date":"2019-10-25","sha1":"13b4b344b453d973eb781fa827c8937c06fd9d25","md5":"31efefbce57f597e0744b78e0a03ca3e","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-0-4.jpg","type":"file","name":"opera-0-0-4.jpg","base_name":"opera-0-0-4","extension":".jpg","size":5560,"date":"2019-10-25","sha1":"80e45175eaee9b2f30864f7a42f0d7df447c7450","md5":"ba98e859c1cda830fcae50c94312c417","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-0-5.jpg","type":"file","name":"opera-0-0-5.jpg","base_name":"opera-0-0-5","extension":".jpg","size":4745,"date":"2019-10-25","sha1":"1297506b9de01d45aeb7ac3f27a7f8f87e199ffb","md5":"4d9bb89d985550c71c8b7e0161ea3a0f","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-1-0.jpg","type":"file","name":"opera-0-1-0.jpg","base_name":"opera-0-1-0","extension":".jpg","size":2803,"date":"2019-10-25","sha1":"9707441f9f9ccc6ef4de3605485056de129f448f","md5":"4f80c48c014d68e73f8b205440bfc873","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-1-1.jpg","type":"file","name":"opera-0-1-1.jpg","base_name":"opera-0-1-1","extension":".jpg","size":3290,"date":"2019-10-25","sha1":"fa6429b114027b4d81d3474ab7c3953ae7fb9025","md5":"9d75ad9ee279ae4ab3db9f635a6c82ca","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-1-2.jpg","type":"file","name":"opera-0-1-2.jpg","base_name":"opera-0-1-2","extension":".jpg","size":5627,"date":"2019-10-25","sha1":"67c1351e2243e6aeb6bd0c7321ee09d2bca1b9dc","md5":"11c84f413655a83752e6fb401ba174b0","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-1-3.jpg","type":"file","name":"opera-0-1-3.jpg","base_name":"opera-0-1-3","extension":".jpg","size":9209,"date":"2019-10-25","sha1":"4e6d47fefa8650626fc355d183ed30361e283827","md5":"b2f6749cc23b5fa23fb89894ee1ecfd3","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-1-4.jpg","type":"file","name":"opera-0-1-4.jpg","base_name":"opera-0-1-4","extension":".jpg","size":6713,"date":"2019-10-25","sha1":"df86f77e4144abb4cc948d680c30cd4d9d23f504","md5":"537e9f739a0ae7d0d2d6c0c655713561","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-1-5.jpg","type":"file","name":"opera-0-1-5.jpg","base_name":"opera-0-1-5","extension":".jpg","size":4695,"date":"2019-10-25","sha1":"941c31dfefe3e18df772fdaeb13d173fb08e919e","md5":"42601c0690135aead6f07c668103b118","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-2-0.jpg","type":"file","name":"opera-0-2-0.jpg","base_name":"opera-0-2-0","extension":".jpg","size":2591,"date":"2019-10-25","sha1":"c845de12b880be8e4bc5241c2de90c9dfb6c7ad5","md5":"7d0c51f1622c625418a5304b05bf014b","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-2-1.jpg","type":"file","name":"opera-0-2-1.jpg","base_name":"opera-0-2-1","extension":".jpg","size":2775,"date":"2019-10-25","sha1":"f6703df8aefcdc5e02062af2c01f49c48212473e","md5":"567206eac334e47897105bc3779f1e2d","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-2-2.jpg","type":"file","name":"opera-0-2-2.jpg","base_name":"opera-0-2-2","extension":".jpg","size":6420,"date":"2019-10-25","sha1":"26e81b585201aef8b23d5970822acff927d92777","md5":"2bfcaffdcb883015bd61b78e14beb6ec","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-2-3.jpg","type":"file","name":"opera-0-2-3.jpg","base_name":"opera-0-2-3","extension":".jpg","size":9139,"date":"2019-10-25","sha1":"5e0f7a20b7e237610e8ff9d1bff4ca02355cae84","md5":"5c2c94d57c12c3e7add90572fd7bd905","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-2-4.jpg","type":"file","name":"opera-0-2-4.jpg","base_name":"opera-0-2-4","extension":".jpg","size":5008,"date":"2019-10-25","sha1":"ae4fe5cbc5caaf3d548ec388ffd5be0f8760b471","md5":"404ca5e23a5edf5f52e84afa3f719033","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-2-5.jpg","type":"file","name":"opera-0-2-5.jpg","base_name":"opera-0-2-5","extension":".jpg","size":4029,"date":"2019-10-25","sha1":"17a14522215a8518b432db8d2c1415f4842c6e59","md5":"b9d9aa7bbe4da8e0e8255050ae26f1e0","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-3-0.jpg","type":"file","name":"opera-0-3-0.jpg","base_name":"opera-0-3-0","extension":".jpg","size":2787,"date":"2019-10-25","sha1":"a5f963cfed51b6cd763614b0e416bc7a595430f5","md5":"6d548652dfaaaff35d7d8debc2d16500","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-3-1.jpg","type":"file","name":"opera-0-3-1.jpg","base_name":"opera-0-3-1","extension":".jpg","size":2747,"date":"2019-10-25","sha1":"31b5550445f0df394eee8bbb27c8f8e2138f0755","md5":"33efe285a6b5c21d5e96a6e90e3d3a38","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-3-2.jpg","type":"file","name":"opera-0-3-2.jpg","base_name":"opera-0-3-2","extension":".jpg","size":3632,"date":"2019-10-25","sha1":"c180e9ae443789239a5753a387e3a2e485028530","md5":"28f719bd20dd439f416d3e269497be04","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-3-3.jpg","type":"file","name":"opera-0-3-3.jpg","base_name":"opera-0-3-3","extension":".jpg","size":7132,"date":"2019-10-25","sha1":"87adeddd69bcbf4435ee3f8600d7941d71891f8e","md5":"856c9de3cd9234715eff62e8b63deb83","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-3-4.jpg","type":"file","name":"opera-0-3-4.jpg","base_name":"opera-0-3-4","extension":".jpg","size":4890,"date":"2019-10-25","sha1":"b237e14a223907044430fc2473c981ea86fc9350","md5":"8e89b58dd4ed30d8d97057ddc1702456","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-0-3-5.jpg","type":"file","name":"opera-0-3-5.jpg","base_name":"opera-0-3-5","extension":".jpg","size":3857,"date":"2019-10-25","sha1":"e10b98b5495658a5e94cab16ce3d87a61bd8c172","md5":"c62a5f89dd2b07ff2dcc2cd4b7b21b69","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-1-0-0.jpg","type":"file","name":"opera-1-0-0.jpg","base_name":"opera-1-0-0","extension":".jpg","size":2490,"date":"2019-10-25","sha1":"6797d319d13660d84b86f0db791a17bc4e33dea6","md5":"1ec5bb510f1063df1a3a74e9477465db","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-1-0-1.jpg","type":"file","name":"opera-1-0-1.jpg","base_name":"opera-1-0-1","extension":".jpg","size":7766,"date":"2019-10-25","sha1":"82a44a1f4672e6e89f98bf8857081d1975cfcdfc","md5":"c3a87fc0f970485f79a7a5dd770c74e0","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-1-0-2.jpg","type":"file","name":"opera-1-0-2.jpg","base_name":"opera-1-0-2","extension":".jpg","size":5886,"date":"2019-10-25","sha1":"0be7259d73b13999fdd897372843a95355064de7","md5":"ca5c80326c620a026b22f6cb4aabe160","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-1-1-0.jpg","type":"file","name":"opera-1-1-0.jpg","base_name":"opera-1-1-0","extension":".jpg","size":2248,"date":"2019-10-25","sha1":"55e072c282406f071d1d0406a5d40b2c2d7cb691","md5":"aa1bf3a827235e92356448e0aa45e648","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-1-1-1.jpg","type":"file","name":"opera-1-1-1.jpg","base_name":"opera-1-1-1","extension":".jpg","size":7731,"date":"2019-10-25","sha1":"4506182fd13db52e7bae180b95830945e3ef401a","md5":"7f7fc0995f5e0170741bdd419f7ba405","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-1-1-2.jpg","type":"file","name":"opera-1-1-2.jpg","base_name":"opera-1-1-2","extension":".jpg","size":4753,"date":"2019-10-25","sha1":"d6737a4387f47e637d953bdeef1d1bd6e9da85e2","md5":"32906c2964ee5816ecc161b6be248653","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-2-0-0.jpg","type":"file","name":"opera-2-0-0.jpg","base_name":"opera-2-0-0","extension":".jpg","size":5729,"date":"2019-10-25","sha1":"bd04ddb73962661fff94dc2fa4268c5c2fd4caa8","md5":"873d375240dd7bb03183ebf1c11c5b21","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x180, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-2-0-1.jpg","type":"file","name":"opera-2-0-1.jpg","base_name":"opera-2-0-1","extension":".jpg","size":3300,"date":"2019-10-25","sha1":"9de49255e9d835530132ef2672b754a95380721f","md5":"01afc1ee579d2fc8e556fb7551b3c5ff","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 180x90, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/structure/opera/multires/opera-3-0-0.jpg","type":"file","name":"opera-3-0-0.jpg","base_name":"opera-3-0-0","extension":".jpg","size":2939,"date":"2019-10-25","sha1":"0cbeed7c776b9afce2ddb6b93370022ecd507eab","md5":"3d868481e84a9f7eeca6271b08d9bce7","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 90x135, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/text","type":"directory","name":"text","base_name":"text","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":9,"dirs_count":0,"size_count":56783,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/text/flowBidi.svg","type":"file","name":"flowBidi.svg","base_name":"flowBidi","extension":".svg","size":4998,"date":"2019-10-25","sha1":"bd47158943d37d5186d02f13e66c7ca32abb43e6","md5":"9755547738eeb54b3ac7c199ed60dd0d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/text/flowRegionBreak.svg","type":"file","name":"flowRegionBreak.svg","base_name":"flowRegionBreak","extension":".svg","size":15431,"date":"2019-10-25","sha1":"8994fef40733c3c34d15346dcdd590d889550276","md5":"cb32d79c9714940b71745fc787417035","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/text/flowText.svg","type":"file","name":"flowText.svg","base_name":"flowText","extension":".svg","size":4486,"date":"2019-10-25","sha1":"ed1574e90b6ab5c4b7f1ac59d000a1a63aacff97","md5":"184a1568f2e5cc276ba0659ba5ed27fb","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/text/flowText2.svg","type":"file","name":"flowText2.svg","base_name":"flowText2","extension":".svg","size":4932,"date":"2019-10-25","sha1":"2aafe368c862995711c74a80fbd19b8ad8bf9eee","md5":"6779bb8503c0706b74981749464e68a5","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/text/flowText3.svg","type":"file","name":"flowText3.svg","base_name":"flowText3","extension":".svg","size":4672,"date":"2019-10-25","sha1":"e0dee0c5173642139e5ee87c315b5ea0e40c91e7","md5":"7d250c0d32ce557fec4933abc09d3de5","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/text/flowText4.svg","type":"file","name":"flowText4.svg","base_name":"flowText4","extension":".svg","size":4393,"date":"2019-10-25","sha1":"8f0f9ab9edbe0c30a6e10910f33ef1ff984641ba","md5":"6823027af724de00e650de2d8d83d3ee","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/text/flowText5.svg","type":"file","name":"flowText5.svg","base_name":"flowText5","extension":".svg","size":4985,"date":"2019-10-25","sha1":"80206044bf2165b635ef2cce4bad0f095fc9c5e0","md5":"c0f49341357d0bf0b5fa5e98f23352f8","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/text/flowTextAlign.svg","type":"file","name":"flowTextAlign.svg","base_name":"flowTextAlign","extension":".svg","size":7188,"date":"2019-10-25","sha1":"f07fb0ece5a2bb72c22f21ab1a61b4bbc65e5cc7","md5":"544b6560fb520ad36cd312356fcbbea4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"bella.robinson@cmis.csiro.au","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/samples/tests/spec12/text/lineHeightFontShorthand.svg","type":"file","name":"lineHeightFontShorthand.svg","base_name":"lineHeightFontShorthand","extension":".svg","size":5698,"date":"2019-10-25","sha1":"9aa8953bcbe90b1fef40f50a1278b265e706ad36","md5":"3a85f37901220627f7c0c20abfec5039","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"Thierry.Kormann@sophia.inria.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"Thierry.Kormann@sophia.inria.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources","type":"directory","name":"test-resources","base_name":"test-resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":211,"dirs_count":45,"size_count":990792,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org","type":"directory","name":"org","base_name":"org","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":211,"dirs_count":44,"size_count":990792,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache","type":"directory","name":"apache","base_name":"apache","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":211,"dirs_count":43,"size_count":990792,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik","type":"directory","name":"batik","base_name":"batik","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":211,"dirs_count":42,"size_count":990792,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/apps","type":"directory","name":"apps","base_name":"apps","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":1,"size_count":4148,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/apps/rasterizer","type":"directory","name":"rasterizer","base_name":"rasterizer","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":0,"size_count":4148,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/apps/rasterizer/invalidSVG.png","type":"file","name":"invalidSVG.png","base_name":"invalidSVG","extension":".png","size":0,"date":"2019-10-25","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/apps/rasterizer/invalidSVG.svg","type":"file","name":"invalidSVG.svg","base_name":"invalidSVG","extension":".svg","size":905,"date":"2019-10-25","sha1":"a09b9957d778e6f9f465341837fbd7f40bc01020","md5":"2e2918ee8129a963b780842d6a70fef9","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"(c) Apache Software Foundation http://xml.apache.org/batik","start_line":2,"end_line":3}],"holders":[{"value":"Apache Software Foundation","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://xml.apache.org/batik","start_line":3,"end_line":3}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/apps/rasterizer/notReadable.svg","type":"file","name":"notReadable.svg","base_name":"notReadable","extension":".svg","size":920,"date":"2019-10-25","sha1":"45d952d06823b987b4501912e4f5cb820df1e025","md5":"b6f61a784d61acb39ca6ceff6bc74a0f","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":19,"end_line":19}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/apps/rasterizer/readOnly.png","type":"file","name":"readOnly.png","base_name":"readOnly","extension":".png","size":0,"date":"2019-10-25","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/apps/rasterizer/readOnly.svg","type":"file","name":"readOnly.svg","base_name":"readOnly","extension":".svg","size":919,"date":"2019-10-25","sha1":"bf21d31ca4be07129f416ee56939be66a6ac8ba7","md5":"8e07c8bcad36117027cfeae640e5a801","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":18,"end_line":18}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/apps/rasterizer/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":1404,"date":"2019-10-25","sha1":"2b36e0b39af97de5ea0e123bc3b1d9682c9bd860","md5":"5a95eeca9de3df6c541c6829c2da3ed9","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":19,"end_line":19}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge","type":"directory","name":"bridge","base_name":"bridge","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":125,"dirs_count":1,"size_count":560485,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckConstrain.svg","type":"file","name":"ecmaCheckConstrain.svg","base_name":"ecmaCheckConstrain","extension":".svg","size":1916,"date":"2019-10-25","sha1":"e16781368f268ba8360e403dfcb149f75b733d22","md5":"872356e7ba5d8468ebefee8116b12e15","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32},{"url":"http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/test-resources/org/apache/batik/bridge/iWasLoaded.js?content-type=text/plain","start_line":37,"end_line":37}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckLoad.svg","type":"file","name":"ecmaCheckLoad.svg","base_name":"ecmaCheckLoad","extension":".svg","size":1829,"date":"2019-10-25","sha1":"dc1f12e84e8c1ed77144e84982e2c617deaad319","md5":"604a9a7f7e7386331dfff686a783359d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckLoadAny.svg","type":"file","name":"ecmaCheckLoadAny.svg","base_name":"ecmaCheckLoadAny","extension":".svg","size":1951,"date":"2019-10-25","sha1":"f10b417aaa2b64df9ecfb354dc20db6dd7ebab4c","md5":"767d9bf50e83fd9c11ed88ecbba70c46","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32},{"url":"http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/test-resources/org/apache/batik/bridge/iWasLoadedToo.js?content-type=text/plain","start_line":37,"end_line":37}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckLoadEmbed.svg","type":"file","name":"ecmaCheckLoadEmbed.svg","base_name":"ecmaCheckLoadEmbed","extension":".svg","size":1945,"date":"2019-10-25","sha1":"decf186e8403d856178fe905b6fb8150bcb90249","md5":"bdf637337043eeffa0b479eabd93bd73","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckLoadEmbedAttr.svg","type":"file","name":"ecmaCheckLoadEmbedAttr.svg","base_name":"ecmaCheckLoadEmbedAttr","extension":".svg","size":1860,"date":"2019-10-25","sha1":"6c8e22fbeb2d44d779f885f47c085268a83b7e2f","md5":"c6a3b157f00d0c4e72db0f849a2d1dd7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckLoadSameAsDocument.svg","type":"file","name":"ecmaCheckLoadSameAsDocument.svg","base_name":"ecmaCheckLoadSameAsDocument","extension":".svg","size":1843,"date":"2019-10-25","sha1":"2d81208490262ff5dfb0323795954bc0cf5789db","md5":"2492e3531c4dddaa875c6fb22982258f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckNoConstrain.svg","type":"file","name":"ecmaCheckNoConstrain.svg","base_name":"ecmaCheckNoConstrain","extension":".svg","size":1955,"date":"2019-10-25","sha1":"74d54445aef043b90ef9a1136461336decf7fb58","md5":"b73ca01ecb5dd824d881452c491227d0","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32},{"url":"http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/test-resources/org/apache/batik/bridge/iWasLoadedToo.js?content-type=text/plain","start_line":37,"end_line":37}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckNoEmbed.svg","type":"file","name":"ecmaCheckNoEmbed.svg","base_name":"ecmaCheckNoEmbed","extension":".svg","size":2086,"date":"2019-10-25","sha1":"cfd45f54731c1183218a5a32fbfba5916b54ecc0","md5":"e08ffc84c52b3e35c79ba47064889bde","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/test","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckNoLoad.svg","type":"file","name":"ecmaCheckNoLoad.svg","base_name":"ecmaCheckNoLoad","extension":".svg","size":1770,"date":"2019-10-25","sha1":"ea71bc970b815cfdc51ebfc66af63f9cef8755c2","md5":"783cd8bee073751b60d5f51903ce0542","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckNoLoad2.svg","type":"file","name":"ecmaCheckNoLoad2.svg","base_name":"ecmaCheckNoLoad2","extension":".svg","size":1981,"date":"2019-10-25","sha1":"e035473614bb2e2b2ddcec6e6e124b1747345ce0","md5":"3f23245c1ef27ccd7c119e1346bfa734","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckNoLoadAny.svg","type":"file","name":"ecmaCheckNoLoadAny.svg","base_name":"ecmaCheckNoLoadAny","extension":".svg","size":1975,"date":"2019-10-25","sha1":"1471cdf82c5010a310399d796ac10daf5190344b","md5":"01cc041c482e1857c95b1b8d4f6fb77f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/test","start_line":33,"end_line":33},{"url":"http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/test-resources/org/apache/batik/bridge/iWasLoaded.js?content-type=text/plain","start_line":37,"end_line":37}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckNoLoadEmbed.svg","type":"file","name":"ecmaCheckNoLoadEmbed.svg","base_name":"ecmaCheckNoLoadEmbed","extension":".svg","size":1887,"date":"2019-10-25","sha1":"5e4580da424223bc50b09fa2f804f00ec176b239","md5":"81e7430dbdc7de2acfd1a4f89c3bdea6","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckNoLoadEmbedAttr.svg","type":"file","name":"ecmaCheckNoLoadEmbedAttr.svg","base_name":"ecmaCheckNoLoadEmbedAttr","extension":".svg","size":1840,"date":"2019-10-25","sha1":"31903a6a7380ed2b50fc97b009356321ba91a856","md5":"2700b0457e7c00106615de5772d777ae","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckNoLoadSameAsDocument.svg","type":"file","name":"ecmaCheckNoLoadSameAsDocument.svg","base_name":"ecmaCheckNoLoadSameAsDocument","extension":".svg","size":1867,"date":"2019-10-25","sha1":"e1f1c31d44ee54ad05258fa2ce0855bd24fd55e4","md5":"2a9108c7eb324d93aa8de7b16c225c1e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/test","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckPermissionsDenied.svg","type":"file","name":"ecmaCheckPermissionsDenied.svg","base_name":"ecmaCheckPermissionsDenied","extension":".svg","size":12068,"date":"2019-10-25","sha1":"e55498bce7c74ac86c5cc625b453c7c54c163c57","md5":"d8c8b301d770e9ba8910da0d19b510f4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckPermissionsDenied2.svg","type":"file","name":"ecmaCheckPermissionsDenied2.svg","base_name":"ecmaCheckPermissionsDenied2","extension":".svg","size":13768,"date":"2019-10-25","sha1":"96b63891f623fab353615819ad0a6f241e3f0a73","md5":"20076f2127d0a5ffe66196b599655d12","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/test","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckPermissionsDeniedEval.svg","type":"file","name":"ecmaCheckPermissionsDeniedEval.svg","base_name":"ecmaCheckPermissionsDeniedEval","extension":".svg","size":13109,"date":"2019-10-25","sha1":"603a5363fdc3e806968098e2cd1d00bff6459b2e","md5":"3faa6af7793263de14c4b6a3799d9232","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/test","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckPermissionsDeniedFunction.svg","type":"file","name":"ecmaCheckPermissionsDeniedFunction.svg","base_name":"ecmaCheckPermissionsDeniedFunction","extension":".svg","size":13199,"date":"2019-10-25","sha1":"83ef7b550854ffc2897a4a3c600c1ebb599ca6bc","md5":"ead0a8b07579587e198876a538c4f1a8","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/test","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckPermissionsDeniedScript.svg","type":"file","name":"ecmaCheckPermissionsDeniedScript.svg","base_name":"ecmaCheckPermissionsDeniedScript","extension":".svg","size":13113,"date":"2019-10-25","sha1":"fd0c371cb412b2930ce5d1290fd9299d8691bc35","md5":"1c4479fed0f3c3ee2af1c251b6e29469","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vhardy@apache.org","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/test","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckPermissionsGranted.svg","type":"file","name":"ecmaCheckPermissionsGranted.svg","base_name":"ecmaCheckPermissionsGranted","extension":".svg","size":10593,"date":"2019-10-25","sha1":"bf48b6513a19c8228b4633ecd17c8ae9d8b485eb","md5":"ac40a2a45504ac3874d32838da63973a","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckPermissionsGrantedEval.svg","type":"file","name":"ecmaCheckPermissionsGrantedEval.svg","base_name":"ecmaCheckPermissionsGrantedEval","extension":".svg","size":10746,"date":"2019-10-25","sha1":"2a665e2b6077f135d78582dc0c525bd6ea5ae0ec","md5":"685ffb9180ea928301d842bab3e34004","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckPermissionsGrantedFunction.svg","type":"file","name":"ecmaCheckPermissionsGrantedFunction.svg","base_name":"ecmaCheckPermissionsGrantedFunction","extension":".svg","size":10836,"date":"2019-10-25","sha1":"2712f2b77413fbf6f88632599a2f4b14ac981a38","md5":"3622ae43caa5a4fac4fc3301a83ba630","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaCheckPermissionsGrantedScript.svg","type":"file","name":"ecmaCheckPermissionsGrantedScript.svg","base_name":"ecmaCheckPermissionsGrantedScript","extension":".svg","size":10751,"date":"2019-10-25","sha1":"bb546daf31898847699de1ce68ad982a5372ee8d","md5":"9a86631e7958a2b40eb0db7741101175","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaScriptSecurity.svg","type":"file","name":"ecmaScriptSecurity.svg","base_name":"ecmaScriptSecurity","extension":".svg","size":11963,"date":"2019-10-25","sha1":"7089c02eda1f329230959987ccded2b0a490ebc2","md5":"ba17dbbb508711cc88c0fd7d3a5b3183","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/ecmaScriptSecurity2.svg","type":"file","name":"ecmaScriptSecurity2.svg","base_name":"ecmaScriptSecurity2","extension":".svg","size":10550,"date":"2019-10-25","sha1":"6e9c758f003b776651c0a9b10c7bfa57d1227db4","md5":"88db493b48bbbe76e906fb0d50e5b884","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/embedData.svg","type":"file","name":"embedData.svg","base_name":"embedData","extension":".svg","size":20081,"date":"2019-10-25","sha1":"6779f77a5d01192d0b16842adc1ddb39aef616b1","md5":"103e861870090d635769add3d76ad202","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/externalResourcesAccess.svg","type":"file","name":"externalResourcesAccess.svg","base_name":"externalResourcesAccess","extension":".svg","size":19677,"date":"2019-10-25","sha1":"de757f8b7407c2e40935d77fea4011d88d504428","md5":"43d1df7b7992816f4e1962c2e720ab45","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33},{"url":"http://xml.apache.org/batik/test","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/function.js","type":"file","name":"function.js","base_name":"function","extension":".js","size":933,"date":"2019-10-25","sha1":"b34e75b71fa2e35f06b6f4a8c1a30186b7adafe4","md5":"32f820b19a5bf71d2cca01c21968d9bd","mime_type":"text/plain","file_type":"ASCII text","programming_language":"JavaScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/getURLException.svg","type":"file","name":"getURLException.svg","base_name":"getURLException","extension":".svg","size":2148,"date":"2019-10-25","sha1":"5f18cd3fc7de9c0df8fb98a3bb862f91d7aab341","md5":"4879a5fd7b02b8ced115abebf6d3832e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/IWasLoaded.java","type":"file","name":"IWasLoaded.java","base_name":"IWasLoaded","extension":".java","size":1436,"date":"2019-10-25","sha1":"7503a49338f3cecb48c709e0bff0a950e4bfafca","md5":"f95c176248e4733038311f0eecf1e02d","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/iWasLoaded.js","type":"file","name":"iWasLoaded.js","base_name":"iWasLoaded","extension":".js","size":1245,"date":"2019-10-25","sha1":"b318c3e5802dfac7e91f3c3c9847e7af5f694c5f","md5":"37d12021f969662f5cfb8203a0edf2f2","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"JavaScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/IWasLoaded.mf","type":"file","name":"IWasLoaded.mf","base_name":"IWasLoaded","extension":".mf","size":73,"date":"2019-10-25","sha1":"e645aa3adc064a4943705dd9882eb03bdb0cfa7f","md5":"1a3c29296a50aaa5585131e11ed5c9bf","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/IWasLoadedToo.java","type":"file","name":"IWasLoadedToo.java","base_name":"IWasLoadedToo","extension":".java","size":1344,"date":"2019-10-25","sha1":"890a22c23495dcafe46cfbaeb6d413db6c4dee90","md5":"88536fe4ad9e9639a6d0e7ea85a0a86a","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/iWasLoadedToo.js","type":"file","name":"iWasLoadedToo.js","base_name":"iWasLoadedToo","extension":".js","size":1156,"date":"2019-10-25","sha1":"d9be2a5ce08e226725b4612d3371346d94e16271","md5":"abea06fe0bf368265c8b3b07f725fa1c","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"JavaScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/IWasLoadedToo.mf","type":"file","name":"IWasLoadedToo.mf","base_name":"IWasLoadedToo","extension":".mf","size":76,"date":"2019-10-25","sha1":"dbeb32401d88454c336333e1776c3967809071bc","md5":"a9d283d1e704a622b8943a64af698a75","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/jarCheckConstrain.svg","type":"file","name":"jarCheckConstrain.svg","base_name":"jarCheckConstrain","extension":".svg","size":1795,"date":"2019-10-25","sha1":"410ea9cb2396390a8e8609be20f4bd0cd1425ca7","md5":"64cb7efa7d647fed5c9fdd6717e4dc2f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30},{"url":"http://xml.apache.org/batik/test","start_line":31,"end_line":31},{"url":"http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/test-resources/org/apache/batik/bridge/IWasLoaded.jar","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/jarCheckLoad.svg","type":"file","name":"jarCheckLoad.svg","base_name":"jarCheckLoad","extension":".svg","size":1751,"date":"2019-10-25","sha1":"1917b7d8d729ba8d4eda4e1952afa0cb8ae8665a","md5":"5ab5941427ec415c805c38c04d909644","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30},{"url":"http://xml.apache.org/batik/test","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/jarCheckLoadAny.svg","type":"file","name":"jarCheckLoadAny.svg","base_name":"jarCheckLoadAny","extension":".svg","size":1848,"date":"2019-10-25","sha1":"c8b9cc3495fe18735f300ee4b892894e12e9abca","md5":"2d89dc917a2d90e8d966c8e8466f9f2a","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30},{"url":"http://xml.apache.org/batik/test","start_line":31,"end_line":31},{"url":"http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/test-resources/org/apache/batik/bridge/IWasLoadedToo.jar","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/jarCheckLoadEmbed.svg","type":"file","name":"jarCheckLoadEmbed.svg","base_name":"jarCheckLoadEmbed","extension":".svg","size":3544,"date":"2019-10-25","sha1":"f7b4319eff9a0dd6526420811ae1f3772d1a29e6","md5":"2494b9c18a36572597c6c19c0f4687ac","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30},{"url":"http://xml.apache.org/batik/test","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/jarCheckLoadSameAsDocument.svg","type":"file","name":"jarCheckLoadSameAsDocument.svg","base_name":"jarCheckLoadSameAsDocument","extension":".svg","size":1765,"date":"2019-10-25","sha1":"25447ef350c95c2a969d50eddcc30ab305f9c181","md5":"8b60eea073d2a3ce6e3c3c99fa0265ee","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30},{"url":"http://xml.apache.org/batik/test","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/jarCheckNoConstrain.svg","type":"file","name":"jarCheckNoConstrain.svg","base_name":"jarCheckNoConstrain","extension":".svg","size":1852,"date":"2019-10-25","sha1":"af86c9737f58e2963527238c6b0738d08e9a035f","md5":"91362f1cb43c0824a0f406cbe4d298a3","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30},{"url":"http://xml.apache.org/batik/test","start_line":31,"end_line":31},{"url":"http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/test-resources/org/apache/batik/bridge/IWasLoadedToo.jar","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/jarCheckNoLoad.svg","type":"file","name":"jarCheckNoLoad.svg","base_name":"jarCheckNoLoad","extension":".svg","size":1697,"date":"2019-10-25","sha1":"de4d92cff16f8a66ca9c8cdb153d78c4238f6447","md5":"bf5913cc2ff16e8c3bf081b076e72f36","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30},{"url":"http://xml.apache.org/batik/test","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/jarCheckNoLoadAny.svg","type":"file","name":"jarCheckNoLoadAny.svg","base_name":"jarCheckNoLoadAny","extension":".svg","size":1795,"date":"2019-10-25","sha1":"8f896250a6d41a88d60bf218b12cb4e712bacd1f","md5":"7d712b67418068fa71d59159bb5b7013","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30},{"url":"http://xml.apache.org/batik/test","start_line":31,"end_line":31},{"url":"http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/test-resources/org/apache/batik/bridge/IWasLoaded.jar","start_line":35,"end_line":35}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/jarCheckNoLoadEmbed.svg","type":"file","name":"jarCheckNoLoadEmbed.svg","base_name":"jarCheckNoLoadEmbed","extension":".svg","size":4257,"date":"2019-10-25","sha1":"dd88d52d656399618bcafa42b1d2b77b6c940b73","md5":"c13895e25def3f887feb4a7c42493498","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30},{"url":"http://xml.apache.org/batik/test","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/jarCheckNoLoadSameAsDocument.svg","type":"file","name":"jarCheckNoLoadSameAsDocument.svg","base_name":"jarCheckNoLoadSameAsDocument","extension":".svg","size":1711,"date":"2019-10-25","sha1":"cfdae1d17136910cce0bc6640e1f671f11299dd9","md5":"cf1af46cdfa94f886484b06dffefc6d4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30},{"url":"http://xml.apache.org/batik/test","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/JarCheckPermissionsDenied.java","type":"file","name":"JarCheckPermissionsDenied.java","base_name":"JarCheckPermissionsDenied","extension":".java","size":14953,"date":"2019-10-25","sha1":"76bb8232cadffaf6a7f9b89e313ede14d7a5f307","md5":"fdaf62c99c68960857626c6924fc5045","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/batik/test","start_line":50,"end_line":50}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/JarCheckPermissionsDenied.mf","type":"file","name":"JarCheckPermissionsDenied.mf","base_name":"JarCheckPermissionsDenied","extension":".mf","size":88,"date":"2019-10-25","sha1":"c0a26fc5ce504ed8a268bfd3ff37274abde7c438","md5":"71f6f2248bb94ee7cfe7b05f3db51946","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/jarCheckPermissionsDenied.svg","type":"file","name":"jarCheckPermissionsDenied.svg","base_name":"jarCheckPermissionsDenied","extension":".svg","size":1790,"date":"2019-10-25","sha1":"506250f7469f8e5885fd4b937cceb346d9e19213","md5":"5de5c24d047ebb7be25238ecbdd1ca22","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/JarCheckPermissionsGranted.java","type":"file","name":"JarCheckPermissionsGranted.java","base_name":"JarCheckPermissionsGranted","extension":".java","size":12663,"date":"2019-10-25","sha1":"d10619f95d9dbf2d4d5d57fac8c78ae323d09f13","md5":"34f201c81ae77fdb2ff9dee4f6107f17","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"Java","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"vhardy@apache.org","start_line":45,"end_line":45}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://xml.apache.org/batik/test","start_line":50,"end_line":50}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/JarCheckPermissionsGranted.mf","type":"file","name":"JarCheckPermissionsGranted.mf","base_name":"JarCheckPermissionsGranted","extension":".mf","size":89,"date":"2019-10-25","sha1":"9ac2dd2ce7916e2ed0ca4b126dac94832e3e36ff","md5":"613e138b6714f298b44d2e64ec5e9c08","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/jarCheckPermissionsGranted.svg","type":"file","name":"jarCheckPermissionsGranted.svg","base_name":"jarCheckPermissionsGranted","extension":".svg","size":1725,"date":"2019-10-25","sha1":"80b0a432b348a4034fbf7fb830bea0fde55aeff0","md5":"a8ec618fff03a1bbea1f233d32e65200","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30},{"url":"http://xml.apache.org/batik/test","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/scriptPermissions.svg","type":"file","name":"scriptPermissions.svg","base_name":"scriptPermissions","extension":".svg","size":4944,"date":"2019-10-25","sha1":"7035bb8a153404b3ada508432be9e658c54d36ca","md5":"45a5e373346b0bfbe05bfb0766c2a3f6","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32},{"url":"http://nagoya.apache.org/batik_1.1/batik-1.1/samples/asf-logo.svg","start_line":126,"end_line":126}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/scriptPermissions2.svg","type":"file","name":"scriptPermissions2.svg","base_name":"scriptPermissions2","extension":".svg","size":30838,"date":"2019-10-25","sha1":"883e8ca070fdb93a79882ece866f67f29471b1f1","md5":"3bb97813a2a35d1dc4f99fcf6c549d40","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":31,"end_line":32}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":31,"end_line":31}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":36,"end_line":36}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":32071,"date":"2019-10-25","sha1":"e30c5c6790f5beb1149e9c56c61286ab4d1875cd","md5":"1fe09e599219aaeb5d44cc2252f42bf9","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":19,"end_line":19}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error","type":"directory","name":"error","base_name":"error","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":71,"dirs_count":0,"size_count":233739,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/batikMark.svg","type":"file","name":"batikMark.svg","base_name":"batikMark","extension":".svg","size":8865,"date":"2019-10-25","sha1":"9adc97da9f8a027bb5076bf8e06a3fb78c891786","md5":"69ad096f25ef2d6fcff40a9832c3ed03","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/clipPath-clipPathUnits-invalid.svg","type":"file","name":"clipPath-clipPathUnits-invalid.svg","base_name":"clipPath-clipPathUnits-invalid","extension":".svg","size":3135,"date":"2019-10-25","sha1":"10c6af5cf3cde31009e185636c138ffeeafdb65c","md5":"1f5af47df3367dd216c94d0bc0158744","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/clipPath-empty.svg","type":"file","name":"clipPath-empty.svg","base_name":"clipPath-empty","extension":".svg","size":2978,"date":"2019-10-25","sha1":"ea23fed5b72d8035a30d5c660b41841eefb62670","md5":"1695a06d158626fc72467213a46755bf","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/clipPath-subelement-invalid.svg","type":"file","name":"clipPath-subelement-invalid.svg","base_name":"clipPath-subelement-invalid","extension":".svg","size":3098,"date":"2019-10-25","sha1":"851c203590df92e01c6604a74202e8bcfe746dd5","md5":"6344e90773beccae7684fd68ac7cd0c7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/clipPath-uri-illegal.svg","type":"file","name":"clipPath-uri-illegal.svg","base_name":"clipPath-uri-illegal","extension":".svg","size":2998,"date":"2019-10-25","sha1":"8732be8e1cff316967185bb1caa78eb640276bd8","md5":"fcdd190bb44f257b5ff0e9a4bb5356d5","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/css-invalid.svg","type":"file","name":"css-invalid.svg","base_name":"css-invalid","extension":".svg","size":2687,"date":"2019-10-25","sha1":"6003f9c334db6db678877c0fcac749a5cf169337","md5":"f2258839fd4c12bf24ef365091c89c92","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/ellipse-missing-rx.svg","type":"file","name":"ellipse-missing-rx.svg","base_name":"ellipse-missing-rx","extension":".svg","size":2650,"date":"2019-10-25","sha1":"668dc50b2984d116a92589810574f35be0368772","md5":"963dacd8e74628433ac60f0ccbc4839b","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/ellipse-missing-ry.svg","type":"file","name":"ellipse-missing-ry.svg","base_name":"ellipse-missing-ry","extension":".svg","size":2650,"date":"2019-10-25","sha1":"1bc91f0dc41669068d009fb95f3d68b0f5b37c4b","md5":"d58a7aa627c2622316529604d4f49fd3","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/ellipse-negative-rx.svg","type":"file","name":"ellipse-negative-rx.svg","base_name":"ellipse-negative-rx","extension":".svg","size":2659,"date":"2019-10-25","sha1":"ebfdd15a25a0a51c9bee02d433418ff14fba1ae6","md5":"9d805146f867ca039f4cf3d6c2c6f507","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/ellipse-negative-ry.svg","type":"file","name":"ellipse-negative-ry.svg","base_name":"ellipse-negative-ry","extension":".svg","size":2658,"date":"2019-10-25","sha1":"ed373afd24f0b355554a01f29624bb765edfaa34","md5":"c1fd60755aba899f52bbac1c868c6870","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feColorMatrix-type-invalid.svg","type":"file","name":"feColorMatrix-type-invalid.svg","base_name":"feColorMatrix-type-invalid","extension":".svg","size":3493,"date":"2019-10-25","sha1":"0091ee1ef39d46d4d7d59d641a5bf6b29d6b6e4c","md5":"c7138edd2c164c6c6b03cad1d25c4bf1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feColorMatrix-value-invalid.svg","type":"file","name":"feColorMatrix-value-invalid.svg","base_name":"feColorMatrix-value-invalid","extension":".svg","size":3656,"date":"2019-10-25","sha1":"02f69c2f393331357b6b47401b7f60d28a50699c","md5":"1d4552f99f9ac27d20086dde5b091b7c","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feColorMatrix-values-invalid.svg","type":"file","name":"feColorMatrix-values-invalid.svg","base_name":"feColorMatrix-values-invalid","extension":".svg","size":3488,"date":"2019-10-25","sha1":"ae4a17fabf64a8a663ae51d6879e0c58ac9f7317","md5":"e95f4a44ec160182eae9a651b1fd8cd1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feComponentTransfert-type-invalid.svg","type":"file","name":"feComponentTransfert-type-invalid.svg","base_name":"feComponentTransfert-type-invalid","extension":".svg","size":4175,"date":"2019-10-25","sha1":"4cd9f05a29b513208891460189fce9f1923e3b94","md5":"14a03623d979b5b6898ba0c3f750035b","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feComponentTransfert-type-missing.svg","type":"file","name":"feComponentTransfert-type-missing.svg","base_name":"feComponentTransfert-type-missing","extension":".svg","size":4174,"date":"2019-10-25","sha1":"e164fbfc093bc5957f0a49cfa4137367fcbe2363","md5":"15355be69ba2b774bdbf7d3421588aef","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feComponentTransfert-value-invalid.svg","type":"file","name":"feComponentTransfert-value-invalid.svg","base_name":"feComponentTransfert-value-invalid","extension":".svg","size":4167,"date":"2019-10-25","sha1":"35ac4aaa94fb260c2bdd11f6b6baf43d1193377e","md5":"5e29f4ec0654a39c64bd4a127cd85cfb","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feComposite-in2-missing.svg","type":"file","name":"feComposite-in2-missing.svg","base_name":"feComposite-in2-missing","extension":".svg","size":3737,"date":"2019-10-25","sha1":"d327bbf0ebd4fc1d900cb1af87e1d33fe12aa200","md5":"6ee96e1cab60e80e4004835683b4d472","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feComposite-operator-invalid.svg","type":"file","name":"feComposite-operator-invalid.svg","base_name":"feComposite-operator-invalid","extension":".svg","size":3771,"date":"2019-10-25","sha1":"d21870587923edc784773df8ee31d3c4288b5e70","md5":"4035d9314ec5a40a67971d64884e6660","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feDisplacementMap-channelSelector-invalid.svg","type":"file","name":"feDisplacementMap-channelSelector-invalid.svg","base_name":"feDisplacementMap-channelSelector-invalid","extension":".svg","size":4675,"date":"2019-10-25","sha1":"c5f242dd87c9d6d6993dfd46e9cf03e7478cf5d4","md5":"fae70a4138b1a3f4400ef317c5ac7462","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feDisplacementMap-in2-missing.svg","type":"file","name":"feDisplacementMap-in2-missing.svg","base_name":"feDisplacementMap-in2-missing","extension":".svg","size":4616,"date":"2019-10-25","sha1":"252586c6b276f8853cb4fa4f7b052863cee2253b","md5":"e92353b30d8bc9cad433983c02a0c740","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feGaussianBlur-stdDeviationX-invalid.svg","type":"file","name":"feGaussianBlur-stdDeviationX-invalid.svg","base_name":"feGaussianBlur-stdDeviationX-invalid","extension":".svg","size":3206,"date":"2019-10-25","sha1":"d3b434788e4aeec1716ed9bc46683734cf7801bf","md5":"ddaa47a8133909d7ed979fc84f200d06","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feGaussianBlur-stdDeviationY-invalid.svg","type":"file","name":"feGaussianBlur-stdDeviationY-invalid.svg","base_name":"feGaussianBlur-stdDeviationY-invalid","extension":".svg","size":3209,"date":"2019-10-25","sha1":"3b1749931a15438c3b4c804d261de03dd88e9d1a","md5":"8075dc31f9e2b6b2c328c53767bcef8a","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feImage-badurl.svg","type":"file","name":"feImage-badurl.svg","base_name":"feImage-badurl","extension":".svg","size":3245,"date":"2019-10-25","sha1":"0cb05b2fc0d0ee448b449d0c733af3f28f5b4883","md5":"e91fb1593856dc654ec6bdf1edad8d1b","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feMerge-feMergeNode-invalid.svg","type":"file","name":"feMerge-feMergeNode-invalid.svg","base_name":"feMerge-feMergeNode-invalid","extension":".svg","size":3705,"date":"2019-10-25","sha1":"012a598a077dfde14d17934a52b82d35a5d5f1cc","md5":"eca6562ce236c5d028da9902ea4f56fb","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feMorphology-operator-invalid.svg","type":"file","name":"feMorphology-operator-invalid.svg","base_name":"feMorphology-operator-invalid","extension":".svg","size":3444,"date":"2019-10-25","sha1":"3d225dbbd8989906b1a0685381a88cb002b764e2","md5":"29421baa7ab6d36fe9d21359e2ab498f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feMorphology-radiusX-negative.svg","type":"file","name":"feMorphology-radiusX-negative.svg","base_name":"feMorphology-radiusX-negative","extension":".svg","size":3455,"date":"2019-10-25","sha1":"41c4432dbe4aee14143fb94e000391bef4d675b6","md5":"d81a246f3c0a2d3c0af3f983316ddeee","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feMorphology-radiusY-negative.svg","type":"file","name":"feMorphology-radiusY-negative.svg","base_name":"feMorphology-radiusY-negative","extension":".svg","size":3458,"date":"2019-10-25","sha1":"cee0e33904144635aa67d45fbe24262856aca8ab","md5":"af208fe28abce580520bbd93c4bcd81f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feTurbulence-stitchTiles.invalid.svg","type":"file","name":"feTurbulence-stitchTiles.invalid.svg","base_name":"feTurbulence-stitchTiles.invalid","extension":".svg","size":3369,"date":"2019-10-25","sha1":"1646187cbe5da33ffa316a7c379221e5f25f72f9","md5":"c79691cb6297d93f45ed8e4611af779a","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/feTurbulence-type-invalid.svg","type":"file","name":"feTurbulence-type-invalid.svg","base_name":"feTurbulence-type-invalid","extension":".svg","size":3299,"date":"2019-10-25","sha1":"ba78ef76e1dd5a71530503d592bd6861d79aa3de","md5":"549a919f08870f7a1bbc979adba949bc","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/filter-empty.svg","type":"file","name":"filter-empty.svg","base_name":"filter-empty","extension":".svg","size":3085,"date":"2019-10-25","sha1":"b58caef57028a6485267ecf85f098d0dc6ef077f","md5":"688baebb4e701a9ab30c1511ba8b3e81","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/filter-filterPrimitive-invalid.svg","type":"file","name":"filter-filterPrimitive-invalid.svg","base_name":"filter-filterPrimitive-invalid","extension":".svg","size":3305,"date":"2019-10-25","sha1":"fe5053fb8c4cdfa8f02589c3feb40502f376fa6a","md5":"90363cb3b275da9831ac209d1c8d5282","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/filter-filterResX-negative.svg","type":"file","name":"filter-filterResX-negative.svg","base_name":"filter-filterResX-negative","extension":".svg","size":3217,"date":"2019-10-25","sha1":"392a4230dd7304f77ca9a6a7e756bb1cfb344887","md5":"36bfc7608d30029be3f4d06d457c91ec","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/filter-filterResY-negative.svg","type":"file","name":"filter-filterResY-negative.svg","base_name":"filter-filterResY-negative","extension":".svg","size":3326,"date":"2019-10-25","sha1":"f5fa4db6623aca0de870843aef8a0c18977fcb62","md5":"7eec9da27366d8ba2f1b478d0ad92a8f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/filter-filterUnits-invalid.svg","type":"file","name":"filter-filterUnits-invalid.svg","base_name":"filter-filterUnits-invalid","extension":".svg","size":3182,"date":"2019-10-25","sha1":"a00d4c80b2aef0bb36128871a2047e89efba6ba9","md5":"f75b360dc031f3886a4215c59a69eec9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/filter-uri-illegal.svg","type":"file","name":"filter-uri-illegal.svg","base_name":"filter-uri-illegal","extension":".svg","size":3068,"date":"2019-10-25","sha1":"b76ebef03c41cdc075e5470a8682b6a485403a8f","md5":"56a669b2c33d6b949ea791a831a97501","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/image-badurl.svg","type":"file","name":"image-badurl.svg","base_name":"image-badurl","extension":".svg","size":2700,"date":"2019-10-25","sha1":"fd72d021bb68bf1909ef1fa8bb5855f062056023","md5":"b03d1676028b305d34b11caa986c6995","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/image-missing-height.svg","type":"file","name":"image-missing-height.svg","base_name":"image-missing-height","extension":".svg","size":2703,"date":"2019-10-25","sha1":"a8311a72e1f7c3c2366f964f579dd7b505b59c49","md5":"22b522939751bcea70f09ae45264c0f3","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/image-missing-width.svg","type":"file","name":"image-missing-width.svg","base_name":"image-missing-width","extension":".svg","size":2699,"date":"2019-10-25","sha1":"2cfcd7804f17c81d5a1bffb48c677b4922f43bc7","md5":"cbe59e2dd85a79dc6b89b489ee951597","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/image-negative-height.svg","type":"file","name":"image-negative-height.svg","base_name":"image-negative-height","extension":".svg","size":2712,"date":"2019-10-25","sha1":"aa2757690689299d5a6c737fde08ff66809c0d41","md5":"8d8a181637217f0e63b5047da8587ec1","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/image-negative-width.svg","type":"file","name":"image-negative-width.svg","base_name":"image-negative-width","extension":".svg","size":2708,"date":"2019-10-25","sha1":"14517c087da3b7e5005318cbd719adbe8e9e972b","md5":"e0e4966d71f35d5cbd6bb0396c9585c8","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/linearGradient-empty.svg","type":"file","name":"linearGradient-empty.svg","base_name":"linearGradient-empty","extension":".svg","size":3090,"date":"2019-10-25","sha1":"a24771f9b08367a88a5a47250ce38b423d491d17","md5":"94362c66d4abd3f91f1a0cffeca37831","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/linearGradient-gradientUnits-invalid.svg","type":"file","name":"linearGradient-gradientUnits-invalid.svg","base_name":"linearGradient-gradientUnits-invalid","extension":".svg","size":3335,"date":"2019-10-25","sha1":"72dda33aa817769b22f6e41935e4bf924de5f9ac","md5":"a070b49c3d1f240b904e9c0fa11080a5","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/linearGradient-missing-offset.svg","type":"file","name":"linearGradient-missing-offset.svg","base_name":"linearGradient-missing-offset","extension":".svg","size":3145,"date":"2019-10-25","sha1":"88be5bde88514b23a739888aedd8d658f93c14cb","md5":"6e71490ee82de434ed5622ec74c16cf4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/linearGradient-spreadMethod-invalid.svg","type":"file","name":"linearGradient-spreadMethod-invalid.svg","base_name":"linearGradient-spreadMethod-invalid","extension":".svg","size":3236,"date":"2019-10-25","sha1":"7471fb7afcb0e559afef53a7a38f713e1791565c","md5":"607e7d64f55e8853763e2f57d5ae278a","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/linearGradient-uri-invalid.svg","type":"file","name":"linearGradient-uri-invalid.svg","base_name":"linearGradient-uri-invalid","extension":".svg","size":3089,"date":"2019-10-25","sha1":"b2bc1397cb478daadc5f4789916c07611e81664b","md5":"993d1db2b2affb2396e1a9f18eb63289","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/mask-empty.svg","type":"file","name":"mask-empty.svg","base_name":"mask-empty","extension":".svg","size":3424,"date":"2019-10-25","sha1":"b53eb0b77d798883470ae66abbd37a4db45185ea","md5":"114b419634a2c6f0e2d3526b7bdcb7e7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/mask-maskUnits-invalid.svg","type":"file","name":"mask-maskUnits-invalid.svg","base_name":"mask-maskUnits-invalid","extension":".svg","size":3728,"date":"2019-10-25","sha1":"79aaf33af897068ebc70fe53622c5dd8f3313156","md5":"249e4c1c0fbd7315368646bcba214cfe","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/mask-subelement-invalid.svg","type":"file","name":"mask-subelement-invalid.svg","base_name":"mask-subelement-invalid","extension":".svg","size":3692,"date":"2019-10-25","sha1":"a2091f07a3cac3168c7f2ace8bdceadd1ff4097e","md5":"8186f056be26faecd7c8bbae55ef8a72","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/mask-uri-illegal.svg","type":"file","name":"mask-uri-illegal.svg","base_name":"mask-uri-illegal","extension":".svg","size":3429,"date":"2019-10-25","sha1":"6d71d7eed845f5314bdac399668fe22e8f3f6c8a","md5":"4afc9f649efaf864cd6e91009697c652","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/path-invalid-d.svg","type":"file","name":"path-invalid-d.svg","base_name":"path-invalid-d","extension":".svg","size":3799,"date":"2019-10-25","sha1":"36ed63a16a9ad39d482d327a762b1c85075c9583","md5":"fc6982049e98a9c1a78d1dc357eb315d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/pattern-empty.svg","type":"file","name":"pattern-empty.svg","base_name":"pattern-empty","extension":".svg","size":3075,"date":"2019-10-25","sha1":"7bf54b02a70c1cfc3d0569cb6aecafdac47f603d","md5":"85f397908ffff25c638ee3ca40dc1a52","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/pattern-patternUnits-invalid.svg","type":"file","name":"pattern-patternUnits-invalid.svg","base_name":"pattern-patternUnits-invalid","extension":".svg","size":3325,"date":"2019-10-25","sha1":"2a9ad67919a2c69f846c186f87990b8bc0ff42aa","md5":"278b9e86b44f892e1bed1e61026eefd4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/pattern-subelement-invalid.svg","type":"file","name":"pattern-subelement-invalid.svg","base_name":"pattern-subelement-invalid","extension":".svg","size":3210,"date":"2019-10-25","sha1":"137f2a4c90ff9d973489518674b11a86604ebb4b","md5":"074120a6efa8e70082688660d1b7d8f9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/polygon-invalid-points.svg","type":"file","name":"polygon-invalid-points.svg","base_name":"polygon-invalid-points","extension":".svg","size":2846,"date":"2019-10-25","sha1":"c235d12a0ca586146e42c66cd0d1b67dccbb3277","md5":"39cec752099f5f61bdfa325b29e0eeff","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/polyline-invalid-points.svg","type":"file","name":"polyline-invalid-points.svg","base_name":"polyline-invalid-points","extension":".svg","size":2853,"date":"2019-10-25","sha1":"12e6d33df10b96af3063da3c449d3af39e775b49","md5":"e4f731bc1896d5c7b4b43ca1670421fb","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/radialGradient-empty.svg","type":"file","name":"radialGradient-empty.svg","base_name":"radialGradient-empty","extension":".svg","size":3044,"date":"2019-10-25","sha1":"4dbb2b2b9b57ac03740a84b2c78340436aa8348b","md5":"e69fbc1e364946ceb334191815298d39","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/radialGradient-gradientUnits-invalid.svg","type":"file","name":"radialGradient-gradientUnits-invalid.svg","base_name":"radialGradient-gradientUnits-invalid","extension":".svg","size":3289,"date":"2019-10-25","sha1":"1493442f5b310d63d82c9aa55613562bbc5fc315","md5":"49cd6a5f23e1a1363039588b772b6b88","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/radialGradient-missing-offset.svg","type":"file","name":"radialGradient-missing-offset.svg","base_name":"radialGradient-missing-offset","extension":".svg","size":3102,"date":"2019-10-25","sha1":"e2cdd39d034626344a68f8265b4f3e2ccdcc5825","md5":"0072bbf242dac43312f9ac715ba01293","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/radialGradient-r-negative.svg","type":"file","name":"radialGradient-r-negative.svg","base_name":"radialGradient-r-negative","extension":".svg","size":3151,"date":"2019-10-25","sha1":"a411ecd8ea8c0f9b6691e7faf05a8d14fb4a3ccd","md5":"279aca99a77dcc05b7163a4be13a2217","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/radialGradient-r-zero.svg","type":"file","name":"radialGradient-r-zero.svg","base_name":"radialGradient-r-zero","extension":".svg","size":3163,"date":"2019-10-25","sha1":"302c32e69419c881945cfe0e09c803561bbca04a","md5":"00cbad30b72df50995e3167cac92ca87","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/radialGradient-spreadMethod-invalid.svg","type":"file","name":"radialGradient-spreadMethod-invalid.svg","base_name":"radialGradient-spreadMethod-invalid","extension":".svg","size":3231,"date":"2019-10-25","sha1":"b98d09f1489056b3c29a0349ebc3d2732be8cb8b","md5":"7660a002559ab92a961e668f0ae1b496","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/rect-missing-height.svg","type":"file","name":"rect-missing-height.svg","base_name":"rect-missing-height","extension":".svg","size":2649,"date":"2019-10-25","sha1":"b6f3a1800355a2b491e8d455566903becd7184f8","md5":"8b59b203b2b29cdbd216a5bda48c9618","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/rect-missing-width.svg","type":"file","name":"rect-missing-width.svg","base_name":"rect-missing-width","extension":".svg","size":2649,"date":"2019-10-25","sha1":"951e102345cf1d9167210d464e82f3e3415d09f8","md5":"5cd81d7977d4eaf2123a7491e12322dc","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/rect-negative-height.svg","type":"file","name":"rect-negative-height.svg","base_name":"rect-negative-height","extension":".svg","size":2668,"date":"2019-10-25","sha1":"89bbf6623c1771ec1e3b6718f49b3e76b26866c9","md5":"633206568f9ad4a766f0332dd315348b","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/rect-negative-rx.svg","type":"file","name":"rect-negative-rx.svg","base_name":"rect-negative-rx","extension":".svg","size":2696,"date":"2019-10-25","sha1":"9e3575f13de7627f350f57feb332c3bd9ec143ce","md5":"893b2ad99460e46fffb1ab48fb650fed","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/rect-negative-ry.svg","type":"file","name":"rect-negative-ry.svg","base_name":"rect-negative-ry","extension":".svg","size":2699,"date":"2019-10-25","sha1":"003cb0c8c60b65f6abbfc9cc9792fd8589b98ac7","md5":"9610504487118414ed9083650f097bf9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/rect-negative-width.svg","type":"file","name":"rect-negative-width.svg","base_name":"rect-negative-width","extension":".svg","size":2660,"date":"2019-10-25","sha1":"f0a7ca596297b0960a7b830279e79280968f4d83","md5":"111c6e571c94dc742d2207e7767580f9","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/svg.svg","type":"file","name":"svg.svg","base_name":"svg","extension":".svg","size":6234,"date":"2019-10-25","sha1":"577c2b641d59c47a59eb4bee556bb30f4c557369","md5":"2ba1b424c74e8036043cea5a7b8716fb","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/test.css","type":"file","name":"test.css","base_name":"test","extension":".css","size":972,"date":"2019-10-25","sha1":"33dc7b62f45903b7cd2ef059bc425a120c1dadd8","md5":"4b245dba7677a08c5f79bd48b984be14","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/transform.svg","type":"file","name":"transform.svg","base_name":"transform","extension":".svg","size":2648,"date":"2019-10-25","sha1":"7dd02381ec1a65eb0cc101a72f0c871f87198570","md5":"545fcbc9a41713a9b09051e75a289ef5","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/bridge/error/xml-invalid.svg","type":"file","name":"xml-invalid.svg","base_name":"xml-invalid","extension":".svg","size":2183,"date":"2019-10-25","sha1":"15b488c635ef6b2da156fd88cf9098e9f76ef046","md5":"4d7a8d3a74e4b2708cce5abfdfe724ac","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@apache.org","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"tkormann@apache.org","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/css","type":"directory","name":"css","base_name":"css","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":10,"dirs_count":3,"size_count":54889,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/css/dom","type":"directory","name":"dom","base_name":"dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":9,"dirs_count":0,"size_count":27387,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/css/dom/bug11670.svg","type":"file","name":"bug11670.svg","base_name":"bug11670","extension":".svg","size":3233,"date":"2019-10-25","sha1":"755accf47f15bbe14daa43b46b453ad549a58f29","md5":"f3750dcb57216d33aaca728698115841","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"shillion@ilog.fr","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"shillion@ilog.fr","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30},{"url":"http://xml.apache.org/batik/test","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/css/dom/bug9740-1.css","type":"file","name":"bug9740-1.css","base_name":"bug9740-1","extension":".css","size":33,"date":"2019-10-25","sha1":"ffa70034141918f7535420d24d68fa215b156c47","md5":"c8a5e0f79f8b951453ae55887cf64a4e","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/css/dom/bug9740-2.css","type":"file","name":"bug9740-2.css","base_name":"bug9740-2","extension":".css","size":37,"date":"2019-10-25","sha1":"ea700780c25a9e355c13c1eb7a841d28480f5da8","md5":"d547d8f91086f393f2d0134ad164b870","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/css/dom/bug9740.svg","type":"file","name":"bug9740.svg","base_name":"bug9740","extension":".svg","size":3439,"date":"2019-10-25","sha1":"1197f405661e51bd4fadecfd5f6a601375fe8a8e","md5":"c3ca09225977001051188e053140cec7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"shillion@ilog.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"shillion@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":35,"end_line":35},{"url":"http://xml.apache.org/batik/test","start_line":36,"end_line":36}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/css/dom/bug9779.svg","type":"file","name":"bug9779.svg","base_name":"bug9779","extension":".svg","size":2105,"date":"2019-10-25","sha1":"516713d5272b38cbea6f67b16c7ff143c454ba50","md5":"0755c4d5523cd851a68973ebcb70aaf7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"shillion@ilog.fr","start_line":25,"end_line":26}],"packages":[],"emails":[{"email":"shillion@ilog.fr","start_line":25,"end_line":25}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":30,"end_line":30},{"url":"http://xml.apache.org/batik/test","start_line":31,"end_line":31}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/css/dom/rgbPresentationTest.svg","type":"file","name":"rgbPresentationTest.svg","base_name":"rgbPresentationTest","extension":".svg","size":6538,"date":"2019-10-25","sha1":"74515fdfd272348fa3868d5e303394a8635fcd29","md5":"2de1c1db619705a86d0d11eb3e54b207","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":27,"end_line":29},{"value":"shillion@ilog.fr","start_line":27,"end_line":29}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27},{"email":"shillion@ilog.fr","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33},{"url":"http://xml.apache.org/batik/test","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/css/dom/rgbTest.svg","type":"file","name":"rgbTest.svg","base_name":"rgbTest","extension":".svg","size":4904,"date":"2019-10-25","sha1":"7b38c37a0a2097933d98ab03ffc17bf62e43b481","md5":"95f36dfee46f91bd667d1f92f7289ef7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":27,"end_line":29},{"value":"shillion@ilog.fr","start_line":27,"end_line":29}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27},{"email":"shillion@ilog.fr","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33},{"url":"http://xml.apache.org/batik/test","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/css/dom/rgbUpdateTest.svg","type":"file","name":"rgbUpdateTest.svg","base_name":"rgbUpdateTest","extension":".svg","size":5557,"date":"2019-10-25","sha1":"f075c500332899ee1aa06e32f0ce7b8bed49e1b0","md5":"26c61675d1e1ef93da6525680148af5b","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":27,"end_line":29},{"value":"shillion@ilog.fr","start_line":27,"end_line":29}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27},{"email":"shillion@ilog.fr","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33},{"url":"http://xml.apache.org/batik/test","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/css/dom/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":1541,"date":"2019-10-25","sha1":"27a0c9649499be51a83440c1dcad694a26a4838f","md5":"5f04de737f40b6bb6bd7c797080f30eb","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":19,"end_line":19}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/css/engine","type":"directory","name":"engine","base_name":"engine","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":27502,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/css/engine/value","type":"directory","name":"value","base_name":"value","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":27502,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/css/engine/value/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":27502,"date":"2019-10-25","sha1":"77a7d3904c1fa224014b2468de30ced5e7e4a34f","md5":"35f1b1e43324029e291bc7f6e08c2da3","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":19,"end_line":19}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom","type":"directory","name":"dom","base_name":"dom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":15,"dirs_count":1,"size_count":67756,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/bug18143.svg","type":"file","name":"bug18143.svg","base_name":"bug18143","extension":".svg","size":2516,"date":"2019-10-25","sha1":"de335bbd9cf5b398d76f0582d64b92ab0be4244f","md5":"1a56a14d8cba19896cdfe58382d93f3c","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":8,"end_line":21,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":15,"end_line":15},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32},{"url":"http://foo.com/","start_line":43,"end_line":43}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/bug20331.svg","type":"file","name":"bug20331.svg","base_name":"bug20331","extension":".svg","size":3804,"date":"2019-10-25","sha1":"6df3fe25f55c201a75878cd2aee4e8c010fdc9fa","md5":"8e99d5c5414fc643d208e7e26f5f16c8","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":8,"end_line":21,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":15,"end_line":15},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/bug20332.svg","type":"file","name":"bug20332.svg","base_name":"bug20332","extension":".svg","size":3724,"date":"2019-10-25","sha1":"7ab8458201c7013eac8c711e243d3b581cde86ef","md5":"9f1bf99c3025d4e7716fd73b9ab381e8","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":8,"end_line":21,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":15,"end_line":15},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/dummyXML.xml","type":"file","name":"dummyXML.xml","base_name":"dummyXML","extension":".xml","size":824,"date":"2019-10-25","sha1":"2e5b7b0424743063a493e89d67e400f0f008796a","md5":"8fd069f7342f7311d98767f618c532b9","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/dummyXML2.xml","type":"file","name":"dummyXML2.xml","base_name":"dummyXML2","extension":".xml","size":884,"date":"2019-10-25","sha1":"350a758dd9d43388f109be681a5ff7aef3d066c9","md5":"9370a2a713347ead982fb04d8eb28f1b","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/dummyXML3.xml","type":"file","name":"dummyXML3.xml","base_name":"dummyXML3","extension":".xml","size":923,"date":"2019-10-25","sha1":"f82f6ef3c30bfdf9ab56684b5c4318209f4f2301","md5":"0ca21fd16d53c638564c903ce5566a28","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/dummyXML4.xml","type":"file","name":"dummyXML4.xml","base_name":"dummyXML4","extension":".xml","size":936,"date":"2019-10-25","sha1":"6c4950622f7ef15f49c6dc13caab5bf0e74ff045","md5":"9c9fb62f6d507c777d319cb5f2edb265","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":10359,"date":"2019-10-25","sha1":"62f14283a0863713b40a3e5e8fb6d6620b38a0ea","md5":"8464f603eab715c6907ef355d1ab3196","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":19,"end_line":21},{"value":"shillion@ilog.fr","start_line":19,"end_line":21}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":19,"end_line":19},{"email":"shillion@ilog.fr","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/svg","type":"directory","name":"svg","base_name":"svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":0,"size_count":43786,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/svg/bug30580.svg","type":"file","name":"bug30580.svg","base_name":"bug30580","extension":".svg","size":4440,"date":"2019-10-25","sha1":"2d7dc180b9b6c05e41b354f1aa2d444dc2ef9da7","md5":"4a36ae66ae3977ad54c8b7ce7199970f","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":17,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":11,"end_line":11},{"url":"http://www.w3.org/1999/xlink","start_line":25,"end_line":25},{"url":"http://xml.apache.org/batik/test","start_line":26,"end_line":26}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/svg/bug30580_image.png","type":"file","name":"bug30580_image.png","base_name":"bug30580_image","extension":".png","size":21496,"date":"2019-10-25","sha1":"f16292b68ded4bbd6c29a7f3fe980bf1cefe31df","md5":"cf8dc5bae06897a52f053791deaeb5d1","mime_type":"image/png","file_type":"PNG image data, 300 x 100, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/svg/lengthTest.svg","type":"file","name":"lengthTest.svg","base_name":"lengthTest","extension":".svg","size":5112,"date":"2019-10-25","sha1":"40607af0bea95b8487e25b9c7b3f1b0bcb7bba87","md5":"463e84c6c4ce25c7750a4e7ddc1a72ec","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"shillion@ilog.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"shillion@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/test","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/svg/locatableTest.svg","type":"file","name":"locatableTest.svg","base_name":"locatableTest","extension":".svg","size":4900,"date":"2019-10-25","sha1":"d1d6a9f70551d9bc5c4d38a38fc29334b3441e56","md5":"fce18be22439a8c0800a439fa00e7d11","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"shillion@ilog.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"shillion@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/test","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/svg/presentationAttrRemovalTest.svg","type":"file","name":"presentationAttrRemovalTest.svg","base_name":"presentationAttrRemovalTest","extension":".svg","size":3777,"date":"2019-10-25","sha1":"552d6bcf2839dd91c327668491067bae59f64613","md5":"8e2d83aafdb393e33d448102d274037e","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"shillion@ilog.fr","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"shillion@ilog.fr","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/test","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/svg/test.svg","type":"file","name":"test.svg","base_name":"test","extension":".svg","size":855,"date":"2019-10-25","sha1":"5794492082ad1b33eeb21762ad6d92fa3baafd13","md5":"ad5587982d58459eac45f225dc8ca372","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/dom/svg/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":3206,"date":"2019-10-25","sha1":"8d8c112f0800aaa86201d4f65a0f722688a27115","md5":"914d9a30547c679e6720ee872f7dd7cb","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"shillion@ilog.fr","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"shillion@ilog.fr","start_line":19,"end_line":19}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/ext","type":"directory","name":"ext","base_name":"ext","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":7,"size_count":8835,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/ext/awt","type":"directory","name":"awt","base_name":"awt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":6,"size_count":8835,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/ext/awt/geom","type":"directory","name":"geom","base_name":"geom","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":1,"size_count":4294,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/ext/awt/geom/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":2693,"date":"2019-10-25","sha1":"ab4b0b89ca5cf8e6dcbc52f6a1f972829ecf4d25","md5":"1ddc27047881ead1806d1b7423a1c16f","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":19,"end_line":19}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/ext/awt/geom/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1601,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/ext/awt/geom/resources/TestMessages.properties","type":"file","name":"TestMessages.properties","base_name":"TestMessages","extension":".properties","size":1601,"date":"2019-10-25","sha1":"6273ddc56ae2af40891028e5171334e023cfa2d1","md5":"b5516d08de3675ff68c8b9ba88989ba2","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/ext/awt/image","type":"directory","name":"image","base_name":"image","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":3,"size_count":4541,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/ext/awt/image/codec","type":"directory","name":"codec","base_name":"codec","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":1,"size_count":3045,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/ext/awt/image/codec/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":1733,"date":"2019-10-25","sha1":"47d38f35da44543083a49298d8e16f97824f201a","md5":"e3afc463b5bd6cc42250a2ee187b7d32","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":19,"end_line":19}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/ext/awt/image/codec/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1312,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/ext/awt/image/codec/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":1312,"date":"2019-10-25","sha1":"735ea0baa5e6246d2aa9c81ca54cf463cdd29e82","md5":"135b3457fa98b6a0be08191bc6a5d146","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/ext/awt/image/spi","type":"directory","name":"spi","base_name":"spi","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1496,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/ext/awt/image/spi/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":1496,"date":"2019-10-25","sha1":"03da7675d1ec6f6c92db0b42286312cb8583043b","md5":"e467e78ed8abcc834a611b86e00a5f71","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/gvt","type":"directory","name":"gvt","base_name":"gvt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":1,"size_count":9934,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/gvt/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":8034,"date":"2019-10-25","sha1":"094c079ba4faed7081d64ebfa94c6485d999c885","md5":"8ca62b2d27d623dc1273e500c539e06c","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":19,"end_line":21},{"value":"vincent.hardy@sun.com","start_line":19,"end_line":21}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":19,"end_line":19},{"email":"vincent.hardy@sun.com","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/gvt/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1900,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/gvt/resources/TestMessages.properties","type":"file","name":"TestMessages.properties","base_name":"TestMessages","extension":".properties","size":1900,"date":"2019-10-25","sha1":"a2d41704d67017f142a4d7e8832ecb54fa3515f9","md5":"d3743c150e1b08dd54dfe6efa19d4066","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/parser","type":"directory","name":"parser","base_name":"parser","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":19355,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/parser/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":19355,"date":"2019-10-25","sha1":"1c86c1438ac2ef75a8eb208e24658b000b30343b","md5":"282fa94899dc509187c9c881c7329768","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"stephane@hillion.org","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"stephane@hillion.org","start_line":19,"end_line":19}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/script","type":"directory","name":"script","base_name":"script","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":1,"size_count":4104,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/script/rhino","type":"directory","name":"rhino","base_name":"rhino","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":4104,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/script/rhino/eval.svg","type":"file","name":"eval.svg","base_name":"eval","extension":".svg","size":2331,"date":"2019-10-25","sha1":"8a0954596e2d9d7a9f39bc4308b5cba429633e59","md5":"fa136105dbafa6fd1d393ba95bcc1802","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":26,"end_line":27}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":26,"end_line":26}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":31,"end_line":31},{"url":"http://xml.apache.org/batik/test","start_line":32,"end_line":32},{"url":"http://some.company.com/","start_line":41,"end_line":41}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/script/rhino/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":1773,"date":"2019-10-25","sha1":"e4c1c2cad5a35de2e2b130a61436ffe14f4472b5","md5":"33e8251cfa775130a8740c663ef41b8d","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":19,"end_line":19}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/svggen","type":"directory","name":"svggen","base_name":"svggen","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":1,"size_count":27494,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/svggen/regsvggen.xml","type":"file","name":"regsvggen.xml","base_name":"regsvggen","extension":".xml","size":2981,"date":"2019-10-25","sha1":"6170adf9ca299f05510fb3c9290bd048be7cb191","md5":"11f36e51f08726fcb437fa498af6b22b","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":19,"end_line":19}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/svggen/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":24513,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/svggen/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":3111,"date":"2019-10-25","sha1":"cb642fc95ead8ce9bc706cfe31e69d2f34c8db4a","md5":"c1413726b36dd027adc994ae28a64277","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/svggen/resources/vangogh.jpg","type":"file","name":"vangogh.jpg","base_name":"vangogh","extension":".jpg","size":11478,"date":"2019-10-25","sha1":"8936e4d4e7381b5b7dba05833a144e39115be14b","md5":"9bccf332747257be6cc7a1503456013a","mime_type":"image/jpeg","file_type":"JPEG image data, JFIF standard 1.02, resolution (DPI), density 72x72, segment length 16, baseline, precision 8, 50x63, frames 3, comment: \"File written by Adobe Photoshop\\250 5.2\", baseline, precision 8, 50x63, frames 3, baseline, precision 8, 50x63, frames 3","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/svggen/resources/vangogh.png","type":"file","name":"vangogh.png","base_name":"vangogh","extension":".png","size":9924,"date":"2019-10-25","sha1":"ea86354f7331565da2570f872ff71cb638db89d0","md5":"fafbf8a91eeeee8c2d70902374370577","mime_type":"image/png","file_type":"PNG image data, 50 x 63, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/swing","type":"directory","name":"swing","base_name":"swing","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":1,"size_count":3665,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/swing/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":2025,"date":"2019-10-25","sha1":"063d5e6882069bbcc8e7f526b54c0ea17edd233b","md5":"591cc636bd0727ac87dc793e48101ca0","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":19,"end_line":19}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/swing/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1640,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/swing/resources/TestMessages.properties","type":"file","name":"TestMessages.properties","base_name":"TestMessages","extension":".properties","size":1640,"date":"2019-10-25","sha1":"ee3894dbdde941e926e7665d255c12defcc48f63","md5":"0e17567c758de0f9df04740345d4f105","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test","type":"directory","name":"test","base_name":"test","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":29,"dirs_count":7,"size_count":120886,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/beSuite.xml","type":"file","name":"beSuite.xml","base_name":"beSuite","extension":".xml","size":13043,"date":"2019-10-25","sha1":"037427736d9e6c26991a6cda19780e82d3c0fb4e","md5":"704c6163367d18e7cd7b932c63fbce63","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/interactiveSamples.xml","type":"file","name":"interactiveSamples.xml","base_name":"interactiveSamples","extension":".xml","size":3250,"date":"2019-10-25","sha1":"543efb0f7b8e5c1dad781eda76d6e72a5de3a33f","md5":"a328a5dace4b188746c25474b9e480ba","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/regard.xml","type":"file","name":"regard.xml","base_name":"regard","extension":".xml","size":4562,"date":"2019-10-25","sha1":"e5e93f3c2b580f103e5e4b46d3ec225c57db0e73","md5":"e1a8a06e11617fe2632d968b287ea6db","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/regardManual.xml","type":"file","name":"regardManual.xml","base_name":"regardManual","extension":".xml","size":2405,"date":"2019-10-25","sha1":"8b32d31dfb676735c067b87808542c8d3e77e8de","md5":"a293ea42a85fb666ec1a58d7165534b9","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":24,"end_line":25}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":24,"end_line":24}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/samplesRendering.xml","type":"file","name":"samplesRendering.xml","base_name":"samplesRendering","extension":".xml","size":25856,"date":"2019-10-25","sha1":"a6fd9f145613a3be9f8823599e3980a006edb005","md5":"6da556564e45a217d9684326746b5539","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":5076,"date":"2019-10-25","sha1":"bfd36ef87fe115a1294e8471deaed10de11a63f6","md5":"b065830422f7e2224ed3a43a502112b7","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":19,"end_line":19}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":5271,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":5271,"date":"2019-10-25","sha1":"fb2129f1aad66077963700b846139b0d323332ed","md5":"3f76c88ca7878dfcf3b5be0edaaf3051","mime_type":"text/x-c++","file_type":"C++ source, ASCII text","programming_language":"TypeScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg","type":"directory","name":"svg","base_name":"svg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":3,"size_count":54213,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/bug19363.svg","type":"file","name":"bug19363.svg","base_name":"bug19363","extension":".svg","size":1253,"date":"2019-10-25","sha1":"40e5cd035cc12cfec06cada54e90b530c5c7b19f","md5":"0bbb14cdba42b48f9979817fe53150d7","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":23,"end_line":23}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/error.svg","type":"file","name":"error.svg","base_name":"error","extension":".svg","size":2154,"date":"2019-10-25","sha1":"325b9dcb19848c7f2b77b94883a116960d2ae331","md5":"d9d32bb41953d800515c5138182b3e1a","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/test","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/errorAndEntries.svg","type":"file","name":"errorAndEntries.svg","base_name":"errorAndEntries","extension":".svg","size":2832,"date":"2019-10-25","sha1":"0b3b19b3bbd74ff5fc7a2a914f039a2457dff933","md5":"0b878865f9808fece71e9b0a614b4fa4","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":28,"end_line":29}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33},{"url":"http://xml.apache.org/batik/test","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/getCharacterPosition.js","type":"file","name":"getCharacterPosition.js","base_name":"getCharacterPosition","extension":".js","size":4366,"date":"2019-10-25","sha1":"eda3622b0c134c9148f6dd1bb802f95ce457f094","md5":"b1de67b548d7a0e056c576dd829ddecf","mime_type":"text/plain","file_type":"ASCII text","programming_language":"JavaScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":104,"end_line":104}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/getCharacterRotation.js","type":"file","name":"getCharacterRotation.js","base_name":"getCharacterRotation","extension":".js","size":3643,"date":"2019-10-25","sha1":"db44f1a51ac017b0b177e4a024d9871a4fc9476f","md5":"486b85ad4b2720f5adb137167e5c6ef8","mime_type":"text/plain","file_type":"ASCII text","programming_language":"JavaScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/1999/xlink","start_line":105,"end_line":105}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/getComputedTextLength.js","type":"file","name":"getComputedTextLength.js","base_name":"getComputedTextLength","extension":".js","size":2694,"date":"2019-10-25","sha1":"5ff36fea73f43afcaad03a367ae9aeb9060568e2","md5":"2153141ad8f469b96dbe2f6763eeeff1","mime_type":"text/plain","file_type":"ASCII text","programming_language":"JavaScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/getExtentOfChar.js","type":"file","name":"getExtentOfChar.js","base_name":"getExtentOfChar","extension":".js","size":2689,"date":"2019-10-25","sha1":"c93a5f8c76ae6a005fe2a01dd1fa37aa3d8a97ff","md5":"0b496d6d4102f7c9d83bdd6df729a2b9","mime_type":"text/plain","file_type":"ASCII text","programming_language":"JavaScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/HTMLReport.xsl","type":"file","name":"HTMLReport.xsl","base_name":"HTMLReport","extension":".xsl","size":10525,"date":"2019-10-25","sha1":"16f45c6052e1a40ea7cff7aab557e60ebed69db3","md5":"93f95463baa1790f5ffff76f730f8cc0","mime_type":"application/xml","file_type":"XML document text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.w3.org/2000/xlink/namespace/","start_line":24,"end_line":24}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/invalidTestResultElementsNumber.svg","type":"file","name":"invalidTestResultElementsNumber.svg","base_name":"invalidTestResultElementsNumber","extension":".svg","size":2180,"date":"2019-10-25","sha1":"61be546b6110bebfc7ba00a4e14fb534ba6fda67","md5":"1616596d1dc68dacaf0c054feaffcfd3","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/test","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/missingOrEmptyErrorCode.svg","type":"file","name":"missingOrEmptyErrorCode.svg","base_name":"missingOrEmptyErrorCode","extension":".svg","size":2209,"date":"2019-10-25","sha1":"f8f68eb91133b9cbc35d8e0bb476a1dce01a4b66","md5":"a698fd408b9db510bab6cf4cb1cc9a4d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":28,"end_line":29}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33},{"url":"http://xml.apache.org/batik/test","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/processingError.svg","type":"file","name":"processingError.svg","base_name":"processingError","extension":".svg","size":1963,"date":"2019-10-25","sha1":"112570e67a18e8c4509d07f1d6262838eb2584ab","md5":"80678f05c5c21af3188470338812cb2d","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":28,"end_line":29}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":28,"end_line":28}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":33,"end_line":33},{"url":"http://xml.apache.org/batik/test","start_line":34,"end_line":34}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/success.svg","type":"file","name":"success.svg","base_name":"success","extension":".svg","size":2110,"date":"2019-10-25","sha1":"81c1175afd3ba7bb14b28265b2318b8fb8ffe198","md5":"7b3f4fa797a74194ffb0a39bb7a1b8d5","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/test","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/unexpectedResultValue.svg","type":"file","name":"unexpectedResultValue.svg","base_name":"unexpectedResultValue","extension":".svg","size":2225,"date":"2019-10-25","sha1":"1b0f50e9f8edc6a751e1e2f59b0955bab5615ccc","md5":"358e2d060a00a97b46a1b88f0990b712","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":27,"end_line":28}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":27,"end_line":27}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":32,"end_line":32},{"url":"http://xml.apache.org/batik/test","start_line":33,"end_line":33}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":2,"size_count":13370,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/resources/Configuration.properties","type":"file","name":"Configuration.properties","base_name":"Configuration","extension":".properties","size":1244,"date":"2019-10-25","sha1":"6bbb5dc60d0db82b5b59db49137ea0111740c540","md5":"0403196f532c3ba5eeb46c8a6ce34c8b","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":2923,"date":"2019-10-25","sha1":"0ee1c18384f5acdc1b71438092602138f898f83a","md5":"4fdcd2364bffc594c9e635670b11a61c","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/resources/images","type":"directory","name":"images","base_name":"images","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":6473,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/resources/images/background.png","type":"file","name":"background.png","base_name":"background","extension":".png","size":5987,"date":"2019-10-25","sha1":"da8f2e264f4144925a2ee874268e7bb7eb0ca883","md5":"38c52c067853a400dcc61dfb6029d92d","mime_type":"image/png","file_type":"PNG image data, 60 x 240, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/resources/images/deco.png","type":"file","name":"deco.png","base_name":"deco","extension":".png","size":486,"date":"2019-10-25","sha1":"495d58768bf8eeda0a1e095517f40146e0673b20","md5":"7b12a5a31ba0c2a638ce342910ecbd54","mime_type":"image/png","file_type":"PNG image data, 16 x 16, 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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/resources/style","type":"directory","name":"style","base_name":"style","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":2730,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/svg/resources/style/style.css","type":"file","name":"style.css","base_name":"style","extension":".css","size":2730,"date":"2019-10-25","sha1":"469e65361095c006af42d732ec663873bb3cb1aa","md5":"69a525b78570685fdc3bf40b95ba4f35","mime_type":"text/plain","file_type":"ASCII text","programming_language":"CSS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/xml","type":"directory","name":"xml","base_name":"xml","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":1,"size_count":7210,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/xml/dummyTestRun.xml","type":"file","name":"dummyTestRun.xml","base_name":"dummyTestRun","extension":".xml","size":1605,"date":"2019-10-25","sha1":"888d73c8d8a1db4f62bd40eef9da3f8c0ed4e6e6","md5":"8a8ef221023b3518fe60825ed1c08ccc","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@eng.sun.com","start_line":23,"end_line":24}],"packages":[],"emails":[{"email":"vincent.hardy@eng.sun.com","start_line":23,"end_line":23}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/xml/testSuiteA.xml","type":"file","name":"testSuiteA.xml","base_name":"testSuiteA","extension":".xml","size":1629,"date":"2019-10-25","sha1":"c6495c5e25b57726d3844549459c9fc988ef71df","md5":"e099c280f5f58ceb1e54d05a3f95ccc1","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/xml/testSuiteB.xml","type":"file","name":"testSuiteB.xml","base_name":"testSuiteB","extension":".xml","size":1488,"date":"2019-10-25","sha1":"9ab26dd4601c903cc4b2a810256e0a7a1dd92290","md5":"36344ca8c6916738250a384221bcc8dc","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":19,"end_line":19}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/xml/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":2488,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/test/xml/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":2488,"date":"2019-10-25","sha1":"67ca387a2229c9daf05e6d29fb8ed1fc41ff9220","md5":"5b62e577e6055c5ac567487e0342f90f","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/transcoder","type":"directory","name":"transcoder","base_name":"transcoder","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":4,"size_count":67747,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/transcoder/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":2079,"date":"2019-10-25","sha1":"dde0a75154d34c67203f4aa355f3b0b089e6d52f","md5":"7df963f97cadefc88307d9fc9776348c","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"vincent.hardy@sun.com","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"vincent.hardy@sun.com","start_line":19,"end_line":19}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/transcoder/image","type":"directory","name":"image","base_name":"image","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":1,"size_count":63644,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/transcoder/image/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":29047,"date":"2019-10-25","sha1":"722cfffa6cdfc0032c1baaef01e790653f5bd12d","md5":"a1803eac50906b71ebbce6510a227fe0","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tkormann@ilog.fr","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"tkormann@ilog.fr","start_line":19,"end_line":19}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/transcoder/image/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":34597,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/transcoder/image/resources/butterfly.svg","type":"file","name":"butterfly.svg","base_name":"butterfly","extension":".svg","size":32000,"date":"2019-10-25","sha1":"b9054dc457ba5dc1904aba1caf283b3407cd33bf","md5":"93af4d02025b2dfd918964b7d06d65fa","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":7,"end_line":20,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":14,"end_line":14},{"url":"http://www.w3.org/1999/xlink","start_line":23,"end_line":23}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/transcoder/image/resources/language.svg","type":"file","name":"language.svg","base_name":"language","extension":".svg","size":1393,"date":"2019-10-25","sha1":"06af51fe6f6a8d09c09e13cf1e8f58b80077a5d5","md5":"fcd5f9e153e5d38c81a5271179c63284","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":6,"end_line":19,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":13,"end_line":13},{"url":"http://www.w3.org/1999/xlink","start_line":22,"end_line":22}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/transcoder/image/resources/px2mm.svg","type":"file","name":"px2mm.svg","base_name":"px2mm","extension":".svg","size":1204,"date":"2019-10-25","sha1":"db0f139250660f8081c961838ff920a368189b58","md5":"9905ff05f62bf835253614fe2cff0892","mime_type":"image/svg+xml","file_type":"SVG Scalable Vector Graphics image","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":true,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":5,"end_line":18,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":12,"end_line":12},{"url":"http://www.w3.org/1999/xlink","start_line":21,"end_line":21}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/transcoder/wmf","type":"directory","name":"wmf","base_name":"wmf","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":1,"size_count":2024,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/transcoder/wmf/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":2024,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/transcoder/wmf/resources/Messages.properties","type":"file","name":"Messages.properties","base_name":"Messages","extension":".properties","size":2024,"date":"2019-10-25","sha1":"77a50ae4323369bdbced98d4fa66f095189398e1","md5":"651e055804709c1613d7757e1cd0951f","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/util","type":"directory","name":"util","base_name":"util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":1,"size_count":41494,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/util/regBase64.xml","type":"file","name":"regBase64.xml","base_name":"regBase64","extension":".xml","size":7980,"date":"2019-10-25","sha1":"7111707f80e9a665a7a5d7c2145405b7f5140178","md5":"f88be9f67cbce74a079f594ff01a2f1a","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/util/regParsedURL.xml","type":"file","name":"regParsedURL.xml","base_name":"regParsedURL","extension":".xml","size":8803,"date":"2019-10-25","sha1":"3fd40f15f8e573add350f519bd881828d9b10651","md5":"fc5ba2b0638201f9e11ea1a07bae1e35","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":20,"end_line":21}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10},{"url":"http://www.com:1234/home/deweese/.cshrc#abcd","start_line":43,"end_line":43},{"url":"http://xml.apache.org/","start_line":49,"end_line":49},{"url":"http://xml.apache.org/~deweese","start_line":51,"end_line":51},{"url":"http://www.com:1234/home/deweese/xyz.html#efgh","start_line":66,"end_line":66},{"url":"http://www.com:1234/xyz.svg#ijkl","start_line":75,"end_line":75},{"url":"http://xml.apache.org/batik/","start_line":88,"end_line":88},{"url":"http://jakarta.apache.org/ant/","start_line":90,"end_line":90},{"url":"http://xml.apache.org/batik/#test","start_line":95,"end_line":95},{"url":"http://xml.apache.org/fop/","start_line":110,"end_line":110}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/util/unitTesting.xml","type":"file","name":"unitTesting.xml","base_name":"unitTesting","extension":".xml","size":22809,"date":"2019-10-25","sha1":"b5253f6290a0ab4eba87b99d6da4b65bd1749814","md5":"1ac8f6b1d4bb44b9430fb25c311f5d14","mime_type":"text/plain","file_type":"exported SGML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":2,"end_line":15,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"deweese@apache.org","start_line":19,"end_line":21},{"value":"vincent.hardy@sun.com","start_line":19,"end_line":21}],"packages":[],"emails":[{"email":"deweese@apache.org","start_line":19,"end_line":19},{"email":"vincent.hardy@sun.com","start_line":20,"end_line":20}],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":9,"end_line":9},{"url":"http://www.com:1234/home/deweese/.cshrc#abcd","start_line":177,"end_line":177},{"url":"http://xml.apache.org/","start_line":183,"end_line":183},{"url":"http://xml.apache.org/~deweese","start_line":185,"end_line":185},{"url":"http://www.com:1234/home/deweese/xyz.html#efgh","start_line":200,"end_line":200},{"url":"http://www.com:1234/xyz.svg#ijkl","start_line":209,"end_line":209},{"url":"http://xml.apache.org/batik/","start_line":222,"end_line":222},{"url":"http://jakarta.apache.org/ant/","start_line":224,"end_line":224},{"url":"http://xml.apache.org/batik/#test","start_line":229,"end_line":229},{"url":"http://xml.apache.org/fop/","start_line":244,"end_line":244}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/util/resources","type":"directory","name":"resources","base_name":"resources","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1902,"scan_errors":[]},{"path":"batik-src-1.12.tar.gz-extract/batik-1.12/test-resources/org/apache/batik/util/resources/TestMessages.properties","type":"file","name":"TestMessages.properties","base_name":"TestMessages","extension":".properties","size":1902,"date":"2019-10-25","sha1":"2e0ee2cd8cc638e3ff2fe20ae47fee83f15c31a8","md5":"675158b0c300266d1be966caae8f8624","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":16,"matched_rule":{"identifier":"apache-2.0_12.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":119,"matched_length":119,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]}]} diff --git a/samples/old-e2fsprogs-1.45.6-clipeu.json b/samples/old-e2fsprogs-1.45.6-clipeu.json deleted file mode 100644 index a7b2f543..00000000 --- a/samples/old-e2fsprogs-1.45.6-clipeu.json +++ /dev/null @@ -1 +0,0 @@ -{"headers":[{"tool_name":"scancode-toolkit","tool_version":"3.1.2","options":{"input":["e2fsprogs-1.45.6.tar.gz-extract"],"--copyright":true,"--csv":"e2fsprogs-1.45.6-clipeu.csv","--email":true,"--info":true,"--json":"e2fsprogs-1.45.6-clipeu.json","--license":true,"--package":true,"--processes":"2","--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":"2020-03-24T011502.090647","end_timestamp":"2020-03-24T012711.649064","duration":729.5584170818329,"message":null,"errors":[],"extra_data":{"files_count":2187}}],"files":[{"path":"e2fsprogs-1.45.6.tar.gz-extract","type":"directory","name":"e2fsprogs-1.45.6.tar.gz-extract","base_name":"e2fsprogs-1.45.6.tar.gz-extract","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2187,"dirs_count":415,"size_count":39405927,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6","type":"directory","name":"e2fsprogs-1.45.6","base_name":"e2fsprogs-1.45.6","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2187,"dirs_count":414,"size_count":39405927,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/.missing-copyright","type":"file","name":".missing-copyright","base_name":".missing-copyright","extension":"","size":106,"date":"2020-03-21","sha1":"b6614a5561563eca39d3ad75f26945199adb73d8","md5":"680264eeb5948ee495d43a5a762861ba","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/.release-checklist","type":"file","name":".release-checklist","base_name":".release-checklist","extension":"","size":449,"date":"2020-03-21","sha1":"9340368deeea82e2f225bad72c91fefdaa059823","md5":"71666d127dc30696b6cc57e628c54397","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ABOUT-NLS","type":"file","name":"ABOUT-NLS","base_name":"ABOUT-NLS","extension":"","size":24687,"date":"2020-03-21","sha1":"d8073b7ae099b9b16e177352b71acc013d85a9ac","md5":"e230139e0e73808bd6c3bdccffab0896","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,"licenses":[{"key":"lgpl-2.0-plus","score":99.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":422,"end_line":426,"matched_rule":{"identifier":"lgpl-2.0-plus_216.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":52,"matched_length":52,"match_coverage":100.0,"rule_relevance":99.0}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"sv-request@li.org","start_line":155,"end_line":155},{"email":"translation@iro.umontreal.ca","start_line":163,"end_line":163}],"urls":[{"url":"http://www.iro.umontreal.ca/contrib/po/HTML","start_line":148,"end_line":148},{"url":"http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html","start_line":415,"end_line":415}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/acinclude.m4","type":"file","name":"acinclude.m4","base_name":"acinclude","extension":".m4","size":6620,"date":"2020-03-21","sha1":"92a5a557a14b58d2e30391b8148894d61c29217f","md5":"642640de7c792013d3649b40043e93bb","mime_type":"text/x-m4","file_type":"M4 macro processor script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"gpl-1.0-plus","score":100.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":18,"matched_rule":{"identifier":"gpl-1.0-plus_with_autoconf-macro-exception_2.RULE","license_expression":"gpl-1.0-plus WITH autoconf-macro-exception","licenses":["gpl-1.0-plus","autoconf-macro-exception"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":136,"matched_length":136,"match_coverage":100.0,"rule_relevance":100}},{"key":"autoconf-macro-exception","score":100.0,"name":"Autoconf macro exception","short_name":"Autoconf macro exception","category":"Copyleft Limited","is_exception":true,"owner":"Free Software Foundation (FSF)","homepage_url":"https://www.gnu.org/software/autoconf-archive/","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:autoconf-macro-exception","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":18,"matched_rule":{"identifier":"gpl-1.0-plus_with_autoconf-macro-exception_2.RULE","license_expression":"gpl-1.0-plus WITH autoconf-macro-exception","licenses":["gpl-1.0-plus","autoconf-macro-exception"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":136,"matched_length":136,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-ap","score":79.41,"name":"FSF All Permissive License","short_name":"FSF All Permissive License","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-ap","spdx_license_key":"FSFAP","spdx_url":"https://spdx.org/licenses/FSFAP","start_line":97,"end_line":103,"matched_rule":{"identifier":"fsf-ap_2.RULE","license_expression":"fsf-ap","licenses":["fsf-ap"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":27,"matched_length":27,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-ap","score":65.38,"name":"FSF All Permissive License","short_name":"FSF All Permissive License","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-ap","spdx_license_key":"FSFAP","spdx_url":"https://spdx.org/licenses/FSFAP","start_line":155,"end_line":156,"matched_rule":{"identifier":"fsf-ap_3.RULE","license_expression":"fsf-ap","licenses":["fsf-ap"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":26,"matched_length":17,"match_coverage":65.38,"rule_relevance":100}}],"license_expressions":["gpl-1.0-plus WITH autoconf-macro-exception","fsf-ap","fsf-ap"],"copyrights":[{"value":"Copyright (c) 2008 John Darrington ","start_line":99,"end_line":99},{"value":"Copyright (c) 2018 Nicholas Clark ","start_line":153,"end_line":153}],"holders":[{"value":"John Darrington","start_line":99,"end_line":99},{"value":"Nicholas Clark","start_line":153,"end_line":153}],"authors":[{"value":"Nicholas Clark. Looks","start_line":138,"end_line":140}],"packages":[],"emails":[{"email":"j.darrington@elvis.murdoch.edu.au","start_line":99,"end_line":99},{"email":"nicholas.clark@gmail.com","start_line":153,"end_line":153}],"urls":[{"url":"http://autoconf-archive.cryp.to/ax_tls.html","start_line":1,"end_line":1},{"url":"http://www.nongnu.org/autoconf-archive/check_gnu_make.html","start_line":51,"end_line":51}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/aclocal.m4","type":"file","name":"aclocal.m4","base_name":"aclocal","extension":".m4","size":165320,"date":"2020-03-21","sha1":"2b0915aeed07881ef942938d5cc745382f9555f0","md5":"8d4c1d500ac65167a3e54f99b935a602","mime_type":"text/x-m4","file_type":"M4 macro processor script, UTF-8 Unicode text, with very long lines","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"fsf-unlimited-no-warranty","score":100.0,"name":"FSF Unlimited License No Warranty","short_name":"FSF Unlimited License No Warranty","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.fsf.org/licensing/licenses/","text_url":"http://www.fsf.org/licensing/licenses/","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited-no-warranty","spdx_license_key":null,"spdx_url":"","start_line":5,"end_line":12,"matched_rule":{"identifier":"fsf-unlimited-no-warranty.LICENSE","license_expression":"fsf-unlimited-no-warranty","licenses":["fsf-unlimited-no-warranty"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":63,"matched_length":63,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":17,"end_line":19,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":42,"end_line":44,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":112,"end_line":114,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":98.18,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":247,"end_line":258,"matched_rule":{"identifier":"fsf-unlimited_2.RULE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":108,"matched_length":108,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":650,"end_line":652,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":682,"end_line":684,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":716,"end_line":718,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":985,"end_line":987,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":98.18,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":1073,"end_line":1084,"matched_rule":{"identifier":"fsf-unlimited_2.RULE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":108,"matched_length":108,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":98.18,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":1346,"end_line":1357,"matched_rule":{"identifier":"fsf-unlimited_2.RULE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":108,"matched_length":108,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":1403,"end_line":1405,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":1440,"end_line":1442,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":1483,"end_line":1485,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":1514,"end_line":1516,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"gpl-1.0-plus","score":90.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":1518,"end_line":1525,"matched_rule":{"identifier":"gpl_and_lgpl_2.RULE","license_expression":"gpl-1.0-plus AND lgpl-2.0-plus","licenses":["gpl-1.0-plus","lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":81,"matched_length":81,"match_coverage":100.0,"rule_relevance":90.0}},{"key":"lgpl-2.0-plus","score":90.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":1518,"end_line":1525,"matched_rule":{"identifier":"gpl_and_lgpl_2.RULE","license_expression":"gpl-1.0-plus AND lgpl-2.0-plus","licenses":["gpl-1.0-plus","lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":81,"matched_length":81,"match_coverage":100.0,"rule_relevance":90.0}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":1549,"end_line":1551,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":1669,"end_line":1671,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":2447,"end_line":2449,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":2672,"end_line":2674,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":2715,"end_line":2717,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":98.18,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":2830,"end_line":2841,"matched_rule":{"identifier":"fsf-unlimited_2.RULE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":108,"matched_length":108,"match_coverage":100.0,"rule_relevance":100}},{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":2865,"end_line":2882,"matched_rule":{"identifier":"gpl-2.0-plus_with_autoconf-simple-exception-2.0_12.RULE","license_expression":"gpl-2.0-plus WITH autoconf-simple-exception-2.0","licenses":["gpl-2.0-plus","autoconf-simple-exception-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":155,"matched_length":155,"match_coverage":100.0,"rule_relevance":100}},{"key":"autoconf-simple-exception-2.0","score":100.0,"name":"Autoconf simple exception to GPL-2.0","short_name":"Autoconf simple exception to GPL-2.0","category":"Copyleft Limited","is_exception":true,"owner":"Free Software Foundation (FSF)","homepage_url":"https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:autoconf-simple-exception-2.0","spdx_license_key":null,"spdx_url":"","start_line":2865,"end_line":2882,"matched_rule":{"identifier":"gpl-2.0-plus_with_autoconf-simple-exception-2.0_12.RULE","license_expression":"gpl-2.0-plus WITH autoconf-simple-exception-2.0","licenses":["gpl-2.0-plus","autoconf-simple-exception-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":155,"matched_length":155,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":98.18,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":3077,"end_line":3088,"matched_rule":{"identifier":"fsf-unlimited_2.RULE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":108,"matched_length":108,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":3531,"end_line":3533,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":98.18,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":3580,"end_line":3591,"matched_rule":{"identifier":"fsf-unlimited_2.RULE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":108,"matched_length":108,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":3672,"end_line":3674,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":3752,"end_line":3754,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":3780,"end_line":3782,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":4152,"end_line":4154,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":4183,"end_line":4185,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":4261,"end_line":4263,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":4286,"end_line":4288,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":4319,"end_line":4321,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["fsf-unlimited-no-warranty","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","gpl-1.0-plus AND lgpl-2.0-plus","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","gpl-2.0-plus WITH autoconf-simple-exception-2.0","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited","fsf-unlimited"],"copyrights":[{"value":"Copyright (c) 1996-2013 Free Software Foundation, Inc.","start_line":3,"end_line":3},{"value":"Copyright (c) 2000-2002, 2006, 2008-2013 Free Software Foundation, Inc.","start_line":16,"end_line":19},{"value":"Copyright 2012-2013 Free Software Foundation, Inc.","start_line":41,"end_line":44},{"value":"Copyright (c) 2006, 2009-2013 Free Software Foundation, Inc.","start_line":111,"end_line":114},{"value":"Copyright (c) 1995-2013 Free Software Foundation, Inc.","start_line":246,"end_line":249},{"value":"Copyright (c) 2000-2002, 2004, 2008, 2010-2013 Free Software Foundation, Inc.","start_line":648,"end_line":650},{"value":"Copyright (c) 2000-2002, 2004, 2008, 2010-2013 Free Software Foundation, Inc.","start_line":680,"end_line":682},{"value":"Copyright (c) 2000-2002, 2007-2013 Free Software Foundation, Inc.","start_line":715,"end_line":718},{"value":"Copyright (c) 2002, 2007-2008, 2010-2013 Free Software Foundation, Inc.","start_line":984,"end_line":987},{"value":"Copyright (c) 1995-2013 Free Software Foundation, Inc.","start_line":1072,"end_line":1075},{"value":"Copyright (c) 2004-2013 Free Software Foundation, Inc.","start_line":1345,"end_line":1348},{"value":"Copyright (c) 2002-2005, 2008-2013 Free Software Foundation, Inc.","start_line":1402,"end_line":1405},{"value":"Copyright (c) 1997-2002, 2006, 2008-2013 Free Software Foundation, Inc.","start_line":1439,"end_line":1442},{"value":"Copyright (c) 1997-2004, 2006, 2008-2013 Free Software Foundation, Inc.","start_line":1482,"end_line":1485},{"value":"Copyright (c) 1995-2002, 2004-2005, 2008-2013 Free Software Foundation, Inc.","start_line":1512,"end_line":1514},{"value":"Copyright (c) 1996-2003, 2009-2013 Free Software Foundation, Inc.","start_line":1548,"end_line":1551},{"value":"Copyright (c) 2001-2013 Free Software Foundation, Inc.","start_line":1668,"end_line":1671},{"value":"Copyright (c) 2001-2005, 2008-2013 Free Software Foundation, Inc.","start_line":2446,"end_line":2449},{"value":"Copyright (c) 2005-2013 Free Software Foundation, Inc.","start_line":2671,"end_line":2674},{"value":"Copyright (c) 1999-2007, 2009-2013 Free Software Foundation, Inc.","start_line":2714,"end_line":2717},{"value":"Copyright (c) 1995-2003, 2005-2006, 2008-2013 Free Software Foundation, Inc.","start_line":2828,"end_line":2830},{"value":"Copyright (c) 2004 Scott James Remnant ","start_line":2863,"end_line":2863},{"value":"Copyright (c) 1995-2013 Free Software Foundation, Inc.","start_line":3076,"end_line":3079},{"value":"Copyright (c) 2003, 2007, 2009-2013 Free Software Foundation, Inc.","start_line":3530,"end_line":3533},{"value":"Copyright (c) 1996-2003, 2005, 2008-2013 Free Software Foundation, Inc.","start_line":3579,"end_line":3582},{"value":"Copyright (c) 2003, 2005-2006, 2008-2013 Free Software Foundation, Inc.","start_line":3671,"end_line":3674},{"value":"Copyright (c) 1997-2004, 2006, 2008-2013 Free Software Foundation, Inc.","start_line":3751,"end_line":3754},{"value":"Copyright (c) 2005-2013 Free Software Foundation, Inc.","start_line":3779,"end_line":3782},{"value":"Copyright (c) 1997-2004, 2007-2013 Free Software Foundation, Inc.","start_line":4151,"end_line":4154},{"value":"Copyright (c) 2005, 2008, 2010-2013 Free Software Foundation, Inc.","start_line":4182,"end_line":4185},{"value":"Copyright (c) 2002-2003, 2008-2013 Free Software Foundation, Inc.","start_line":4260,"end_line":4263},{"value":"Copyright (c) 2003, 2007-2013 Free Software Foundation, Inc.","start_line":4285,"end_line":4288},{"value":"Copyright (c) 2003-2004, 2008-2013 Free Software Foundation, Inc.","start_line":4318,"end_line":4321}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":3,"end_line":3},{"value":"Free Software Foundation, Inc.","start_line":16,"end_line":19},{"value":"Free Software Foundation, Inc.","start_line":41,"end_line":44},{"value":"Free Software Foundation, Inc.","start_line":111,"end_line":114},{"value":"Free Software Foundation, Inc.","start_line":246,"end_line":249},{"value":"Free Software Foundation, Inc.","start_line":648,"end_line":650},{"value":"Free Software Foundation, Inc.","start_line":680,"end_line":682},{"value":"Free Software Foundation, Inc.","start_line":715,"end_line":718},{"value":"Free Software Foundation, Inc.","start_line":984,"end_line":987},{"value":"Free Software Foundation, Inc.","start_line":1072,"end_line":1075},{"value":"Free Software Foundation, Inc.","start_line":1345,"end_line":1348},{"value":"Free Software Foundation, Inc.","start_line":1402,"end_line":1405},{"value":"Free Software Foundation, Inc.","start_line":1439,"end_line":1442},{"value":"Free Software Foundation, Inc.","start_line":1482,"end_line":1485},{"value":"Free Software Foundation, Inc.","start_line":1512,"end_line":1514},{"value":"Free Software Foundation, Inc.","start_line":1548,"end_line":1551},{"value":"Free Software Foundation, Inc.","start_line":1668,"end_line":1671},{"value":"Free Software Foundation, Inc.","start_line":2446,"end_line":2449},{"value":"Free Software Foundation, Inc.","start_line":2671,"end_line":2674},{"value":"Free Software Foundation, Inc.","start_line":2714,"end_line":2717},{"value":"Free Software Foundation, Inc.","start_line":2828,"end_line":2830},{"value":"Scott James Remnant","start_line":2863,"end_line":2863},{"value":"Free Software Foundation, Inc.","start_line":3076,"end_line":3079},{"value":"Free Software Foundation, Inc.","start_line":3530,"end_line":3533},{"value":"Free Software Foundation, Inc.","start_line":3579,"end_line":3582},{"value":"Free Software Foundation, Inc.","start_line":3671,"end_line":3674},{"value":"Free Software Foundation, Inc.","start_line":3751,"end_line":3754},{"value":"Free Software Foundation, Inc.","start_line":3779,"end_line":3782},{"value":"Free Software Foundation, Inc.","start_line":4151,"end_line":4154},{"value":"Free Software Foundation, Inc.","start_line":4182,"end_line":4185},{"value":"Free Software Foundation, Inc.","start_line":4260,"end_line":4263},{"value":"Free Software Foundation, Inc.","start_line":4285,"end_line":4288},{"value":"Free Software Foundation, Inc.","start_line":4318,"end_line":4321}],"authors":[{"value":"Paul Eggert","start_line":116,"end_line":116},{"value":"Ulrich Drepper , Bruno Haible ","start_line":260,"end_line":262},{"value":"Ulrich Drepper , Bruno Haible ","start_line":1086,"end_line":1088},{"value":"Ulrich Drepper ","start_line":1527,"end_line":1528},{"value":"Ulrich Drepper , Bruno Haible ","start_line":2843,"end_line":2845},{"value":"Ulrich Drepper , Bruno Haible ","start_line":3090,"end_line":3092},{"value":"Ulrich Drepper ","start_line":3593,"end_line":3594}],"packages":[],"emails":[{"email":"drepper@cygnus.com","start_line":261,"end_line":261},{"email":"haible@clisp.cons.org","start_line":262,"end_line":262},{"email":"scott@netsplit.com","start_line":2863,"end_line":2863}],"urls":[{"url":"http://lists.gnu.org/archive/html/bug-texinfo/2013-02/msg00030.html","start_line":52,"end_line":52},{"url":"http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html","start_line":62,"end_line":62},{"url":"http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113","start_line":96,"end_line":96},{"url":"http://docs.hp.com/en/1896/pthreads.html","start_line":1212,"end_line":1212},{"url":"http://docs.sun.com/app/docs/doc/816-5138/dev-env?l=en&a=view","start_line":2626,"end_line":2626},{"url":"http://pkg-config.freedesktop.org/","start_line":3010,"end_line":3010},{"url":"http://cygwin.com/ml/cygwin/2009-08/msg00283.html","start_line":3846,"end_line":3846}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/Android.bp","type":"file","name":"Android.bp","base_name":"Android","extension":".bp","size":564,"date":"2020-03-21","sha1":"29c1a646d4a261ee31ab3eb2274fe19529155596","md5":"0d40d0606107e9df67b5a77bd7405746","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2017 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/CleanSpec.mk","type":"file","name":"CleanSpec.mk","base_name":"CleanSpec","extension":".mk","size":2386,"date":"2020-03-21","sha1":"d334f91e9e80a661b0af84afea1f29c9b62d26ad","md5":"2df24ffa1fa73ce45160bcd8f5a2b614","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":3,"end_line":13,"matched_rule":{"identifier":"apache-2.0_7.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":85,"matched_length":85,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[{"value":"Copyright (c) 2007 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":7,"end_line":7}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/configure","type":"file","name":"configure","base_name":"configure","extension":"","size":463708,"date":"2020-03-21","sha1":"f72d2e2f9c32bd6c697d508c9f96917607fc2f49","md5":"c7f8de62cf8967025b870dea36a750c7","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"fsf-free","score":100.0,"name":"Free Software Foundation - Free Software License","short_name":"FSF Free Software License","category":"Public Domain","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.fsf.org/licensing/licenses/","text_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-free","spdx_license_key":"FSFUL","spdx_url":"https://spdx.org/licenses/FSFUL","start_line":9,"end_line":10,"matched_rule":{"identifier":"fsf-free.LICENSE","license_expression":"fsf-free","licenses":["fsf-free"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":18,"matched_length":18,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-free","score":100.0,"name":"Free Software Foundation - Free Software License","short_name":"FSF Free Software License","category":"Public Domain","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.fsf.org/licensing/licenses/","text_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-free","spdx_license_key":"FSFUL","spdx_url":"https://spdx.org/licenses/FSFUL","start_line":1724,"end_line":1725,"matched_rule":{"identifier":"fsf-free.LICENSE","license_expression":"fsf-free","licenses":["fsf-free"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":18,"matched_length":18,"match_coverage":100.0,"rule_relevance":100}},{"key":"fsf-free","score":100.0,"name":"Free Software Foundation - Free Software License","short_name":"FSF Free Software License","category":"Public Domain","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.fsf.org/licensing/licenses/","text_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-free","spdx_license_key":"FSFUL","spdx_url":"https://spdx.org/licenses/FSFUL","start_line":15229,"end_line":15230,"matched_rule":{"identifier":"fsf-free.RULE","license_expression":"fsf-free","licenses":["fsf-free"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["fsf-free","fsf-free","fsf-free"],"copyrights":[{"value":"Copyright (c) 1992-1996, 1998-2012 Free Software Foundation, Inc.","start_line":6,"end_line":6},{"value":"Copyright (c) 2012 Free Software Foundation, Inc.","start_line":1723,"end_line":1725},{"value":"Copyright (c) 2012 Free Software Foundation, Inc.","start_line":15228,"end_line":15230}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":6,"end_line":6},{"value":"Free Software Foundation, Inc.","start_line":1723,"end_line":1725},{"value":"Free Software Foundation, Inc.","start_line":15228,"end_line":15230}],"authors":[],"packages":[{"type":"autotools","namespace":null,"name":"e2fsprogs-1.45.6","version":null,"qualifiers":{},"subpath":null,"primary_language":null,"description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":"pkg:autotools/e2fsprogs-1.45.6","repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[{"email":"bug-autoconf@gnu.org","start_line":267,"end_line":267}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/configure.ac","type":"file","name":"configure.ac","base_name":"configure","extension":".ac","size":44720,"date":"2020-03-21","sha1":"1ef9189a9f8d5217cf1ddb2aa92120b3823b4fe5","md5":"ae616a3205e0750a1ea2bc6b4c558a00","mime_type":"text/x-m4","file_type":"M4 macro processor script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[{"type":"autotools","namespace":null,"name":"e2fsprogs-1.45.6","version":null,"qualifiers":{},"subpath":null,"primary_language":null,"description":null,"release_date":null,"parties":[],"keywords":[],"homepage_url":null,"download_url":null,"size":null,"sha1":null,"md5":null,"sha256":null,"sha512":null,"bug_tracking_url":null,"code_view_url":null,"vcs_url":null,"copyright":null,"license_expression":null,"declared_license":null,"notice_text":null,"root_path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6","dependencies":[],"contains_source_code":null,"source_packages":[],"purl":"pkg:autotools/e2fsprogs-1.45.6","repository_homepage_url":null,"repository_download_url":null,"api_data_url":null}],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/depfix.sed","type":"file","name":"depfix.sed","base_name":"depfix","extension":".sed","size":463,"date":"2020-03-21","sha1":"191c920cbbb517003d224fe6c3cbd19f29cba54a","md5":"6c1c098e6d334e1ffa9a44e2448c1b4d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsprogs.lsm","type":"file","name":"e2fsprogs.lsm","base_name":"e2fsprogs","extension":".lsm","size":723,"date":"2020-03-21","sha1":"574ea4be490ca1202aa3dab08ed0fcdc6c8ca9a2","md5":"8b2bd0b335774970567a2d46b5e39c25","mime_type":"text/plain","file_type":"Linux Software Map entry, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"gpl-2.0","score":100.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":15,"end_line":15,"matched_rule":{"identifier":"gpl-2.0_620.RULE","license_expression":"gpl-2.0","licenses":["gpl-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":false,"is_license_tag":true,"matcher":"2-aho","rule_length":2,"matched_length":2,"match_coverage":100.0,"rule_relevance":100.0}},{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":15,"end_line":15,"matched_rule":{"identifier":"lgpl-2.0_37.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":false,"is_license_tag":true,"matcher":"2-aho","rule_length":2,"matched_length":2,"match_coverage":100.0,"rule_relevance":100.0}}],"license_expressions":["gpl-2.0","lgpl-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"tytso@mit.edu","start_line":8,"end_line":10}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":8,"end_line":8}],"urls":[{"url":"http://ftp.kernel.org/","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsprogs.spec","type":"file","name":"e2fsprogs.spec","base_name":"e2fsprogs","extension":".spec","size":6699,"date":"2020-03-21","sha1":"5942495a6254883b1a11af9b5955c9778f571a0e","md5":"28aaa4af106fc2a0a860e69a9390e9e4","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,"licenses":[{"key":"gpl-2.0","score":100.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":10,"end_line":10,"matched_rule":{"identifier":"gpl-2.0_23.RULE","license_expression":"gpl-2.0","licenses":["gpl-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":false,"is_license_tag":true,"matcher":"2-aho","rule_length":2,"matched_length":2,"match_coverage":100.0,"rule_relevance":100.0}},{"key":"gpl-2.0","score":100.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":52,"end_line":52,"matched_rule":{"identifier":"gpl-2.0_23.RULE","license_expression":"gpl-2.0","licenses":["gpl-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":false,"is_license_tag":true,"matcher":"2-aho","rule_length":2,"matched_length":2,"match_coverage":100.0,"rule_relevance":100.0}}],"license_expressions":["gpl-2.0","gpl-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"ftp://download.sourceforge.net/pub/sourceforge/e2fsprogs/e2fsprogs-%25%7Bversion%7D.tar.gz","start_line":12,"end_line":12},{"url":"http://e2fsprogs.sourceforge.net/","start_line":13,"end_line":13}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/INSTALL","type":"file","name":"INSTALL","base_name":"INSTALL","extension":"","size":2375,"date":"2020-03-21","sha1":"3b166b29583fe9b6b4616e9553ab0e32f6310ebb","md5":"d095274d2aa84d7edefb86a0a601f01d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/INSTALL.elfbin","type":"file","name":"INSTALL.elfbin","base_name":"INSTALL","extension":".elfbin","size":2206,"date":"2020-03-21","sha1":"af93d1f423a4f30489338683ffa0828ab673e9c7","md5":"f87b4dabd95c64006fdd2e7e39677b5c","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":4950,"date":"2020-03-21","sha1":"0741e146975541f5324f3c58b88c5b289939270e","md5":"5e10ec6fa3e866c6e9fb9ff28d3912df","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/MCONFIG.in","type":"file","name":"MCONFIG.in","base_name":"MCONFIG","extension":".in","size":10133,"date":"2020-03-21","sha1":"925a399b85a9f613684ba253d3a849156876ec00","md5":"20ac04a0e3d55f99f0f956a0f3e8db06","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/NOTICE","type":"file","name":"NOTICE","base_name":"NOTICE","extension":"","size":44585,"date":"2020-03-21","sha1":"e7b0a43ab2f7a589ca3bf497fe86e52b15502355","md5":"d50be0580c0b0a7fbc7a4830bbe6c12b","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,"licenses":[{"key":"gpl-2.0","score":100.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":1,"end_line":9,"matched_rule":{"identifier":"gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_3.RULE","license_expression":"gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert","licenses":["gpl-2.0","lgpl-2.0","bsd-new","mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":101,"matched_length":101,"match_coverage":100.0,"rule_relevance":100}},{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":1,"end_line":9,"matched_rule":{"identifier":"gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_3.RULE","license_expression":"gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert","licenses":["gpl-2.0","lgpl-2.0","bsd-new","mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":101,"matched_length":101,"match_coverage":100.0,"rule_relevance":100}},{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":1,"end_line":9,"matched_rule":{"identifier":"gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_3.RULE","license_expression":"gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert","licenses":["gpl-2.0","lgpl-2.0","bsd-new","mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":101,"matched_length":101,"match_coverage":100.0,"rule_relevance":100}},{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":1,"end_line":9,"matched_rule":{"identifier":"gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_3.RULE","license_expression":"gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert","licenses":["gpl-2.0","lgpl-2.0","bsd-new","mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":101,"matched_length":101,"match_coverage":100.0,"rule_relevance":100}},{"key":"gpl-2.0","score":100.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":26,"end_line":365,"matched_rule":{"identifier":"gpl-2.0_103.RULE","license_expression":"gpl-2.0","licenses":["gpl-2.0"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":2926,"matched_length":2926,"match_coverage":100.0,"rule_relevance":100}},{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":369,"end_line":849,"matched_rule":{"identifier":"lgpl-2.0.LICENSE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":4096,"matched_length":4096,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert","gpl-2.0","lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1989, 1991 Free Software Foundation, Inc.","start_line":29,"end_line":31},{"value":"copyrighted by the Free Software Foundation","start_line":276,"end_line":281},{"value":"Copyright (c) 1991 Free Software Foundation, Inc.","start_line":372,"end_line":374},{"value":"copyrighted by the Free Software Foundation","start_line":775,"end_line":780}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":29,"end_line":31},{"value":"the Free Software Foundation","start_line":276,"end_line":281},{"value":"Free Software Foundation, Inc.","start_line":372,"end_line":374},{"value":"the Free Software Foundation","start_line":775,"end_line":780}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":17,"end_line":17}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":12,"end_line":12}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/README","type":"file","name":"README","base_name":"README","extension":"","size":719,"date":"2020-03-21","sha1":"a011711fcdaedf70582cfa7f3e4aa7d315363597","md5":"785452d3aac0919e4ed376c71ed99f89","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":16,"end_line":16},{"email":"tytso@alum.mit.edu","start_line":16,"end_line":16}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/SHLIBS","type":"file","name":"SHLIBS","base_name":"SHLIBS","extension":"","size":763,"date":"2020-03-21","sha1":"1daf52df49a6f5f2d89cff745a52be675dcd0309","md5":"9355c33cab2a033167e268345046edfa","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/SUBMITTING-PATCHES","type":"file","name":"SUBMITTING-PATCHES","base_name":"SUBMITTING-PATCHES","extension":"","size":1694,"date":"2020-03-21","sha1":"5ad21ed84ca93b035b54b9d017338b33d9c2c24f","md5":"2b4c5dbf996d2fdbfdcd5b81c3148d99","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,"licenses":[{"key":"dco-1.1","score":14.47,"name":"Developer Certificate of Origin 1.1","short_name":"DCO 1.1","category":"Permissive","is_exception":false,"owner":"Linux Foundation","homepage_url":"https://developercertificate.org/","text_url":"https://developercertificate.org/","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:dco-1.1","spdx_license_key":null,"spdx_url":"","start_line":2,"end_line":8,"matched_rule":{"identifier":"dco-1.1_4.RULE","license_expression":"dco-1.1","licenses":["dco-1.1"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":318,"matched_length":46,"match_coverage":14.47,"rule_relevance":100}},{"key":"dco-1.1","score":100.0,"name":"Developer Certificate of Origin 1.1","short_name":"DCO 1.1","category":"Permissive","is_exception":false,"owner":"Linux Foundation","homepage_url":"https://developercertificate.org/","text_url":"https://developercertificate.org/","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:dco-1.1","spdx_license_key":null,"spdx_url":"","start_line":10,"end_line":34,"matched_rule":{"identifier":"dco-1.1_3.RULE","license_expression":"dco-1.1","licenses":["dco-1.1"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":182,"matched_length":182,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["dco-1.1","dco-1.1"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/version.h","type":"file","name":"version.h","base_name":"version","extension":".h","size":358,"date":"2020-03-21","sha1":"4f88c9f3d6946a9ce20f77089ca5f165d2f5b742","md5":"aae98b05761e16a0fde8b7189c677f90","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-2.0","score":61.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":6,"end_line":7,"matched_rule":{"identifier":"gpl-2.0_181_1.RULE","license_expression":"gpl-2.0","licenses":["gpl-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":61}}],"license_expressions":["gpl-2.0"],"copyrights":[{"value":"Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 by Theodore Ts'o","start_line":5,"end_line":7}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":7}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/wordwrap.pl","type":"file","name":"wordwrap.pl","base_name":"wordwrap","extension":".pl","size":681,"date":"2020-03-21","sha1":"89941706d944af7e90a428c149d2bbf90a0f3f0f","md5":"4e07073e33811d3998ebf285f0bd3964","mime_type":"text/x-perl","file_type":"Perl script, ASCII text executable","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/config","type":"directory","name":"config","base_name":"config","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":0,"size_count":434079,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/config/config.guess","type":"file","name":"config.guess","base_name":"config","extension":".guess","size":48441,"date":"2020-03-21","sha1":"eebd67ddeb9453e0513a55e78888622a0ff4a175","md5":"56c8530a22f26cdae7c9b5e946c06429","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"gpl-3.0-plus","score":100.0,"name":"GNU General Public License 3.0 or later","short_name":"GPL 3.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-3.0-standalone.html","text_url":"http://www.gnu.org/licenses/gpl-3.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus","spdx_license_key":"GPL-3.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-3.0-or-later","start_line":7,"end_line":25,"matched_rule":{"identifier":"gpl-3.0-plus_with_autoconf-simple-exception_4.RULE","license_expression":"gpl-3.0-plus WITH autoconf-simple-exception","licenses":["gpl-3.0-plus","autoconf-simple-exception"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":162,"matched_length":162,"match_coverage":100.0,"rule_relevance":100}},{"key":"autoconf-simple-exception","score":100.0,"name":"Autoconf simple exception","short_name":"Autoconf simple exception","category":"Copyleft Limited","is_exception":true,"owner":"Free Software Foundation (FSF)","homepage_url":"https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:autoconf-simple-exception","spdx_license_key":null,"spdx_url":"","start_line":7,"end_line":25,"matched_rule":{"identifier":"gpl-3.0-plus_with_autoconf-simple-exception_4.RULE","license_expression":"gpl-3.0-plus WITH autoconf-simple-exception","licenses":["gpl-3.0-plus","autoconf-simple-exception"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":162,"matched_length":162,"match_coverage":100.0,"rule_relevance":100}},{"key":"free-unknown","score":100.0,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":55,"end_line":56,"matched_rule":{"identifier":"free-unknown_1.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":23,"matched_length":23,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-3.0-plus WITH autoconf-simple-exception","free-unknown"],"copyrights":[{"value":"Copyright 1992-2020 Free Software Foundation, Inc.","start_line":3,"end_line":3},{"value":"Copyright 1992-2020 Free Software Foundation, Inc.","start_line":52,"end_line":53}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":3,"end_line":3},{"value":"Free Software Foundation, Inc.","start_line":52,"end_line":53}],"authors":[{"value":"Per Bothner","start_line":27,"end_line":27},{"value":"Per Bothner","start_line":52,"end_line":53}],"packages":[],"emails":[{"email":"config-patches@gnu.org","start_line":32,"end_line":32},{"email":"ghazi@noc.rutgers.edu","start_line":129,"end_line":129},{"email":"akee@wpdis03.wpafb.af.mil","start_line":372,"end_line":372},{"email":"Richard.M.Bartel@ccMail.Census.GOV","start_line":1260,"end_line":1260},{"email":"hewes@openmarket.com","start_line":1264,"end_line":1264},{"email":"seanf@swdc.stratus.com","start_line":1269,"end_line":1269},{"email":"Paul.Green@stratus.com","start_line":1273,"end_line":1273}],"urls":[{"url":"https://www.gnu.org/licenses/","start_line":18,"end_line":18},{"url":"https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess","start_line":30,"end_line":30},{"url":"https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub","start_line":1631,"end_line":1631}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/config/config.rpath","type":"file","name":"config.rpath","base_name":"config","extension":".rpath","size":18574,"date":"2020-03-21","sha1":"8fdd1cb90e7d9dc6429628c6867400b5ce9283c8","md5":"8fe52bd1d1b88ebd50cb6763daec184c","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"fsf-unlimited","score":100.0,"name":"Free Software Foundation - Unlimited License","short_name":"FSF-Unlimited","category":"Permissive","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:fsf-unlimited","spdx_license_key":"FSFULLR","spdx_url":"https://spdx.org/licenses/FSFULLR","start_line":9,"end_line":11,"matched_rule":{"identifier":"fsf-unlimited.LICENSE","license_expression":"fsf-unlimited","licenses":["fsf-unlimited"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":29,"matched_length":29,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["fsf-unlimited"],"copyrights":[{"value":"Copyright 1996-2014 Free Software Foundation, Inc.","start_line":5,"end_line":7}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":5,"end_line":7}],"authors":[{"value":"Gordon Matzigkeit ","start_line":5,"end_line":7}],"packages":[],"emails":[{"email":"gord@gnu.ai.mit.edu","start_line":7,"end_line":7}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/config/config.sub","type":"file","name":"config.sub","base_name":"config","extension":".sub","size":31609,"date":"2020-03-21","sha1":"159bc91d0244e6da18c4aa4ba70065403831855b","md5":"190c5eaf225abd14513d768efc5073eb","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"gpl-3.0-plus","score":100.0,"name":"GNU General Public License 3.0 or later","short_name":"GPL 3.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-3.0-standalone.html","text_url":"http://www.gnu.org/licenses/gpl-3.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus","spdx_license_key":"GPL-3.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-3.0-or-later","start_line":7,"end_line":25,"matched_rule":{"identifier":"gpl-3.0-plus_with_autoconf-simple-exception_4.RULE","license_expression":"gpl-3.0-plus WITH autoconf-simple-exception","licenses":["gpl-3.0-plus","autoconf-simple-exception"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":162,"matched_length":162,"match_coverage":100.0,"rule_relevance":100}},{"key":"autoconf-simple-exception","score":100.0,"name":"Autoconf simple exception","short_name":"Autoconf simple exception","category":"Copyleft Limited","is_exception":true,"owner":"Free Software Foundation (FSF)","homepage_url":"https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob;f=config.guess;h=a7448442748cc6f98a066d2d1051fad3b043761a;hb=HEAD","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:autoconf-simple-exception","spdx_license_key":null,"spdx_url":"","start_line":7,"end_line":25,"matched_rule":{"identifier":"gpl-3.0-plus_with_autoconf-simple-exception_4.RULE","license_expression":"gpl-3.0-plus WITH autoconf-simple-exception","licenses":["gpl-3.0-plus","autoconf-simple-exception"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":162,"matched_length":162,"match_coverage":100.0,"rule_relevance":100}},{"key":"free-unknown","score":100.0,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":72,"end_line":73,"matched_rule":{"identifier":"free-unknown_1.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":23,"matched_length":23,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-3.0-plus WITH autoconf-simple-exception","free-unknown"],"copyrights":[{"value":"Copyright 1992-2020 Free Software Foundation, Inc.","start_line":3,"end_line":3},{"value":"Copyright 1992-2020 Free Software Foundation, Inc.","start_line":70,"end_line":70}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":3,"end_line":3},{"value":"Free Software Foundation, Inc.","start_line":70,"end_line":70}],"authors":[],"packages":[],"emails":[{"email":"config-patches@gnu.org","start_line":28,"end_line":28}],"urls":[{"url":"https://www.gnu.org/licenses/","start_line":18,"end_line":18},{"url":"https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub","start_line":36,"end_line":36}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/config/install-sh","type":"file","name":"install-sh","base_name":"install-sh","extension":"","size":4772,"date":"2020-03-21","sha1":"ada1c3622f7fda4987bccd8b7c64f8fdfe919818","md5":"9b9a3382dc6798b6cc9db374e5ca6c9e","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/config/ltmain.sh","type":"file","name":"ltmain.sh","base_name":"ltmain","extension":".sh","size":327114,"date":"2020-03-21","sha1":"b8fc0cbd9dbcd7d1c7a49a3d6bcd7078c48134ce","md5":"ef78e07987312c9300b04e886dfdcb2c","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable, with escape sequences","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":10,"end_line":29,"matched_rule":{"identifier":"gpl-2.0-plus_with_libtool-exception-2.0_6.RULE","license_expression":"gpl-2.0-plus WITH libtool-exception-2.0","licenses":["gpl-2.0-plus","libtool-exception-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":170,"matched_length":170,"match_coverage":100.0,"rule_relevance":100}},{"key":"libtool-exception-2.0","score":100.0,"name":"GNU Libtool exception to GPL 2.0","short_name":"GNU Libtool exception to GPL 2.0","category":"Copyleft Limited","is_exception":true,"owner":"Free Software Foundation (FSF)","homepage_url":"http://git.savannah.gnu.org/cgit/libtool.git/tree/m4/libtool.m4","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:libtool-exception-2.0","spdx_license_key":"Libtool-exception","spdx_url":"https://spdx.org/licenses/Libtool-exception","start_line":10,"end_line":29,"matched_rule":{"identifier":"gpl-2.0-plus_with_libtool-exception-2.0_6.RULE","license_expression":"gpl-2.0-plus WITH libtool-exception-2.0","licenses":["gpl-2.0-plus","libtool-exception-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":170,"matched_length":170,"match_coverage":100.0,"rule_relevance":100}},{"key":"gpl-3.0-plus","score":100.0,"name":"GNU General Public License 3.0 or later","short_name":"GPL 3.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-3.0-standalone.html","text_url":"http://www.gnu.org/licenses/gpl-3.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus","spdx_license_key":"GPL-3.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-3.0-or-later","start_line":73,"end_line":92,"matched_rule":{"identifier":"gpl-3.0-plus_with_libtool-exception2.RULE","license_expression":"gpl-3.0-plus WITH libtool-exception-2.0","licenses":["gpl-3.0-plus","libtool-exception-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":170,"matched_length":170,"match_coverage":100.0,"rule_relevance":100}},{"key":"libtool-exception-2.0","score":100.0,"name":"GNU Libtool exception to GPL 2.0","short_name":"GNU Libtool exception to GPL 2.0","category":"Copyleft Limited","is_exception":true,"owner":"Free Software Foundation (FSF)","homepage_url":"http://git.savannah.gnu.org/cgit/libtool.git/tree/m4/libtool.m4","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:libtool-exception-2.0","spdx_license_key":"Libtool-exception","spdx_url":"https://spdx.org/licenses/Libtool-exception","start_line":73,"end_line":92,"matched_rule":{"identifier":"gpl-3.0-plus_with_libtool-exception2.RULE","license_expression":"gpl-3.0-plus WITH libtool-exception-2.0","licenses":["gpl-3.0-plus","libtool-exception-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":170,"matched_length":170,"match_coverage":100.0,"rule_relevance":100}},{"key":"gpl-3.0-plus","score":100.0,"name":"GNU General Public License 3.0 or later","short_name":"GPL 3.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-3.0-standalone.html","text_url":"http://www.gnu.org/licenses/gpl-3.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-3.0-plus","spdx_license_key":"GPL-3.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-3.0-or-later","start_line":1379,"end_line":1393,"matched_rule":{"identifier":"gpl-3.0-plus_41.RULE","license_expression":"gpl-3.0-plus","licenses":["gpl-3.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":125,"matched_length":125,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus WITH libtool-exception-2.0","gpl-3.0-plus WITH libtool-exception-2.0","gpl-3.0-plus"],"copyrights":[{"value":"Copyright (c) 1996-2015 Free Software Foundation, Inc.","start_line":9,"end_line":11},{"value":"Copyright (c) 2004-2015 Free Software Foundation, Inc.","start_line":72,"end_line":74},{"value":"Copyright (c) 2010-2015 Free Software Foundation, Inc.","start_line":1378,"end_line":1380}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":9,"end_line":11},{"value":"Free Software Foundation, Inc.","start_line":72,"end_line":74},{"value":"Free Software Foundation, Inc.","start_line":1378,"end_line":1380}],"authors":[{"value":"Gordon Matzigkeit ","start_line":7,"end_line":7},{"value":"Gary V. Vaughan","start_line":70,"end_line":70},{"value":"Gary V. Vaughan","start_line":1376,"end_line":1376}],"packages":[],"emails":[{"email":"gord@gnu.ai.mit.edu","start_line":7,"end_line":7},{"email":"gary@gnu.org","start_line":94,"end_line":94},{"email":"bug-libtool@gnu.org","start_line":2148,"end_line":2148}],"urls":[{"url":"http://www.gnu.org/licenses/","start_line":29,"end_line":29},{"url":"http://www.gnu.org/s/libtool/","start_line":2149,"end_line":2149},{"url":"http://www.gnu.org/gethelp/","start_line":2150,"end_line":2150},{"url":"http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452","start_line":2511,"end_line":2511},{"url":"http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788","start_line":2512,"end_line":2512}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/config/mkinstalldirs","type":"file","name":"mkinstalldirs","base_name":"mkinstalldirs","extension":"","size":722,"date":"2020-03-21","sha1":"e8066bf9dc4353afffcfc5c2ec1cc9cc757585de","md5":"d69600ffc4dd42fc930f4494b93f97ed","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"public-domain","score":50.0,"name":"Public Domain","short_name":"Public Domain","category":"Public Domain","is_exception":false,"owner":"Unspecified","homepage_url":"http://www.linfo.org/publicdomain.html","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:public-domain","spdx_license_key":null,"spdx_url":"","start_line":5,"end_line":5,"matched_rule":{"identifier":"public-domain_bare_words.RULE","license_expression":"public-domain","licenses":["public-domain"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":2,"matched_length":2,"match_coverage":100.0,"rule_relevance":50.0}}],"license_expressions":["public-domain"],"copyrights":[],"holders":[],"authors":[{"value":"Noah Friedman ","start_line":3,"end_line":5}],"packages":[],"emails":[{"email":"friedman@prep.ai.mit.edu","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/config/parse-types.sh","type":"file","name":"parse-types.sh","base_name":"parse-types","extension":".sh","size":2847,"date":"2020-03-21","sha1":"2edf0bbf76578cde93c1d02c14e101dc8a795e99","md5":"ff9a0bd633ec75383e24a3adb0db3fe0","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib","type":"directory","name":"contrib","base_name":"contrib","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":30,"dirs_count":2,"size_count":141626,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/add_ext4_encrypt.c","type":"file","name":"add_ext4_encrypt.c","base_name":"add_ext4_encrypt","extension":".c","size":1378,"date":"2020-03-21","sha1":"6a235580ebce01f565ea24de269f111856c81f79","md5":"959bdeb7cfc57291ec6a13b7638c061f","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 2015, Google, Inc.","start_line":4,"end_line":4}],"holders":[{"value":"Google, Inc.","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/Android.bp","type":"file","name":"Android.bp","base_name":"Android","extension":".bp","size":436,"date":"2020-03-21","sha1":"744d0b3498c2af5de378a3e749f80ea01916bc76","md5":"0ba6c502e7ab476f48d2a488e8119809","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2017 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/build-rpm","type":"file","name":"build-rpm","base_name":"build-rpm","extension":"","size":1295,"date":"2020-03-21","sha1":"131fe7f4f5f19c8b221d28a1da128cba43dfd425","md5":"c0d006235082331ed23ce9ed6bbe86b6","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/dconf","type":"file","name":"dconf","base_name":"dconf","extension":"","size":2861,"date":"2020-03-21","sha1":"98bd1184714d0463da59644c4b01559947b5c4e0","md5":"18637b429f863488459c620c2ae22b5e","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1994 Ulrich Windl ALte Regensburger Strasse","start_line":5,"end_line":8}],"holders":[{"value":"Ulrich Windl ALte Regensburger Strasse","start_line":5,"end_line":8}],"authors":[],"packages":[],"emails":[{"email":"Ulrich.Windl@rz.uni-regensburg.de","start_line":10,"end_line":10}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/dir2fs","type":"file","name":"dir2fs","base_name":"dir2fs","extension":"","size":2233,"date":"2020-03-21","sha1":"ddccea58ed78a38b5fa4eea2a62777365ff0dad0","md5":"936359bfec1f71752f8f375395a990ca","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/e2croncheck","type":"file","name":"e2croncheck","base_name":"e2croncheck","extension":"","size":1528,"date":"2020-03-21","sha1":"2df823bc71cd7d348c70c3d98a1a2114dc7d6e13","md5":"dd43b94ffd397a5f409dbce2d7c6761a","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"gpl-2.0","score":83.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":17,"end_line":18,"matched_rule":{"identifier":"gpl-2.0_566.RULE","license_expression":"gpl-2.0","licenses":["gpl-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":15,"matched_length":15,"match_coverage":100.0,"rule_relevance":83}}],"license_expressions":["gpl-2.0"],"copyrights":[{"value":"Theodore Ts'o, Copyright 2007, 2008, 2009","start_line":15,"end_line":15}],"holders":[{"value":"Theodore Ts'o","start_line":15,"end_line":15}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/fallocate.c","type":"file","name":"fallocate.c","base_name":"fallocate","extension":".c","size":4065,"date":"2020-03-21","sha1":"ca94795fb691c972e77fe5af9d1ef136104e0ea8","md5":"8013f07f8e2eb587f2fcd9ed3f545518","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,"licenses":[{"key":"gpl-1.0-plus","score":100.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":10,"end_line":21,"matched_rule":{"identifier":"gpl_153_1.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":100,"matched_length":100,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2008 Red Hat, Inc.","start_line":4,"end_line":4},{"value":"Copyright (c) 2003-2005 Silicon Graphics, Inc.","start_line":8,"end_line":8}],"holders":[{"value":"Red Hat, Inc.","start_line":4,"end_line":4},{"value":"Silicon Graphics, Inc.","start_line":8,"end_line":8}],"authors":[{"value":"Eric Sandeen ","start_line":5,"end_line":5}],"packages":[],"emails":[{"email":"sandeen@redhat.com","start_line":5,"end_line":5}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/fsstress.c","type":"file","name":"fsstress.c","base_name":"fsstress","extension":".c","size":57003,"date":"2020-03-21","sha1":"eaa478577064cbbb0a9694784135eb7263c029c4","md5":"9e48cccb32749a041058379e4508ef94","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,"licenses":[{"key":"gpl-2.0","score":93.45,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":4,"end_line":30,"matched_rule":{"identifier":"gpl-2.0_and_patent-disclaimer.RULE","license_expression":"gpl-2.0 AND patent-disclaimer","licenses":["gpl-2.0","patent-disclaimer"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":168,"matched_length":157,"match_coverage":93.45,"rule_relevance":100}},{"key":"patent-disclaimer","score":93.45,"name":"Generic patent disclaimer","short_name":"Generic patent disclaimer","category":"Permissive","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:patent-disclaimer","spdx_license_key":null,"spdx_url":"","start_line":4,"end_line":30,"matched_rule":{"identifier":"gpl-2.0_and_patent-disclaimer.RULE","license_expression":"gpl-2.0 AND patent-disclaimer","licenses":["gpl-2.0","patent-disclaimer"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":168,"matched_length":157,"match_coverage":93.45,"rule_relevance":100}}],"license_expressions":["gpl-2.0 AND patent-disclaimer"],"copyrights":[{"value":"Copyright (c) 2000 Silicon Graphics, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Silicon Graphics, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.sgi.com/","start_line":26,"end_line":26},{"url":"http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/jbd2-resync.sh","type":"file","name":"jbd2-resync.sh","base_name":"jbd2-resync","extension":".sh","size":634,"date":"2020-03-21","sha1":"a1c760b7e99cbded26c7cdb9fa8cdfc8d2f30c15","md5":"585a6169dbea137541b9078eefb8697b","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/make-sparse.c","type":"file","name":"make-sparse.c","base_name":"make-sparse","extension":".c","size":1575,"date":"2020-03-21","sha1":"4c08b2259a06bfc966e900f73ef453fce3575f0c","md5":"c9f4272a4bfa66015e94af321db8d773","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 2004 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/populate-extfs.sh","type":"file","name":"populate-extfs.sh","base_name":"populate-extfs","extension":".sh","size":2460,"date":"2020-03-21","sha1":"2bd3e6ccef7c493ad01c37d8f247e1136ee6456a","md5":"ce8bb1da35dc2b176cb9eb6323fb8643","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/spd_readdir.c","type":"file","name":"spd_readdir.c","base_name":"spd_readdir","extension":".c","size":10788,"date":"2020-03-21","sha1":"15e822cc977c5e6cdc16bb064d4f56b66811372d","md5":"b02aefee569a33d23466f6dc33e31bf0","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":21,"end_line":22,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"(c) Copyright 2003, 2004, 2008 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android","type":"directory","name":"android","base_name":"android","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":15,"dirs_count":0,"size_count":54233,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android/Android.bp","type":"file","name":"Android.bp","base_name":"Android","extension":".bp","size":1606,"date":"2020-03-21","sha1":"a8b7846d5ca7acc709ddca4dc234e9fd0c1166d4","md5":"96e570dba0afdd555d163d711b02e904","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2017 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android/base_fs.c","type":"file","name":"base_fs.c","base_name":"base_fs","extension":".c","size":4304,"date":"2020-03-21","sha1":"d4ffbbb2d77892287f99356c2bf2020667413c14","md5":"7d885bb333516480569f8ab2f23207e9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android/base_fs.h","type":"file","name":"base_fs.h","base_name":"base_fs","extension":".h","size":327,"date":"2020-03-21","sha1":"98377b23bf24b6d1f5c8937c3c0b86b40c1d046d","md5":"026537455d7c165d82c30d4073890ddf","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android/basefs_allocator.c","type":"file","name":"basefs_allocator.c","base_name":"basefs_allocator","extension":".c","size":11122,"date":"2020-03-21","sha1":"12a36a31617b8d55356f1a05e15026262778bc47","md5":"27a14a0c0071c8db4aa6966c79dbe5c5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android/basefs_allocator.h","type":"file","name":"basefs_allocator.h","base_name":"basefs_allocator","extension":".h","size":603,"date":"2020-03-21","sha1":"49e02f11568e0678cc8c8171ab855555f6ec8cad","md5":"547e198da8319cfe0560d6dcebf32774","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android/block_list.c","type":"file","name":"block_list.c","base_name":"block_list","extension":".c","size":1885,"date":"2020-03-21","sha1":"2fd2be1f78eec7ec00932bd213452fb76d3f7989","md5":"23e922f2660827252865b39d3f348d13","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android/block_list.h","type":"file","name":"block_list.h","base_name":"block_list","extension":".h","size":139,"date":"2020-03-21","sha1":"28e442fe5b079c3b14da6a54cfc2b978621ecf8f","md5":"0e70cf6a000fd0aafb864aff42ad88d4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android/block_range.c","type":"file","name":"block_range.c","base_name":"block_range","extension":".c","size":1704,"date":"2020-03-21","sha1":"4a4e1897a884a54bb78fc39e92be81a36e4532e8","md5":"15464d5454a52ba6529a5c0b55df074f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android/block_range.h","type":"file","name":"block_range.h","base_name":"block_range","extension":".h","size":673,"date":"2020-03-21","sha1":"1f91853971febf27b381deecafaad4866c0f1edc","md5":"b9f8cece946741e3f74710e159fd3a5f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android/e2fsdroid.c","type":"file","name":"e2fsdroid.c","base_name":"e2fsdroid","extension":".c","size":9767,"date":"2020-03-21","sha1":"d45661b7b3ca7727b80b0104af7a84523c37d044","md5":"7c69cefb62132dbbbcd9d0ed0160177e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android/ext2simg.c","type":"file","name":"ext2simg.c","base_name":"ext2simg","extension":".c","size":5716,"date":"2020-03-21","sha1":"7a1e4cb00cb6f76472c6a539659bd6ea4439a95a","md5":"aef59a412ee08c0b1f1da870378a29b4","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,"licenses":[{"key":"apache-2.0","score":100.0,"name":"Apache License 2.0","short_name":"Apache 2.0","category":"Permissive","is_exception":false,"owner":"Apache Software Foundation","homepage_url":"http://www.apache.org/licenses/","text_url":"http://www.apache.org/licenses/LICENSE-2.0","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:apache-2.0","spdx_license_key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0","start_line":4,"end_line":14,"matched_rule":{"identifier":"apache-2.0_7.RULE","license_expression":"apache-2.0","licenses":["apache-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":85,"matched_length":85,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["apache-2.0"],"copyrights":[{"value":"Copyright (c) 2016 The Android Open Source Project","start_line":2,"end_line":2}],"holders":[{"value":"The Android Open Source Project","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.apache.org/licenses/LICENSE-2.0","start_line":8,"end_line":8}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android/fsmap.c","type":"file","name":"fsmap.c","base_name":"fsmap","extension":".c","size":4318,"date":"2020-03-21","sha1":"e4a0f258932f7270025c385271566b3a5e7b13f5","md5":"1490b9f7ae266e5998ff1acc8123b263","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android/fsmap.h","type":"file","name":"fsmap.h","base_name":"fsmap","extension":".h","size":771,"date":"2020-03-21","sha1":"c4c0f05cf96e6cc9419769886e9ca3be57f195a1","md5":"e6eb1d9c69c6dc4fb8b2d672d190a584","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android/perms.c","type":"file","name":"perms.c","base_name":"perms","extension":".c","size":9608,"date":"2020-03-21","sha1":"ed48434066914b015b66128186195b4c1ede296c","md5":"d4b4c2a0edf6f08e9b0c868d0823c4f8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/android/perms.h","type":"file","name":"perms.h","base_name":"perms","extension":".h","size":1690,"date":"2020-03-21","sha1":"7c865d93fbe706e2b2725beeba0645084d2308a7","md5":"fbc5051c58817b649c2426fd88dd7f61","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/python-uuid","type":"directory","name":"python-uuid","base_name":"python-uuid","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":1137,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/python-uuid/setup.py","type":"file","name":"setup.py","base_name":"setup","extension":".py","size":316,"date":"2020-03-21","sha1":"7ce7ab50de9c080f3a0f4b848e2133f2f9956b67","md5":"1bf802363351cc6bfc92692c1899f256","mime_type":"text/x-python","file_type":"Python script, ASCII text executable","programming_language":"Python","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/python-uuid/test.py","type":"file","name":"test.py","base_name":"test","extension":".py","size":311,"date":"2020-03-21","sha1":"a11787fdaa8b7a00e976e8982ea42cabb0577cd8","md5":"d72cf70de3a84410bb2f0b96857df57a","mime_type":"text/x-python","file_type":"Python script, ASCII text executable","programming_language":"Python","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/contrib/python-uuid/uuid.c","type":"file","name":"uuid.c","base_name":"uuid","extension":".c","size":510,"date":"2020-03-21","sha1":"412d347b7f6e1ceb7ee7cf0c5da9d86146ec06fb","md5":"7a430319a3e58168f485b2e72b6580e8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian","type":"directory","name":"debian","base_name":"debian","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":85,"dirs_count":6,"size_count":306364,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/changelog","type":"file","name":"changelog","base_name":"changelog","extension":"","size":212577,"date":"2020-03-21","sha1":"1de1d85efc9331a8611b859982886b686870c686","md5":"bb6ff1f56d5844bcb64389e628425172","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,"licenses":[{"key":"gpl-1.0-plus","score":100.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":428,"end_line":428,"matched_rule":{"identifier":"gpl_63.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":4,"matched_length":4,"match_coverage":100.0,"rule_relevance":100.0}},{"key":"gpl-1.0-plus","score":5.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":2013,"end_line":2013,"matched_rule":{"identifier":"gpl_bare_word_only.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":1,"matched_length":1,"match_coverage":100.0,"rule_relevance":5}},{"key":"lgpl-2.0-plus","score":5.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":2013,"end_line":2013,"matched_rule":{"identifier":"lgpl_bare_single_word.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":1,"matched_length":1,"match_coverage":100.0,"rule_relevance":5}},{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":3278,"end_line":3278,"matched_rule":{"identifier":"bsd-new_308.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":3,"matched_length":3,"match_coverage":100.0,"rule_relevance":100.0}},{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":3302,"end_line":3302,"matched_rule":{"identifier":"bsd-new_308.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":3,"matched_length":3,"match_coverage":100.0,"rule_relevance":100.0}},{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":4069,"end_line":4069,"matched_rule":{"identifier":"lgpl-2.0_37.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":false,"is_license_tag":true,"matcher":"2-aho","rule_length":2,"matched_length":2,"match_coverage":100.0,"rule_relevance":100.0}},{"key":"lgpl-2.1","score":100.0,"name":"GNU Lesser General Public License 2.1","short_name":"LGPL 2.1","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/lgpl-2.1.html","text_url":"http://www.gnu.org/licenses/lgpl-2.1.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1","spdx_license_key":"LGPL-2.1-only","spdx_url":"https://spdx.org/licenses/LGPL-2.1-only","start_line":4069,"end_line":4069,"matched_rule":{"identifier":"lgpl-2.1_85.RULE","license_expression":"lgpl-2.1","licenses":["lgpl-2.1"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":3,"matched_length":3,"match_coverage":100.0,"rule_relevance":100.0}},{"key":"gpl-1.0-plus","score":5.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4184,"end_line":4184,"matched_rule":{"identifier":"gpl_bare_word_only.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":1,"matched_length":1,"match_coverage":100.0,"rule_relevance":5}}],"license_expressions":["gpl-1.0-plus","gpl-1.0-plus","lgpl-2.0-plus","bsd-new","bsd-new","lgpl-2.0","lgpl-2.1","gpl-1.0-plus"],"copyrights":[],"holders":[],"authors":[{"value":"SE Linux","start_line":3347,"end_line":3349}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":23,"end_line":23},{"email":"mgilbert@debian.org","start_line":887,"end_line":887},{"email":"bengen@debian.org","start_line":987,"end_line":987},{"email":"nicolas@debian.org","start_line":1249,"end_line":1249},{"email":"ben@decadent.org.uk","start_line":2795,"end_line":2795},{"email":"blarson@blars.org","start_line":2980,"end_line":2980},{"email":"pthomas@suse.de","start_line":3465,"end_line":3465},{"email":"waldi@debian.org","start_line":3487,"end_line":3487},{"email":"dirson@debian.org","start_line":3682,"end_line":3682},{"email":"turbo@debian.org","start_line":4261,"end_line":4261},{"email":"dirson@univ-mlv.fr","start_line":4395,"end_line":4395},{"email":"klee@debian.org","start_line":4489,"end_line":4489},{"email":"mrn20@cam.ac.uk","start_line":4508,"end_line":4508},{"email":"meskes@debian.org","start_line":4533,"end_line":4533},{"email":"adfernan@cnd.mcgill.ca","start_line":4565,"end_line":4565},{"email":"Bruce@Pixar.com","start_line":4583,"end_line":4583}],"urls":[{"url":"https://dav.hoster.com/foo","start_line":2535,"end_line":2535}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/comerr-dev.doc-base","type":"file","name":"comerr-dev.doc-base","base_name":"comerr-dev","extension":".doc-base","size":441,"date":"2020-03-21","sha1":"8510a901d7303c26b99cfae03adecb9b06379a6a","md5":"eb5a24ad827bae80b198ef7bb63ff40a","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Ken Raeburn and Bill Sommerfeld Abstract A","start_line":3,"end_line":5}],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/comerr-dev.examples","type":"file","name":"comerr-dev.examples","base_name":"comerr-dev","extension":".examples","size":57,"date":"2020-03-21","sha1":"9c003afa0fb47494dc90292f2bca9312062c413b","md5":"0d53e7cfa0c17f02d7883dad69b79f93","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/comerr-dev.install","type":"file","name":"comerr-dev.install","base_name":"comerr-dev","extension":".install","size":212,"date":"2020-03-21","sha1":"0c9f6cec164f4abed807782eb6c0956f1a751c81","md5":"b7292e8d18eff979fb0a502a80d1326b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/comerr-dev.postinst","type":"file","name":"comerr-dev.postinst","base_name":"comerr-dev","extension":".postinst","size":573,"date":"2020-03-21","sha1":"95e61d47ee29248f0328b002f5a0ec2e67b5186c","md5":"896da126976c4a899f9d21c98272e985","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/comerr-dev.postrm","type":"file","name":"comerr-dev.postrm","base_name":"comerr-dev","extension":".postrm","size":790,"date":"2020-03-21","sha1":"fb633525a7cb76cb4b34400a62765f43edc1acf4","md5":"1a993d64f8a064a692ab87733f87ba8b","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/comerr-dev.preinst","type":"file","name":"comerr-dev.preinst","base_name":"comerr-dev","extension":".preinst","size":578,"date":"2020-03-21","sha1":"aabb9a89930d624e4782fcfb6a5aedf11c90411a","md5":"96b5a6b986c10377634cd5b1d6da56f1","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/compat","type":"file","name":"compat","base_name":"compat","extension":"","size":3,"date":"2020-03-21","sha1":"ad552e6dc057d1d825bf49df79d6b98eba846ebe","md5":"2737b49252e2a4c0fe4c342e92b13285","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/control","type":"file","name":"control","base_name":"control","extension":"","size":8280,"date":"2020-03-21","sha1":"58cbace484297bc5ce42da5843cd726c78b66201","md5":"e7d47a4bb1ce58bb59cb25e00f70e691","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":4,"end_line":4}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":7,"end_line":7},{"url":"https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git","start_line":8,"end_line":8}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/copyright","type":"file","name":"copyright","base_name":"copyright","extension":"","size":3594,"date":"2020-03-21","sha1":"fc6b02ddb7365d99d34715f755cd7a1a44f59e8e","md5":"7c3e79fb1dc42838b81614695b02be5b","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,"licenses":[{"key":"gpl-2.0","score":99.02,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":17,"end_line":30,"matched_rule":{"identifier":"gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_1.RULE","license_expression":"gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert","licenses":["gpl-2.0","lgpl-2.0","bsd-new","mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":102,"matched_length":101,"match_coverage":99.02,"rule_relevance":100}},{"key":"lgpl-2.0","score":99.02,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":17,"end_line":30,"matched_rule":{"identifier":"gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_1.RULE","license_expression":"gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert","licenses":["gpl-2.0","lgpl-2.0","bsd-new","mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":102,"matched_length":101,"match_coverage":99.02,"rule_relevance":100}},{"key":"bsd-new","score":99.02,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":17,"end_line":30,"matched_rule":{"identifier":"gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_1.RULE","license_expression":"gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert","licenses":["gpl-2.0","lgpl-2.0","bsd-new","mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":102,"matched_length":101,"match_coverage":99.02,"rule_relevance":100}},{"key":"mit-old-style-no-advert","score":99.02,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":17,"end_line":30,"matched_rule":{"identifier":"gpl-2.0_and_lgpl-2.0_and_bsd-new_and_mit_1.RULE","license_expression":"gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert","licenses":["gpl-2.0","lgpl-2.0","bsd-new","mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":102,"matched_length":101,"match_coverage":99.02,"rule_relevance":100}},{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":38,"end_line":45,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}},{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":49,"end_line":73,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0 AND lgpl-2.0 AND bsd-new AND mit-old-style-no-advert","mit-old-style-no-advert","bsd-new"],"copyrights":[{"value":"Copyright (c) 2003-2007 Theodore Ts'o ","start_line":7,"end_line":11},{"value":"Copyright (c) 1997-2003 Yann Dirson ","start_line":7,"end_line":11},{"value":"Copyright (c) 2001 Alcove ","start_line":7,"end_line":11},{"value":"Copyright (c) 1997 Klee Dienes","start_line":7,"end_line":11},{"value":"Copyright (c) 1995-1996 Michael Nonweiler ","start_line":7,"end_line":11},{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Theodore Ts'o","start_line":24,"end_line":25},{"value":"Copyright 1987 by the Student Information Processing Board of the Massachusetts Institute of Technology","start_line":35,"end_line":36}],"holders":[{"value":"Theodore Ts'o","start_line":7,"end_line":11},{"value":"Yann Dirson","start_line":7,"end_line":11},{"value":"Alcove","start_line":7,"end_line":11},{"value":"Klee Dienes","start_line":7,"end_line":11},{"value":"Michael Nonweiler","start_line":7,"end_line":11},{"value":"Theodore Ts'o","start_line":24,"end_line":25},{"value":"the Student Information Processing Board of the Massachusetts Institute of Technology","start_line":35,"end_line":36}],"authors":[{"value":"Theodore Ts'o and Remy Card ","start_line":3,"end_line":3},{"value":"Theodore Ts'o ","start_line":13,"end_line":13}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":3,"end_line":3},{"email":"card@masi.ibp.fr","start_line":3,"end_line":3},{"email":"dirson@debian.org","start_line":8,"end_line":8},{"email":"mrn20@cam.ac.uk","start_line":11,"end_line":11}],"urls":[{"url":"http://sourceforge.net/projects/e2fsprogs","start_line":5,"end_line":5},{"url":"http://www.alcove.com/","start_line":9,"end_line":9}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsck-static.copyright","type":"file","name":"e2fsck-static.copyright","base_name":"e2fsck-static","extension":".copyright","size":1003,"date":"2020-03-21","sha1":"cd786840f87dca3dd3990a9b9de7a63a4b04404f","md5":"12197b1c135000a9b68b88b1172f5024","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,"licenses":[{"key":"gpl-1.0-plus","score":44.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":18,"end_line":19,"matched_rule":{"identifier":"gpl-1.0-plus_14.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":8,"matched_length":8,"match_coverage":100.0,"rule_relevance":44}},{"key":"gpl-2.0","score":100.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":24,"end_line":25,"matched_rule":{"identifier":"gpl-2.0_563.RULE","license_expression":"gpl-2.0","licenses":["gpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":23,"matched_length":23,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-1.0-plus","gpl-2.0"],"copyrights":[{"value":"Copyright (c) 2003-2006 Theodore Ts'o ","start_line":8,"end_line":12},{"value":"Copyright (c) 1997-2003 Yann Dirson ","start_line":8,"end_line":12},{"value":"Copyright (c) 2001 Alcove ","start_line":8,"end_line":12},{"value":"Copyright (c) 1997 Klee Dienes","start_line":8,"end_line":12},{"value":"Copyright (c) 1995-1996 Michael Nonweiler ","start_line":8,"end_line":12},{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Theodore Ts'o","start_line":21,"end_line":22}],"holders":[{"value":"Theodore Ts'o","start_line":8,"end_line":12},{"value":"Yann Dirson","start_line":8,"end_line":12},{"value":"Alcove","start_line":8,"end_line":12},{"value":"Klee Dienes","start_line":8,"end_line":12},{"value":"Michael Nonweiler","start_line":8,"end_line":12},{"value":"Theodore Ts'o","start_line":21,"end_line":22}],"authors":[{"value":"Theodore Ts'o and Remy Card ","start_line":3,"end_line":4},{"value":"Theodore Ts'o ","start_line":14,"end_line":14}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":3,"end_line":3},{"email":"card@masi.ibp.fr","start_line":4,"end_line":4},{"email":"dirson@debian.org","start_line":9,"end_line":9},{"email":"mrn20@cam.ac.uk","start_line":12,"end_line":12}],"urls":[{"url":"http://sourceforge.net/projects/e2fsprogs","start_line":6,"end_line":6},{"url":"http://www.alcove.com/","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsck-static.install","type":"file","name":"e2fsck-static.install","base_name":"e2fsck-static","extension":".install","size":55,"date":"2020-03-21","sha1":"f9ae7edae852e370d9f8c60747dfacb777a66653","md5":"db11c1231e0b9e1341b4c7f837ebdc60","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsck-static.preinst","type":"file","name":"e2fsck-static.preinst","base_name":"e2fsck-static","extension":".preinst","size":274,"date":"2020-03-21","sha1":"f110af92f3d19bbb3978dee8789bf6e604aa556d","md5":"8a58203f63a525f53ef1df3e0637d582","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fslibs-dev.postinst","type":"file","name":"e2fslibs-dev.postinst","base_name":"e2fslibs-dev","extension":".postinst","size":460,"date":"2020-03-21","sha1":"78bb55a40f4332ce57393cd0f1078690b009bbe3","md5":"b5a404206062c238905246068b770012","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fslibs-dev.postrm","type":"file","name":"e2fslibs-dev.postrm","base_name":"e2fslibs-dev","extension":".postrm","size":686,"date":"2020-03-21","sha1":"53346d3e6d267b3a1a0bcc38612996508aaa3f80","md5":"f9d0315a1e9b2e42a9d0e7adc700162c","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fslibs-dev.preinst","type":"file","name":"e2fslibs-dev.preinst","base_name":"e2fslibs-dev","extension":".preinst","size":482,"date":"2020-03-21","sha1":"4b941f37814ec1e31cfe1280d1cd69eede638975","md5":"f8f0167a8c871f2c3e7b8ce8385ce676","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsprogs-l10n.copyright","type":"file","name":"e2fsprogs-l10n.copyright","base_name":"e2fsprogs-l10n","extension":".copyright","size":995,"date":"2020-03-21","sha1":"898ce0f927a21e0fe9111cb066aca44aef4dc91a","md5":"04c991675b647c7f36de3c8fe6682b01","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,"licenses":[{"key":"gpl-1.0-plus","score":44.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":18,"end_line":19,"matched_rule":{"identifier":"gpl-1.0-plus_14.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":8,"matched_length":8,"match_coverage":100.0,"rule_relevance":44}},{"key":"gpl-2.0","score":100.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":24,"end_line":25,"matched_rule":{"identifier":"gpl-2.0_563.RULE","license_expression":"gpl-2.0","licenses":["gpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":23,"matched_length":23,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-1.0-plus","gpl-2.0"],"copyrights":[{"value":"Copyright (c) 2003-2006 Theodore Ts'o ","start_line":8,"end_line":12},{"value":"Copyright (c) 1997-2003 Yann Dirson ","start_line":8,"end_line":12},{"value":"Copyright (c) 2001 Alcove ","start_line":8,"end_line":12},{"value":"Copyright (c) 1997 Klee Dienes","start_line":8,"end_line":12},{"value":"Copyright (c) 1995-1996 Michael Nonweiler ","start_line":8,"end_line":12},{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Theodore Ts'o","start_line":21,"end_line":22}],"holders":[{"value":"Theodore Ts'o","start_line":8,"end_line":12},{"value":"Yann Dirson","start_line":8,"end_line":12},{"value":"Alcove","start_line":8,"end_line":12},{"value":"Klee Dienes","start_line":8,"end_line":12},{"value":"Michael Nonweiler","start_line":8,"end_line":12},{"value":"Theodore Ts'o","start_line":21,"end_line":22}],"authors":[{"value":"Theodore Ts'o and Remy Card ","start_line":3,"end_line":4},{"value":"Theodore Ts'o ","start_line":14,"end_line":14}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":3,"end_line":3},{"email":"card@masi.ibp.fr","start_line":4,"end_line":4},{"email":"dirson@debian.org","start_line":9,"end_line":9},{"email":"mrn20@cam.ac.uk","start_line":12,"end_line":12}],"urls":[{"url":"http://sourceforge.net/projects/e2fsprogs","start_line":6,"end_line":6},{"url":"http://www.alcove.com/","start_line":10,"end_line":10}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsprogs-l10n.install","type":"file","name":"e2fsprogs-l10n.install","base_name":"e2fsprogs-l10n","extension":".install","size":17,"date":"2020-03-21","sha1":"89b1eb64fa5f23b166f1ac2464808700192d2e86","md5":"fa5f9e2adc1bf9c678a6e81289d0e256","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsprogs-udeb.install","type":"file","name":"e2fsprogs-udeb.install","base_name":"e2fsprogs-udeb","extension":".install","size":159,"date":"2020-03-21","sha1":"1a15df5334b376796a3773ab567aa9c17952b3f3","md5":"1c4f6d827c11f683c5d8d743fbf8f633","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsprogs-udeb.lintian-overrides","type":"file","name":"e2fsprogs-udeb.lintian-overrides","base_name":"e2fsprogs-udeb","extension":".lintian-overrides","size":94,"date":"2020-03-21","sha1":"5ce9be3f343b499b8ed46ed1fc5d091bd080b53e","md5":"81989bcec1b842d9f9e7d9835a977706","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsprogs-udeb.shlibs.local","type":"file","name":"e2fsprogs-udeb.shlibs.local","base_name":"e2fsprogs-udeb.shlibs","extension":".local","size":204,"date":"2020-03-21","sha1":"c3b198f4b4a563ada6694c22a30ba88f0573ae39","md5":"e69d1ec42358f76049af53671c3ebc6d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsprogs.docs","type":"file","name":"e2fsprogs.docs","base_name":"e2fsprogs","extension":".docs","size":7,"date":"2020-03-21","sha1":"0e955b66534676c5311cae5168c617b8c22576a0","md5":"a165b0c48efd38c3c2725a282922c6f1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsprogs.install","type":"file","name":"e2fsprogs.install","base_name":"e2fsprogs","extension":".install","size":1359,"date":"2020-03-21","sha1":"1603c8e75753b05e0e7aa914e9445782912473c2","md5":"a40102d6d0575dade16b797c302b48f6","mime_type":"text/plain","file_type":"a /usr/bin/dh-exec script, ASCII text executable","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsprogs.lintian-overrides","type":"file","name":"e2fsprogs.lintian-overrides","base_name":"e2fsprogs","extension":".lintian-overrides","size":66,"date":"2020-03-21","sha1":"c3e96b22d45399e80579dfdae7d0bc79bb99b53a","md5":"98f1856c61406654b4097cf1a3f7dd3f","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsprogs.postinst","type":"file","name":"e2fsprogs.postinst","base_name":"e2fsprogs","extension":".postinst","size":173,"date":"2020-03-21","sha1":"2e7aab9f82fdd19b6be921943d1c8246f1eeb572","md5":"0f4a46157b36d39bc23fa9a951d6ad80","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsprogs.postinst.dh9","type":"file","name":"e2fsprogs.postinst.dh9","base_name":"e2fsprogs.postinst","extension":".dh9","size":703,"date":"2020-03-21","sha1":"e63a59c564cb6c6e329a8dbcf384c55a3b837144","md5":"69540b538e38cdf60e051cf89abd2860","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsprogs.postrm.dh9","type":"file","name":"e2fsprogs.postrm.dh9","base_name":"e2fsprogs.postrm","extension":".dh9","size":745,"date":"2020-03-21","sha1":"a38e81955993a3f60ece8d30520e2fa8d62c0450","md5":"8fc7f430066b47d03a3402be909d0d83","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsprogs.preinst","type":"file","name":"e2fsprogs.preinst","base_name":"e2fsprogs","extension":".preinst","size":270,"date":"2020-03-21","sha1":"c2a3e719dc6ea86abdeb995dd7e3564022e2478c","md5":"8c7639fbef1aa783262080e32919b5f6","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/e2fsprogs.shlibs.local","type":"file","name":"e2fsprogs.shlibs.local","base_name":"e2fsprogs.shlibs","extension":".local","size":87,"date":"2020-03-21","sha1":"b459723798c06e51dc1af4c6ffa06b9f9432d620","md5":"c997d434df30c596b9b13f94f5bfa11f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/fuse2fs.install","type":"file","name":"fuse2fs.install","base_name":"fuse2fs","extension":".install","size":47,"date":"2020-03-21","sha1":"96d86617a37317f5a7a6848bfae08b67ca197ad2","md5":"b580760850a6523b499c70c9bc22dc99","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/gbp.conf","type":"file","name":"gbp.conf","base_name":"gbp","extension":".conf","size":86,"date":"2020-03-21","sha1":"bf0357256835cfe90778fd8b5a87082e9bf47215","md5":"eba264c2cd0c3031add5fb5e56bea0aa","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libblkid-dev.install","type":"file","name":"libblkid-dev.install","base_name":"libblkid-dev","extension":".install","size":102,"date":"2020-03-21","sha1":"592f20efd5d5ed2b0b1ba1f2b1915c10e069accf","md5":"f6cbfb9b7bb6222dbe31299134f515a5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libblkid.copyright","type":"file","name":"libblkid.copyright","base_name":"libblkid","extension":".copyright","size":645,"date":"2020-03-21","sha1":"209b910ed996ed150e459fdcf19cdb55d69bd788","md5":"06976386403a17df20307ed0241eb4fe","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":15,"end_line":19,"matched_rule":{"identifier":"lgpl-2.0_24.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":42,"matched_length":42,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1999, 2001 by Andries Brouwer","start_line":10,"end_line":13},{"value":"Copyright (c) 1999, 2000, 2003 by Theodore Ts'o","start_line":10,"end_line":13}],"holders":[{"value":"Andries Brouwer","start_line":10,"end_line":13},{"value":"Theodore Ts'o","start_line":10,"end_line":13}],"authors":[{"value":"Theodore Ts'o ","start_line":8,"end_line":8}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":2,"end_line":2}],"urls":[{"url":"http://sourceforge.net/projects/e2fsprogs","start_line":6,"end_line":6}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libblkid1.install","type":"file","name":"libblkid1.install","base_name":"libblkid1","extension":".install","size":21,"date":"2020-03-21","sha1":"138ca152e298dfd8e6bcd170ecea60e1b68468f4","md5":"c4ab68dab71b2c30c338563bcd213e14","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libblkid1.symbols","type":"file","name":"libblkid1.symbols","base_name":"libblkid1","extension":".symbols","size":1249,"date":"2020-03-21","sha1":"521fb35fd3184a383ee4167278b4f7af815f9fe6","md5":"80bbd5cb89195e3db8f197fde58c7929","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libcom-err2.copyright","type":"file","name":"libcom-err2.copyright","base_name":"libcom-err2","extension":".copyright","size":1154,"date":"2020-03-21","sha1":"964940cab57f7a95a1ab2edf904e0018285c13f3","md5":"dfb3e511190f0d507e578e663d3899e1","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":14,"end_line":24,"matched_rule":{"identifier":"mit-old-style-no-advert_5.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":110,"matched_length":110,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988 by the Student Information Processing Board of the Massachusetts Institute of Technology","start_line":11,"end_line":12}],"holders":[{"value":"the Student Information Processing Board of the Massachusetts Institute of Technology","start_line":11,"end_line":12}],"authors":[{"value":"Yann Dirson ","start_line":5,"end_line":7}],"packages":[],"emails":[{"email":"dirson@debian.org","start_line":5,"end_line":5}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libcom-err2.install","type":"file","name":"libcom-err2.install","base_name":"libcom-err2","extension":".install","size":23,"date":"2020-03-21","sha1":"4df642cd38dbfdbe8c600e068649768499d49ce0","md5":"ab35e6e3ffc808c61d65b171178dfeb0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libcom-err2.symbols","type":"file","name":"libcom-err2.symbols","base_name":"libcom-err2","extension":".symbols","size":641,"date":"2020-03-21","sha1":"6a6f898d6e2254e65d17920e9fb7003fbdc7b73f","md5":"6152c67deaba2f8e5b57e5a4144c9c5e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libext2fs-dev.doc-base","type":"file","name":"libext2fs-dev.doc-base","base_name":"libext2fs-dev","extension":".doc-base","size":317,"date":"2020-03-21","sha1":"b21bc3497608ea4f975344ac2daec4c7efe6763a","md5":"614eea9b0d7e1546b9eb96fd97ed17a9","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Theodore Ts'o Abstract","start_line":3,"end_line":5}],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libext2fs-dev.install","type":"file","name":"libext2fs-dev.install","base_name":"libext2fs-dev","extension":".install","size":211,"date":"2020-03-21","sha1":"50816c7563f95db54f740b1b7b480650a57bd656","md5":"f893f93523ba27a8a101d5febca60bc1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libext2fs2.install","type":"file","name":"libext2fs2.install","base_name":"libext2fs2","extension":".install","size":41,"date":"2020-03-21","sha1":"4ebf9e677b1161b5981f93e6054746904fb6e5b4","md5":"8b62c65cc943c7e67a91976ca7d4ce66","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libext2fs2.symbols","type":"file","name":"libext2fs2.symbols","base_name":"libext2fs2","extension":".symbols","size":23884,"date":"2020-03-21","sha1":"f4f6a30054cd094c3b3af9ab2655efccb7020bc0","md5":"507670a5c4ced776ba2567e3956d4b04","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libss2.copyright","type":"file","name":"libss2.copyright","base_name":"libss2","extension":".copyright","size":1163,"date":"2020-03-21","sha1":"67e778ea9b95ab6ab7b40ba50986c2d6dac124da","md5":"ee29b90cd5b22694769f86e8d0ee07a5","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":15,"end_line":25,"matched_rule":{"identifier":"mit-old-style-no-advert_5.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":110,"matched_length":110,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988 by the Student Information Processing Board of the Massachusetts Institute of Technology","start_line":12,"end_line":13}],"holders":[{"value":"the Student Information Processing Board of the Massachusetts Institute of Technology","start_line":12,"end_line":13}],"authors":[{"value":"Yann Dirson ","start_line":6,"end_line":8}],"packages":[],"emails":[{"email":"dirson@debian.org","start_line":6,"end_line":6}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libss2.install","type":"file","name":"libss2.install","base_name":"libss2","extension":".install","size":18,"date":"2020-03-21","sha1":"a3988ea0510aac9fa5999f8d3ce2d391889fe2ed","md5":"2f0de66522f95ac52ab7c4fa4f265552","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libss2.symbols","type":"file","name":"libss2.symbols","base_name":"libss2","extension":".symbols","size":980,"date":"2020-03-21","sha1":"fadfab91ca71639996ba8adf2ec57e05dd78cb71","md5":"202c1227ebcf22920c291228a1381d3b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libuuid1.copyright","type":"file","name":"libuuid1.copyright","base_name":"libuuid1","extension":".copyright","size":1749,"date":"2020-03-21","sha1":"0ca8c61a967db03d5a4e4deeb4110fc9ceafb20a","md5":"37e576f2d80745590db30e94b061cdf3","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":14,"end_line":38,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1999, 2000, 2003, 2004 by Theodore Ts'o","start_line":10,"end_line":12}],"holders":[{"value":"Theodore Ts'o","start_line":10,"end_line":12}],"authors":[{"value":"Theodore Ts'o ","start_line":8,"end_line":8}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":2,"end_line":2}],"urls":[{"url":"http://sourceforge.net/projects/e2fsprogs","start_line":6,"end_line":6}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libuuid1.install","type":"file","name":"libuuid1.install","base_name":"libuuid1","extension":".install","size":20,"date":"2020-03-21","sha1":"244bb545cfd5d6ec7aaf14b5b615e5a4688629e0","md5":"4e2e1d7936b2f335a91f5040c628bf13","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libuuid1.postinst","type":"file","name":"libuuid1.postinst","base_name":"libuuid1","extension":".postinst","size":1263,"date":"2020-03-21","sha1":"2790c84284a1a7e866db20c81e6813634a782160","md5":"d00fbcff454ee6db4aff6c911d657e31","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libuuid1.postrm","type":"file","name":"libuuid1.postrm","base_name":"libuuid1","extension":".postrm","size":91,"date":"2020-03-21","sha1":"61dda955199ca97c32b833ab439c75ffa355d747","md5":"5773dd9b1bc3595e053a0dd7936903e1","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/libuuid1.symbols","type":"file","name":"libuuid1.symbols","base_name":"libuuid1","extension":".symbols","size":493,"date":"2020-03-21","sha1":"3ca7db180f3381447b3735babdf2d04b973ec5d5","md5":"da11cc754b0a1d5f40beed7713958f20","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/logsave.install","type":"file","name":"logsave.install","base_name":"logsave","extension":".install","size":42,"date":"2020-03-21","sha1":"2055cf808b357d43874fb924600a3b2bfe2ea1cf","md5":"84c85c3b5eb73548b220381f82f712cb","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/rules","type":"file","name":"rules","base_name":"rules","extension":"","size":5676,"date":"2020-03-21","sha1":"82270eae36fb9ed8b04f367e503e4ea1b5f973b3","md5":"1676890547b9f58048971c1df814aa94","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/shlibs.local","type":"file","name":"shlibs.local","base_name":"shlibs","extension":".local","size":66,"date":"2020-03-21","sha1":"ee9a8c30a10a66c978b2edae68b02f91cf9c2890","md5":"f61613047c6fe30c77e9d09a71a66e73","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/ss-dev.examples","type":"file","name":"ss-dev.examples","base_name":"ss-dev","extension":".examples","size":22,"date":"2020-03-21","sha1":"d23de26ac81bcedf5ebb90711bddd2c57fb76c23","md5":"7a6c9ba168897a7d32fc83dd4e694f4e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/ss-dev.install","type":"file","name":"ss-dev.install","base_name":"ss-dev","extension":".install","size":139,"date":"2020-03-21","sha1":"ef3b1c690346529f49b9a087787f0597996d8f62","md5":"7c5d26403b0ade5765716cb443c4da38","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/ss-dev.postinst","type":"file","name":"ss-dev.postinst","base_name":"ss-dev","extension":".postinst","size":452,"date":"2020-03-21","sha1":"145c4603d2ebb9d255359d6ba9959cc7c69ac9fb","md5":"46c579c82a51d2384a0a10d0a51013d4","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/ss-dev.postrm","type":"file","name":"ss-dev.postrm","base_name":"ss-dev","extension":".postrm","size":678,"date":"2020-03-21","sha1":"367210e5999e16e530ebb66d17c7d533a5752f17","md5":"9ca3f78cf9d681de6825316430ac00b4","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/ss-dev.preinst","type":"file","name":"ss-dev.preinst","base_name":"ss-dev","extension":".preinst","size":476,"date":"2020-03-21","sha1":"d3267317588beff2c4f4b1c756038f182759dd70","md5":"d3f6e4e71b937b01028a3dfe562caaf5","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/uuid-dev.copyright","type":"file","name":"uuid-dev.copyright","base_name":"uuid-dev","extension":".copyright","size":1749,"date":"2020-03-21","sha1":"0ca8c61a967db03d5a4e4deeb4110fc9ceafb20a","md5":"37e576f2d80745590db30e94b061cdf3","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":14,"end_line":38,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1999, 2000, 2003, 2004 by Theodore Ts'o","start_line":10,"end_line":12}],"holders":[{"value":"Theodore Ts'o","start_line":10,"end_line":12}],"authors":[{"value":"Theodore Ts'o ","start_line":8,"end_line":8}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":2,"end_line":2}],"urls":[{"url":"http://sourceforge.net/projects/e2fsprogs","start_line":6,"end_line":6}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/uuid-dev.install","type":"file","name":"uuid-dev.install","base_name":"uuid-dev","extension":".install","size":113,"date":"2020-03-21","sha1":"2367843ec7096e88f9ba0f4dbc1af4e7b8b42897","md5":"67224702bcad70dbb5a479598cd88f8d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/uuid-dev.README.Debian","type":"file","name":"uuid-dev.README.Debian","base_name":"uuid-dev.README","extension":".Debian","size":929,"date":"2020-03-21","sha1":"1189cd7a7cc639380118cef7933736f397de1baa","md5":"e862dfced6c07f653e8d4062eba7d636","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/uuid-runtime.copyright","type":"file","name":"uuid-runtime.copyright","base_name":"uuid-runtime","extension":".copyright","size":1779,"date":"2020-03-21","sha1":"d4c2161a272afc5240feb9c769bd4c2e17375dfd","md5":"9cf656c1681ae158ed5455188a5e5811","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":15,"end_line":39,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 by Theodore Ts'o","start_line":10,"end_line":13}],"holders":[{"value":"Theodore Ts'o","start_line":10,"end_line":13}],"authors":[{"value":"Theodore Ts'o ","start_line":8,"end_line":8}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":2,"end_line":2}],"urls":[{"url":"http://sourceforge.net/projects/e2fsprogs","start_line":6,"end_line":6}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/uuid-runtime.install","type":"file","name":"uuid-runtime.install","base_name":"uuid-runtime","extension":".install","size":87,"date":"2020-03-21","sha1":"03fca4d84061d37393f5d9dd7e36508fb9ffe0ba","md5":"5e068456bfea85babb1093b7e3e33cea","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/uuid-runtime.lintian-overrides","type":"file","name":"uuid-runtime.lintian-overrides","base_name":"uuid-runtime","extension":".lintian-overrides","size":77,"date":"2020-03-21","sha1":"dab212da63b544a984138a4e138d6bec80d8bbc7","md5":"66edb14822d3ff593003272ed1fb0263","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/uuid-runtime.postinst","type":"file","name":"uuid-runtime.postinst","base_name":"uuid-runtime","extension":".postinst","size":321,"date":"2020-03-21","sha1":"3d61ec456ed82ae09af359226bbe23920d06440a","md5":"ec33973845dfffaed963599f304c5f84","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/uuid-runtime.postrm","type":"file","name":"uuid-runtime.postrm","base_name":"uuid-runtime","extension":".postrm","size":89,"date":"2020-03-21","sha1":"76ee678665d61f7987ba972d459e9754d97e2340","md5":"4ec98f841891cab9c482d5f1890f205d","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/uuid-runtime.prerm","type":"file","name":"uuid-runtime.prerm","base_name":"uuid-runtime","extension":".prerm","size":101,"date":"2020-03-21","sha1":"c23e7425732a7e34f7e8a0e9663e4149fb85721f","md5":"9f7ff9c5bcc47be72b8727dbfdfe9fa8","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/uuid-runtime.shlibs.local","type":"file","name":"uuid-runtime.shlibs.local","base_name":"uuid-runtime.shlibs","extension":".local","size":32,"date":"2020-03-21","sha1":"a4e38a8f97487e6cc97266f408d9cc18c0de9ee7","md5":"b13a0232681cc1f3b2c1b9be373f9a30","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/watch","type":"file","name":"watch","base_name":"watch","extension":"","size":191,"date":"2020-03-21","sha1":"ef71eee38dd24a4669a5d9872dd4e3e75f4c44cc","md5":"3edaebe6bc8982b7656a3dea06d2fb88","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://sf.net/e2fsprogs/e2fsprogs","start_line":3,"end_line":3},{"url":"ftp://ftp.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/e2fsprogs","start_line":4,"end_line":4}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/attic","type":"directory","name":"attic","base_name":"attic","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":9,"dirs_count":1,"size_count":11402,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/attic/comerrg-dev.info","type":"file","name":"comerrg-dev.info","base_name":"comerrg-dev","extension":".info","size":119,"date":"2020-03-21","sha1":"97a9dfa287579a9ffbd54eb256eada5ee34e8493","md5":"33f0f8ac1905de7b7d2c6c805875da95","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/attic/comerrg-dev.menu","type":"file","name":"comerrg-dev.menu","base_name":"comerrg-dev","extension":".menu","size":438,"date":"2020-03-21","sha1":"dda87e2ae19a000f5e2c1c6cddf4f3d2461351e2","md5":"c6b1869c8dae70f1daa031e537560a2d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/attic/e2fslibsg-dev.info","type":"file","name":"e2fslibsg-dev.info","base_name":"e2fslibsg-dev","extension":".info","size":137,"date":"2020-03-21","sha1":"7334c0e1ab6198cb3d06d923c1762c2d4b8ed865","md5":"f93d56bb97c768e69180cc1a27b2a9a3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/attic/e2fslibsg-dev.menu","type":"file","name":"e2fslibsg-dev.menu","base_name":"e2fslibsg-dev","extension":".menu","size":239,"date":"2020-03-21","sha1":"43df45bf8a4b89288d93b56cc203afa5b0360b8e","md5":"426f595bc2dd4f933b5c2bac19f0bc6e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/attic/libs","type":"directory","name":"libs","base_name":"libs","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":10469,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/attic/libs/comerr2g.files","type":"file","name":"comerr2g.files","base_name":"comerr2g","extension":".files","size":42,"date":"2020-03-21","sha1":"430c0983c69539e4822a4711da1ab9c62ac50119","md5":"6966cea39a5f4ef081ae74eba44da049","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/attic/libs/control","type":"file","name":"control","base_name":"control","extension":"","size":4436,"date":"2020-03-21","sha1":"4967e2e8349cd564eb39e578f6de4ba800bb37dc","md5":"46a3f4f150e2e9d9bffabca9f6f92e7d","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"dirson@debian.org","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/attic/libs/e2fslibsg.files","type":"file","name":"e2fslibsg.files","base_name":"e2fslibsg","extension":".files","size":44,"date":"2020-03-21","sha1":"50c1caf96674497ab7016abbcff9a70a38914d9f","md5":"a9e399fa1ce2ec65dfe7eda20d98d4e6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/attic/libs/rules","type":"file","name":"rules","base_name":"rules","extension":"","size":5915,"date":"2020-03-21","sha1":"22752f7e6d75c5bc6e6446057edd05fe75a0777f","md5":"0ee81dc2a8d30883e6130553b06216e8","mime_type":"text/plain","file_type":"a /usr/bin/make -f script, ASCII text executable","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/attic/libs/ss2g.files","type":"file","name":"ss2g.files","base_name":"ss2g","extension":".files","size":32,"date":"2020-03-21","sha1":"225885dfe2b291bcee8c2bdbd20a771c151d52bc","md5":"a33d92174547cb46f1bc6d89e42580bb","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/scripts","type":"directory","name":"scripts","base_name":"scripts","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":703,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/scripts/test-backtrace","type":"file","name":"test-backtrace","base_name":"test-backtrace","extension":"","size":703,"date":"2020-03-21","sha1":"76c0a35cd6afc7891991f06382a3bd0c68573647","md5":"8972c1fccf49b838d872d44357ecdedf","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/source","type":"directory","name":"source","base_name":"source","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":183,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/source/format","type":"file","name":"format","base_name":"format","extension":"","size":12,"date":"2020-03-21","sha1":"1064dc0ce263680c076a1005f35ec906a5cf5a32","md5":"d3a10140af54ec7371d3b9b084b07c14","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/source/lintian-overrides","type":"file","name":"lintian-overrides","base_name":"lintian-overrides","extension":"","size":171,"date":"2020-03-21","sha1":"07c94bc94565cf30cb229f5aec5b139b0f5bba36","md5":"90cbc1860442e00ec0ede481efb10642","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/tests","type":"directory","name":"tests","base_name":"tests","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":2003,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/tests/control","type":"file","name":"control","base_name":"control","extension":"","size":104,"date":"2020-03-21","sha1":"ddad80cd9d67508b7a477a5c921f0d2ca8b01f33","md5":"7d7abcafc06715dc2a86eddbf0c6c138","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/tests/fuse2fs","type":"file","name":"fuse2fs","base_name":"fuse2fs","extension":"","size":1015,"date":"2020-03-21","sha1":"2ee02875638f0929fb1d265c9efc5021f4c08e29","md5":"a23a54fe4761da4d49d2fe1228e2f4e0","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/tests/smoke","type":"file","name":"smoke","base_name":"smoke","extension":"","size":884,"date":"2020-03-21","sha1":"5409a1a073750270d3bea30dde468431981f9a15","md5":"91a5cb4ad65474d134bcd8c754daf13a","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/upstream","type":"directory","name":"upstream","base_name":"upstream","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":9912,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debian/upstream/signing-key.asc","type":"file","name":"signing-key.asc","base_name":"signing-key","extension":".asc","size":9912,"date":"2020-03-21","sha1":"aa5b49a1b81d5c5b08e8662418e7e74ae6df148b","md5":"2cff5abd1fb716ec5010fc01e502bb41","mime_type":"application/pgp-keys","file_type":"PGP public key block Public-Key (old)","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs","type":"directory","name":"debugfs","base_name":"debugfs","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":26,"dirs_count":0,"size_count":323620,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/Android.bp","type":"file","name":"Android.bp","base_name":"Android","extension":".bp","size":1435,"date":"2020-03-21","sha1":"e3b836a65ebda8141beaaf17bd5c8e33a02f8342","md5":"44db3f26c326439efa7b8589187b02d4","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2017 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/debug_cmds.ct","type":"file","name":"debug_cmds.ct","base_name":"debug_cmds","extension":".ct","size":5527,"date":"2020-03-21","sha1":"bda0d633550d7a8f2b6067fb54a5221369a8aa14","md5":"9d84a534d91c3d657fda25eb57e82d34","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":2,"end_line":3,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993 Theodore Ts'o","start_line":2,"end_line":3}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/debugfs.8.in","type":"file","name":"debugfs.8.in","base_name":"debugfs.8","extension":".in","size":23108,"date":"2020-03-21","sha1":"953680776d267e0a1a458beb2165ad467b0d241f","md5":"8534041c59b3ebec9469ef84776452a0","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1993, 1994, 1995 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[{"value":"Theodore Ts'o ","start_line":863,"end_line":867}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":865,"end_line":865}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/debugfs.c","type":"file","name":"debugfs.c","base_name":"debugfs","extension":".c","size":65346,"date":"2020-03-21","sha1":"208e8a24dc8864a9744cf98fb6876d3b0768c3c6","md5":"de24d594b10f8c0a38b6a1d1474d5b49","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":5,"end_line":6,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993 Theodore Ts'o","start_line":5,"end_line":6}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":6}],"authors":[{"value":"Robert Sanders ","start_line":8,"end_line":8}],"packages":[],"emails":[{"email":"gt8134b@prism.gatech.edu","start_line":8,"end_line":8}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/debugfs.h","type":"file","name":"debugfs.h","base_name":"debugfs","extension":".h","size":10454,"date":"2020-03-21","sha1":"639f73853adb35bcb4ba6903fa90cb70cd749421","md5":"f1bab18d6012f0a752a6ad49f5bc74c0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/do_journal.c","type":"file","name":"do_journal.c","base_name":"do_journal","extension":".c","size":23809,"date":"2020-03-21","sha1":"ba4b32bbc42dc0f0707aade387a7b94769ac0ed0","md5":"2a9664611a573aebb7bf0e69767a21ae","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2014 Oracle","start_line":4,"end_line":5}],"holders":[{"value":"Oracle","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/dump.c","type":"file","name":"dump.c","base_name":"dump","extension":".c","size":8659,"date":"2020-03-21","sha1":"bde2575bbc959470faa666e7243978d03e825741","md5":"1f1d9cd2473fd31e44b7b1d95f4c70e1","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1994 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/extent_cmds.ct","type":"file","name":"extent_cmds.ct","base_name":"extent_cmds","extension":".ct","size":1587,"date":"2020-03-21","sha1":"6e2b0747c05faa0fc076e69f03c02550e64558cc","md5":"21431c4c783f4418782c8c1886904c94","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":2,"end_line":3,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993 Theodore Ts'o","start_line":2,"end_line":3}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/extent_inode.c","type":"file","name":"extent_inode.c","base_name":"extent_inode","extension":".c","size":13611,"date":"2020-03-21","sha1":"436c6f70aeaaf9abd939fa2a6f34c90493df7503","md5":"6317dd25b2ef1d0984332cf0b94d79b4","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2012 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/filefrag.c","type":"file","name":"filefrag.c","base_name":"filefrag","extension":".c","size":7154,"date":"2020-03-21","sha1":"3db4dfc9b67ef497878f0ef6c53e61b441eab445","md5":"60c21a3a336b1e868440d0e4bbdf4a26","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2011 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/htree.c","type":"file","name":"htree.c","base_name":"htree","extension":".c","size":11804,"date":"2020-03-21","sha1":"c6b333a95fa8e9651a24f4b73adc44d3614cc927","md5":"4864ce1faa12bb111bf2d5c3224a410d","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2002 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/icheck.c","type":"file","name":"icheck.c","base_name":"icheck","extension":".c","size":3845,"date":"2020-03-21","sha1":"b79f8189f04254e39ac86b4c360963a2220d1dc9","md5":"98b91701df5b0d69745876faea566a46","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1994 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/journal.c","type":"file","name":"journal.c","base_name":"journal","extension":".c","size":23548,"date":"2020-03-21","sha1":"e91dcad651dc2103311c7c83d8cfe73916991f5c","md5":"79888b70d5abd709771b38928a17306a","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,"licenses":[{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":10,"end_line":12,"matched_rule":{"identifier":"gpl-2.0-plus_313.RULE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":23,"matched_length":23,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2000 Andreas Dilger","start_line":4,"end_line":5},{"value":"Copyright (c) 2000 Theodore Ts'o","start_line":4,"end_line":5},{"value":"Copyright (c) 1999 Red Hat Software","start_line":7,"end_line":8}],"holders":[{"value":"Andreas Dilger","start_line":4,"end_line":5},{"value":"Theodore Ts'o","start_line":4,"end_line":5},{"value":"Red Hat Software","start_line":7,"end_line":8}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/journal.h","type":"file","name":"journal.h","base_name":"journal","extension":".h","size":896,"date":"2020-03-21","sha1":"d8fe692b76975f15c68b745e42769248b70deaef","md5":"9bfa0f9f8218a3060dcb870a5ae37106","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,"licenses":[{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":10,"end_line":12,"matched_rule":{"identifier":"gpl-2.0-plus_313.RULE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":23,"matched_length":23,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2000 Andreas Dilger","start_line":4,"end_line":5},{"value":"Copyright (c) 2000 Theodore Ts'o","start_line":4,"end_line":5},{"value":"Copyright (c) 1999 Red Hat Software","start_line":7,"end_line":8}],"holders":[{"value":"Andreas Dilger","start_line":4,"end_line":5},{"value":"Theodore Ts'o","start_line":4,"end_line":5},{"value":"Red Hat Software","start_line":7,"end_line":8}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/logdump.c","type":"file","name":"logdump.c","base_name":"logdump","extension":".c","size":18535,"date":"2020-03-21","sha1":"13e3c4d58749bdba6836b481b75dc67b7934791d","md5":"87118c3c4d6549ef9d12576aba1b54f2","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":8,"end_line":9,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2001 Red Hat, Inc.","start_line":4,"end_line":6},{"value":"portions Copyright (c) 1994 Theodore Ts'o","start_line":4,"end_line":6}],"holders":[{"value":"Red Hat, Inc.","start_line":4,"end_line":6},{"value":"Theodore Ts'o","start_line":4,"end_line":6}],"authors":[{"value":"Stephen C. Tweedie, ","start_line":4,"end_line":6}],"packages":[],"emails":[{"email":"sct@redhat.com","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/ls.c","type":"file","name":"ls.c","base_name":"ls","extension":".c","size":5458,"date":"2020-03-21","sha1":"b225e5cbb526304615803d0ae37774f5e53f7215","md5":"3144ca49278fc7aa49d23cdc527550fe","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1997 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/lsdel.c","type":"file","name":"lsdel.c","base_name":"lsdel","extension":".c","size":5173,"date":"2020-03-21","sha1":"af3a9cbb73795b103cbef2ec3c37a9a2e886b7ef","md5":"5ade30298ff653bb75b3244eaf675413","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":5,"end_line":6,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 Theodore Ts'o","start_line":4,"end_line":6}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":21684,"date":"2020-03-21","sha1":"12b5e90c580b034a02344c419d2d892968cb160f","md5":"d07ee5223d1332e9114fffb3127cc5ee","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/ncheck.c","type":"file","name":"ncheck.c","base_name":"ncheck","extension":".c","size":4706,"date":"2020-03-21","sha1":"58538b41a3b11d4a2ff847815baee9fa428d8dae","md5":"2586e08737c2a7f0ee35f9e65f62b506","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1994 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/quota.c","type":"file","name":"quota.c","base_name":"quota","extension":".c","size":3752,"date":"2020-03-21","sha1":"d36ec0566881de650e4e119443e6b40c0a95553a","md5":"80e7d2a026b8c40afb052b05d6e0400e","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2014 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/ro_debug_cmds.ct","type":"file","name":"ro_debug_cmds.ct","base_name":"ro_debug_cmds","extension":".ct","size":2426,"date":"2020-03-21","sha1":"df20e83f0e7cf97821706d8ba6ae3c3cd74b2611","md5":"9cba1e61342088e728edf34e99428b08","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/set_fields.c","type":"file","name":"set_fields.c","base_name":"set_fields","extension":".c","size":30765,"date":"2020-03-21","sha1":"63575b0df7656a37eaa553bab6139e862fccfaf8","md5":"69cfd648ccf03c5a876305b314ff1009","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2000, 2001, 2002, 2003, 2004 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/unused.c","type":"file","name":"unused.c","base_name":"unused","extension":".c","size":1421,"date":"2020-03-21","sha1":"723bf9ec0539ded8e882e92e1d3e3f407f8d9fe7","md5":"bf0828a1bbbca5fb703a6b0cdbe7c3a9","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1997 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/util.c","type":"file","name":"util.c","base_name":"util","extension":".c","size":12545,"date":"2020-03-21","sha1":"1d13292326d38ceb05c55f27a0ce4ca3e69f1b70","md5":"e70bd2b32d2af72bf86f0f4e2320d1c4","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/xattrs.c","type":"file","name":"xattrs.c","base_name":"xattrs","extension":".c","size":10711,"date":"2020-03-21","sha1":"528c0559404735d0e13244e4254a6456a4a6e4da","md5":"0303208e0b24f43d4c482b33a94fe76a","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2014 Oracle","start_line":4,"end_line":5}],"holders":[{"value":"Oracle","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/debugfs/zap.c","type":"file","name":"zap.c","base_name":"zap","extension":".c","size":5661,"date":"2020-03-21","sha1":"e778411a3b928708dc13c7fb90187ff3c2c20c63","md5":"c22f2f2d908b2dafa029aeebeeeb36d6","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2012 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc","type":"directory","name":"doc","base_name":"doc","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":71,"dirs_count":1,"size_count":677799,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/libblkid.txt","type":"file","name":"libblkid.txt","base_name":"libblkid","extension":".txt","size":3223,"date":"2020-03-21","sha1":"84133b83e12b758f77453645ddd2e385e6fbca6b","md5":"e01580010f167c11e0cbb8739ffd9610","mime_type":"text/plain","file_type":"ASCII text","programming_language":"TypeScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/libext2fs.texinfo","type":"file","name":"libext2fs.texinfo","base_name":"libext2fs","extension":".texinfo","size":54167,"date":"2020-03-21","sha1":"1a8320499f04174fc5d19d4f13230e90861a7bce","md5":"16d52ab95171a1c8ecf99bea6fea103c","mime_type":"text/x-tex","file_type":"TeX document, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"latex2e","score":85.0,"name":"Latex2e License","short_name":"Latex2e License","category":"Permissive","is_exception":false,"owner":"LaTeX","homepage_url":"https://fedoraproject.org/wiki/Licensing/Latex2e","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:latex2e","spdx_license_key":"Latex2e","spdx_url":"https://spdx.org/licenses/Latex2e","start_line":35,"end_line":54,"matched_rule":{"identifier":"latex2e_6.RULE","license_expression":"latex2e","licenses":["latex2e"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":141,"matched_length":141,"match_coverage":100.0,"rule_relevance":85.0}},{"key":"latex2e","score":95.0,"name":"Latex2e License","short_name":"Latex2e License","category":"Permissive","is_exception":false,"owner":"LaTeX","homepage_url":"https://fedoraproject.org/wiki/Licensing/Latex2e","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:latex2e","spdx_license_key":"Latex2e","spdx_url":"https://spdx.org/licenses/Latex2e","start_line":84,"end_line":96,"matched_rule":{"identifier":"latex2e_4.RULE","license_expression":"latex2e","licenses":["latex2e"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":97,"matched_length":97,"match_coverage":100.0,"rule_relevance":95.0}}],"license_expressions":["latex2e","latex2e"],"copyrights":[{"value":"Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 by Theodore Ts'o","start_line":32,"end_line":33},{"value":"Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Theodore Ts'o","start_line":79,"end_line":80}],"holders":[{"value":"Theodore Ts'o","start_line":32,"end_line":33},{"value":"Theodore Ts'o","start_line":79,"end_line":80}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":1783,"date":"2020-03-21","sha1":"3b023b9d27be84eab44fb81893d1d63eb18b3872","md5":"bbaa2e537b9c440dd61271520ab5232f","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/texinfo.tex","type":"file","name":"texinfo.tex","base_name":"texinfo","extension":".tex","size":231166,"date":"2020-03-21","sha1":"50157dfdca79d18e591b09505f4f80d476717d23","md5":"1942c6732f540af41bb5b3be0a958e7e","mime_type":"text/x-tex","file_type":"TeX document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":12,"end_line":29,"matched_rule":{"identifier":"gpl-2.0-plus_and_free-unknown_2.RULE","license_expression":"gpl-2.0-plus AND free-unknown","licenses":["gpl-2.0-plus","free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":151,"matched_length":151,"match_coverage":100.0,"rule_relevance":100}},{"key":"free-unknown","score":100.0,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":12,"end_line":29,"matched_rule":{"identifier":"gpl-2.0-plus_and_free-unknown_2.RULE","license_expression":"gpl-2.0-plus AND free-unknown","licenses":["gpl-2.0-plus","free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":151,"matched_length":151,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus AND free-unknown"],"copyrights":[{"value":"Copyright (c) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.","start_line":8,"end_line":10}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":8,"end_line":10}],"authors":[],"packages":[],"emails":[{"email":"bug-texinfo@gnu.org","start_line":39,"end_line":39},{"email":"juha@viisa.uucp","start_line":363,"end_line":363},{"email":"nathan@acm.org","start_line":2792,"end_line":2792},{"email":"tege@matematik.su.se","start_line":4635,"end_line":4635},{"email":"janneke@gnu.org","start_line":5145,"end_line":5145},{"email":"romildo@urano.iceb.ufop.br","start_line":6986,"end_line":6986}],"urls":[{"url":"http://www.gnu.org/software/texinfo/","start_line":33,"end_line":33},{"url":"ftp://tug.org/tex/texinfo.tex","start_line":34,"end_line":34},{"url":"http://www.ctan.org/","start_line":35,"end_line":35},{"url":"http://www.gnu.org/software/texinfo","start_line":59,"end_line":59},{"url":"http://www.ntg.nl/pipermail/ntg-pdftex/2004-July/000654.html","start_line":1193,"end_line":1193},{"url":"http://www.ctan.org/tex-archive/fonts/eurosym","start_line":2075,"end_line":2075},{"url":"ftp://tug.org/tex/epsf.tex","start_line":6497,"end_line":6497}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes","type":"directory","name":"RelNotes","base_name":"RelNotes","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":67,"dirs_count":0,"size_count":387460,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.02.txt","type":"file","name":"v1.02.txt","base_name":"v1.02","extension":".txt","size":1013,"date":"2020-03-21","sha1":"ceb33c1c9d56bb4e47fd86c83fd8a313fcfce12c","md5":"46c2d61c327aa41a0575d5d9f767b04a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.03.txt","type":"file","name":"v1.03.txt","base_name":"v1.03","extension":".txt","size":1303,"date":"2020-03-21","sha1":"897eabe611dcd14035d6f50660bc7049b5ba4fb8","md5":"151a25ebbcf3545b8d1ab4bd41a52d8b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.04.txt","type":"file","name":"v1.04.txt","base_name":"v1.04","extension":".txt","size":2075,"date":"2020-03-21","sha1":"95f5337ed6315b412ae04c156cc242c2d6fd628b","md5":"67d96ea335e1e1289342d7220247a4fd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.05.txt","type":"file","name":"v1.05.txt","base_name":"v1.05","extension":".txt","size":4637,"date":"2020-03-21","sha1":"f6c4acfa8d3b1ebc069e5ba77af8a2556918c5c9","md5":"6929e509cebf3685bc8def9fc0f28f77","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.06.txt","type":"file","name":"v1.06.txt","base_name":"v1.06","extension":".txt","size":1973,"date":"2020-03-21","sha1":"57d33c245a574aefb7cda0791270486acf904a7e","md5":"00378fcefbd77af884320a261f5fd61c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.07.txt","type":"file","name":"v1.07.txt","base_name":"v1.07","extension":".txt","size":5057,"date":"2020-03-21","sha1":"e796f1f29d899c77fae0efd05d30fc74ffd3b3f8","md5":"82ca1066b772426954709c777674acae","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.08.txt","type":"file","name":"v1.08.txt","base_name":"v1.08","extension":".txt","size":3297,"date":"2020-03-21","sha1":"aaa90599616a7484067e5be943f3dde17d0531d5","md5":"718687397edc43328b3115175d9c2f0f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.09.txt","type":"file","name":"v1.09.txt","base_name":"v1.09","extension":".txt","size":551,"date":"2020-03-21","sha1":"e80e762eb66f8b1e7321c571fc36ecdfd2417ee2","md5":"ec9b40ce17d70545273c28916bad8f54","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.10.txt","type":"file","name":"v1.10.txt","base_name":"v1.10","extension":".txt","size":2484,"date":"2020-03-21","sha1":"dfc8276165be6a08c4428359708b70b12a4db14f","md5":"41ac4e8bd7214804b2e42f20fa4eb802","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.11.txt","type":"file","name":"v1.11.txt","base_name":"v1.11","extension":".txt","size":2222,"date":"2020-03-21","sha1":"13c05665fb499f24396094259b8c4436263a74d7","md5":"dd571ab473c4358dd8c820797d6c461c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"whawes@star.net","start_line":26,"end_line":26}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.12.txt","type":"file","name":"v1.12.txt","base_name":"v1.12","extension":".txt","size":6537,"date":"2020-03-21","sha1":"7bdf2507387f80d38b4e2a5c9c67cead225acba2","md5":"50210725020563e9940f22c1ee553918","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.13.txt","type":"file","name":"v1.13.txt","base_name":"v1.13","extension":".txt","size":2712,"date":"2020-03-21","sha1":"a093b8b69737dd1e3c327001ee9462161da220a5","md5":"a29fc4e5a75978813aef16babd28ad5e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.14.txt","type":"file","name":"v1.14.txt","base_name":"v1.14","extension":".txt","size":1190,"date":"2020-03-21","sha1":"6e195e5b5af0fdbeb4912aefee9a03d2f8e3c0cb","md5":"2107ae2ff00c7dcac2422f589090df39","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.15.txt","type":"file","name":"v1.15.txt","base_name":"v1.15","extension":".txt","size":5042,"date":"2020-03-21","sha1":"e874e8ad215d10bf96164b557c863096c79f851c","md5":"2520da9e45058d6f5aa9200aa282101e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.16.txt","type":"file","name":"v1.16.txt","base_name":"v1.16","extension":".txt","size":3976,"date":"2020-03-21","sha1":"99db5c906b473f3447d4a066c7fb0ec34cf7ddfb","md5":"520abee0e715e9c6888b598bc2ef408b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.17.txt","type":"file","name":"v1.17.txt","base_name":"v1.17","extension":".txt","size":1073,"date":"2020-03-21","sha1":"7b639547f35b171930ff443eca0f5ec9e58ba1c0","md5":"951324e5f114b24e25f16346f30a7cef","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.18.txt","type":"file","name":"v1.18.txt","base_name":"v1.18","extension":".txt","size":1740,"date":"2020-03-21","sha1":"5faf55f448ed79bd2a5ba9e44ab08b93ac93f845","md5":"74e95cebc68aae096d9db9e3cee0d57b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.19.txt","type":"file","name":"v1.19.txt","base_name":"v1.19","extension":".txt","size":7168,"date":"2020-03-21","sha1":"624c7c02b1b6c886a2dac1b3178c2d51880aee35","md5":"1a2658a46bf089dea1b8c641d4464a04","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,"licenses":[{"key":"gpl-1.0-plus","score":100.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":5,"end_line":5,"matched_rule":{"identifier":"gpl_194.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":4,"matched_length":4,"match_coverage":100.0,"rule_relevance":100.0}},{"key":"lgpl-2.0-plus","score":5.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":120,"end_line":120,"matched_rule":{"identifier":"lgpl_bare_single_word.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":1,"matched_length":1,"match_coverage":100.0,"rule_relevance":5}}],"license_expressions":["gpl-1.0-plus","lgpl-2.0-plus"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.20.txt","type":"file","name":"v1.20.txt","base_name":"v1.20","extension":".txt","size":8719,"date":"2020-03-21","sha1":"ae92ee140339849a23c9b24b051e74cd875c7402","md5":"f9f3899da4d2e7d8c37979091eeb560c","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.21.txt","type":"file","name":"v1.21.txt","base_name":"v1.21","extension":".txt","size":4685,"date":"2020-03-21","sha1":"ad76a3c6656e8d799d689e73a0a85e4ec4022a33","md5":"826e00039078523f1fe66d6edeb4c7b0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.22.txt","type":"file","name":"v1.22.txt","base_name":"v1.22","extension":".txt","size":1189,"date":"2020-03-21","sha1":"da77aa790c8c32da040451dfb08a157815b4a4ef","md5":"580d6506a757f6a7c0b283c8187ea567","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.23.txt","type":"file","name":"v1.23.txt","base_name":"v1.23","extension":".txt","size":2593,"date":"2020-03-21","sha1":"2f855ffd983bd0d42761c97719103d090fb33986","md5":"7a6f841d73dcb0194102dd4761b1a423","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.24.txt","type":"file","name":"v1.24.txt","base_name":"v1.24","extension":".txt","size":1432,"date":"2020-03-21","sha1":"db37f18b37eb9fab51f899d962f0aa6e5bacfb76","md5":"9165241c2f1eaa3657b28242c3420223","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.25.txt","type":"file","name":"v1.25.txt","base_name":"v1.25","extension":".txt","size":2100,"date":"2020-03-21","sha1":"669571098d240859d93fc2214a4b18ca01d30c1e","md5":"fdb07ba5a403f4d94a40d14bfd951b2e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.26.txt","type":"file","name":"v1.26.txt","base_name":"v1.26","extension":".txt","size":6927,"date":"2020-03-21","sha1":"d9eaeeb79cb0e804e043033edf613cc9529acb21","md5":"ff4712f4df11e3595e791059942774f3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.27.txt","type":"file","name":"v1.27.txt","base_name":"v1.27","extension":".txt","size":2079,"date":"2020-03-21","sha1":"ad663658bfdd19bc429f521a188a9ae75478d2a8","md5":"366357191fbe87eb9d09f1838d3c0e5b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.28.txt","type":"file","name":"v1.28.txt","base_name":"v1.28","extension":".txt","size":6084,"date":"2020-03-21","sha1":"4b360300f31a6173be36ac57b250c0c817f9e0f8","md5":"6034908b8d2056a5ea0a4a2bb587381a","mime_type":"text/x-c","file_type":"C source, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Andrew Morton","start_line":78,"end_line":79}],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.29.txt","type":"file","name":"v1.29.txt","base_name":"v1.29","extension":".txt","size":1141,"date":"2020-03-21","sha1":"77d267148a849684a3cfcbeda0579c2b9df222cd","md5":"aa72052f912a94b44617db8a1c99a86e","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.30.txt","type":"file","name":"v1.30.txt","base_name":"v1.30","extension":".txt","size":5216,"date":"2020-03-21","sha1":"450149526fe9efd082e573dc168a5d0b50217980","md5":"d96b8023b0e788896740dd717e536478","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.31.txt","type":"file","name":"v1.31.txt","base_name":"v1.31","extension":".txt","size":1624,"date":"2020-03-21","sha1":"bdafe52b60cc9926e472365abc3cc6624a5aaa49","md5":"4c8a753ac73e66f65aefad0685b40389","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.32.txt","type":"file","name":"v1.32.txt","base_name":"v1.32","extension":".txt","size":508,"date":"2020-03-21","sha1":"9674239cdc8063edc8bf32114c731400892d61f1","md5":"2f863c490bbe002a423089a0143618ac","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.33.txt","type":"file","name":"v1.33.txt","base_name":"v1.33","extension":".txt","size":5796,"date":"2020-03-21","sha1":"0b9be849a15f5fe434f9adef40f4ca67be646e53","md5":"b9f94b68359d1b2c0ef0fd68b3b732ff","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.34.txt","type":"file","name":"v1.34.txt","base_name":"v1.34","extension":".txt","size":5319,"date":"2020-03-21","sha1":"93afbf40a9ecee0004d95265756f07f1eaa17ad4","md5":"acf08989e9945f5becd8da61ded577da","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.35.txt","type":"file","name":"v1.35.txt","base_name":"v1.35","extension":".txt","size":6873,"date":"2020-03-21","sha1":"b5d639d1560378bdf6f7d5d1153b3e074e01231b","md5":"74a1de26217667322971340fd31c6509","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.36.txt","type":"file","name":"v1.36.txt","base_name":"v1.36","extension":".txt","size":11768,"date":"2020-03-21","sha1":"e307a46dac990ed860a906b7c1bb379de33acafd","md5":"b699df3ad15c028eb4eea92d5f1cc5f0","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":188,"end_line":188,"matched_rule":{"identifier":"bsd-new_308.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":3,"matched_length":3,"match_coverage":100.0,"rule_relevance":100.0}},{"key":"bsd-new","score":16.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":188,"end_line":189,"matched_rule":{"identifier":"bsd-new_292.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":3,"matched_length":3,"match_coverage":100.0,"rule_relevance":16}}],"license_expressions":["bsd-new","bsd-new"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.37.txt","type":"file","name":"v1.37.txt","base_name":"v1.37","extension":".txt","size":2377,"date":"2020-03-21","sha1":"b8a3bd8186c6f98f4b8a77de76e65d6f86658952","md5":"a766a50ea4d3c95f655a933bb4b14c58","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.38.txt","type":"file","name":"v1.38.txt","base_name":"v1.38","extension":".txt","size":5598,"date":"2020-03-21","sha1":"6dccda2dad426c936475f8c22a27a3bd582d2a36","md5":"5038a91519bd8411266b9f79e4f05005","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.39.txt","type":"file","name":"v1.39.txt","base_name":"v1.39","extension":".txt","size":10259,"date":"2020-03-21","sha1":"f9514dd9d7594a7ea7adefbee3cf5e4c7ead44e9","md5":"7a061c6821d1dd4780c1b5a38d282ac5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.40.txt","type":"file","name":"v1.40.txt","base_name":"v1.40","extension":".txt","size":41327,"date":"2020-03-21","sha1":"dc1d50d5e572228e0d99cd4b5af37fcff81eb90a","md5":"fcd32d7434d4fd09164529970748076d","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,"licenses":[{"key":"lgpl-3.0","score":5.0,"name":"GNU Lesser General Public License 3.0","short_name":"LGPL 3.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/lgpl-3.0.html","text_url":"http://www.gnu.org/licenses/lgpl-3.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-3.0","spdx_license_key":"LGPL-3.0-only","spdx_url":"https://spdx.org/licenses/LGPL-3.0-only","start_line":291,"end_line":291,"matched_rule":{"identifier":"lgpl-3.0_29.RULE","license_expression":"lgpl-3.0","licenses":["lgpl-3.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":1,"matched_length":1,"match_coverage":100.0,"rule_relevance":5}}],"license_expressions":["lgpl-3.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.41.13","type":"file","name":"v1.41.13","base_name":"v1.41","extension":".13","size":5892,"date":"2020-03-21","sha1":"6b5e51a4bf2ac70cee9bda73051dec37e0c00312","md5":"a9ac04d91b6779a702c1094a58bba75a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.41.14","type":"file","name":"v1.41.14","base_name":"v1.41","extension":".14","size":1127,"date":"2020-03-21","sha1":"28dee34f4bd598908c5af3d28fb99787ca7399c4","md5":"7018256c38d599c1a81b5aa81a90609b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.41.txt","type":"file","name":"v1.41.txt","base_name":"v1.41","extension":".txt","size":65478,"date":"2020-03-21","sha1":"126e68503648897ba57b7a0994341a3829042bad","md5":"beabaa2215a04e0814ca72fb13355fd1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.42.txt","type":"file","name":"v1.42.txt","base_name":"v1.42","extension":".txt","size":67308,"date":"2020-03-21","sha1":"4cbbf703265d3ccf799853cfdd7fcb67e235c1d3","md5":"9796970870e93aba4628482271b16718","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Quota","start_line":309,"end_line":309},{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":713,"end_line":713},{"url":"https://bugzilla.kernel.org/show_bug.cgi?id=42859","start_line":1236,"end_line":1236}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.43.0.txt","type":"file","name":"v1.43.0.txt","base_name":"v1.43.0","extension":".txt","size":8259,"date":"2020-03-21","sha1":"df91ab5becc4c900a259499f76bad560e88ed6b5","md5":"d3317f3e5deee86c7618d4e3ed7eb1d4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.43.1.txt","type":"file","name":"v1.43.1.txt","base_name":"v1.43.1","extension":".txt","size":3259,"date":"2020-03-21","sha1":"5a5ae831be9114c5f52b8b77e342127b30f3f49e","md5":"80bf2f8a8e1f5bbdc628551867bc76fc","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.43.2.txt","type":"file","name":"v1.43.2.txt","base_name":"v1.43.2","extension":".txt","size":2686,"date":"2020-03-21","sha1":"32cf8dbb4d4c76d4e7cbd462d08f5dd4d2530ec4","md5":"796043ebc2d67c9bf8afaac446441dee","mime_type":"text/x-fortran","file_type":"FORTRAN program, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.43.3.txt","type":"file","name":"v1.43.3.txt","base_name":"v1.43.3","extension":".txt","size":975,"date":"2020-03-21","sha1":"8b62cfbe67205a016f2a49189616589055633091","md5":"6e31a13957ea78136ad42d955a9ec806","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.43.4.txt","type":"file","name":"v1.43.4.txt","base_name":"v1.43.4","extension":".txt","size":2543,"date":"2020-03-21","sha1":"1dac7010320df383a7cfb1d7070f07d33cfa1ab4","md5":"f027170236ce023a0bf60349a12e28b1","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,"licenses":[{"key":"proprietary-license","score":16.0,"name":"Proprietary License","short_name":"Proprietary License","category":"Proprietary Free","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:proprietary-license","spdx_license_key":null,"spdx_url":"","start_line":44,"end_line":44,"matched_rule":{"identifier":"proprietary_non-commercial4.RULE","license_expression":"proprietary-license","licenses":["proprietary-license"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":3,"matched_length":3,"match_coverage":100.0,"rule_relevance":16}},{"key":"bsd-new","score":90.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":46,"end_line":46,"matched_rule":{"identifier":"bsd-new_26.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":2,"matched_length":2,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["proprietary-license","bsd-new"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.43.5.txt","type":"file","name":"v1.43.5.txt","base_name":"v1.43.5","extension":".txt","size":4926,"date":"2020-03-21","sha1":"2f5575e149bf8743e3beb40c40430021366e8308","md5":"d90522884997be6fbf579551ebd4815b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.43.6.txt","type":"file","name":"v1.43.6.txt","base_name":"v1.43.6","extension":".txt","size":2768,"date":"2020-03-21","sha1":"74ca690d34ef4b953b48f7a4d704c2203879483a","md5":"8048c23815dd7bb490971ab6f41b070a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.43.7.txt","type":"file","name":"v1.43.7.txt","base_name":"v1.43.7","extension":".txt","size":963,"date":"2020-03-21","sha1":"a3660c652967e98befdbc9c971cc5c5126ca90e2","md5":"cedefe11bbeb05308cef6879bdbc75e7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.43.8.txt","type":"file","name":"v1.43.8.txt","base_name":"v1.43.8","extension":".txt","size":1667,"date":"2020-03-21","sha1":"2cafe1262911560f982233c15b49245e164e1b08","md5":"75508b7f381f16ac3a92eb21321d15a4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.43.9.txt","type":"file","name":"v1.43.9.txt","base_name":"v1.43.9","extension":".txt","size":564,"date":"2020-03-21","sha1":"e1ad7fd99383d90749456b61dbc6fcaa9ece1d2a","md5":"ee954f91c9b020737eefe5bb82735201","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.44.0.txt","type":"file","name":"v1.44.0.txt","base_name":"v1.44.0","extension":".txt","size":3257,"date":"2020-03-21","sha1":"4d64cbd4403ce68242dcf103e94625bcec575906","md5":"ed012c6d46dfb02db5524258fd1b3e00","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.44.1.txt","type":"file","name":"v1.44.1.txt","base_name":"v1.44.1","extension":".txt","size":1387,"date":"2020-03-21","sha1":"c9f73e26a433e74051acf45f93f3395efa957e95","md5":"35923beec5482a2aa2ec43c12f01066e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.44.2.txt","type":"file","name":"v1.44.2.txt","base_name":"v1.44.2","extension":".txt","size":1676,"date":"2020-03-21","sha1":"f06642e64dd1792e7d48a6c3312af59ff9f6620c","md5":"2c3bfded96fef468b22d57093af3a144","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,"licenses":[{"key":"gpl-1.0-plus","score":5.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":42,"end_line":42,"matched_rule":{"identifier":"gpl_bare_word_only.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":1,"matched_length":1,"match_coverage":100.0,"rule_relevance":5}},{"key":"lgpl-2.0-plus","score":5.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":42,"end_line":42,"matched_rule":{"identifier":"lgpl_bare_single_word.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":1,"matched_length":1,"match_coverage":100.0,"rule_relevance":5}}],"license_expressions":["gpl-1.0-plus","lgpl-2.0-plus"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.44.3.txt","type":"file","name":"v1.44.3.txt","base_name":"v1.44.3","extension":".txt","size":4042,"date":"2020-03-21","sha1":"3a3261036d07c102f123fd2864040984e04fa359","md5":"8d6c12c458dd7110b5ef2aa951162c02","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.44.4.txt","type":"file","name":"v1.44.4.txt","base_name":"v1.44.4","extension":".txt","size":2094,"date":"2020-03-21","sha1":"ab41238de9262aa405dfcfe35ad0a7cad4f1eb4c","md5":"c12bfc5d45c1ada85c1938fd2c1bda56","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.44.5.txt","type":"file","name":"v1.44.5.txt","base_name":"v1.44.5","extension":".txt","size":2428,"date":"2020-03-21","sha1":"7f8cc2ceb9e5914089f7c1b2c2a5c7890059660f","md5":"24d15a07e037b5bacc18cea4622f9fb5","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,"licenses":[{"key":"lgpl-2.0-plus","score":5.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":66,"end_line":66,"matched_rule":{"identifier":"lgpl_bare_single_word.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":1,"matched_length":1,"match_coverage":100.0,"rule_relevance":5}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.44.6.txt","type":"file","name":"v1.44.6.txt","base_name":"v1.44.6","extension":".txt","size":1787,"date":"2020-03-21","sha1":"487b9537d20b06ed0874533f0effb4a9f566a1a2","md5":"651a7a2d9b15388d20f1cb0e28a74c42","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.45.0.txt","type":"file","name":"v1.45.0.txt","base_name":"v1.45.0","extension":".txt","size":1551,"date":"2020-03-21","sha1":"60bb885e4bee9560490d3eba0d4894b010967d83","md5":"03135432fcec1498ac47e1acfe180051","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.45.1.txt","type":"file","name":"v1.45.1.txt","base_name":"v1.45.1","extension":".txt","size":2953,"date":"2020-03-21","sha1":"8101fb1644fbbc5315f5b896105234f586e77e89","md5":"4aa9585099e5d9834f13b7521a5562d8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.45.2.txt","type":"file","name":"v1.45.2.txt","base_name":"v1.45.2","extension":".txt","size":963,"date":"2020-03-21","sha1":"2e1907f5b223531f466bb78963a728adf30b81bb","md5":"1b491d35f8d7916c0113d1be6dd98441","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.45.3.txt","type":"file","name":"v1.45.3.txt","base_name":"v1.45.3","extension":".txt","size":2212,"date":"2020-03-21","sha1":"2f7a97250f9f433051aac9601a19a25e2fc7b304","md5":"547289f82d2119dcf8ce01d943f064a6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.45.4.txt","type":"file","name":"v1.45.4.txt","base_name":"v1.45.4","extension":".txt","size":1824,"date":"2020-03-21","sha1":"539ea7ca4870dd0e349e2dd34f76a12ded08caea","md5":"9cb017162d57d0cec370f8853e45e785","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.45.5.txt","type":"file","name":"v1.45.5.txt","base_name":"v1.45.5","extension":".txt","size":3388,"date":"2020-03-21","sha1":"c81a00d9faf38efb638913972f50273f525d91a8","md5":"9442fa57a27b90953d4d138267bad4dc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/doc/RelNotes/v1.45.6.txt","type":"file","name":"v1.45.6.txt","base_name":"v1.45.6","extension":".txt","size":1819,"date":"2020-03-21","sha1":"5ead4e32d66b93dafbd8b443459dd12390c93fe0","md5":"e90ab587d77c87106c9c5ede524c7c75","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck","type":"directory","name":"e2fsck","base_name":"e2fsck","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":44,"dirs_count":0,"size_count":820284,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/Android.bp","type":"file","name":"Android.bp","base_name":"Android","extension":".bp","size":1499,"date":"2020-03-21","sha1":"99e74ad94dbde213b971c1bbb803a1c91466daf3","md5":"8483bad02496bfd47490f8eba76e39e7","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2017 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/badblocks.c","type":"file","name":"badblocks.c","base_name":"badblocks","extension":".c","size":3352,"date":"2020-03-21","sha1":"1a52a130bd5c202e60ede9b259a598dafe78bf3a","md5":"263d7bc7e1328e334526f5572ca2622f","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/CHANGES","type":"file","name":"CHANGES","base_name":"CHANGES","extension":"","size":1837,"date":"2020-03-21","sha1":"05bab756b2f730528f2dd4320ad2b30221dcffed","md5":"a4c1a4d3a58f763375f3052fd912c4a4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/dirinfo.c","type":"file","name":"dirinfo.c","base_name":"dirinfo","extension":".c","size":11471,"date":"2020-03-21","sha1":"9ba554dc6e978945080461ade20a642b589840d7","md5":"851bf50d8325e810504564a5d4bd6e90","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/dx_dirinfo.c","type":"file","name":"dx_dirinfo.c","base_name":"dx_dirinfo","extension":".c","size":4157,"date":"2020-03-21","sha1":"8a257d4b927440c575e643f87748ee90a2e3b857","md5":"17d092c31f5f1f2c7a52b30495c2c7d4","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/e2fsck.8.in","type":"file","name":"e2fsck.8.in","base_name":"e2fsck.8","extension":".in","size":15330,"date":"2020-03-21","sha1":"1bda5a0b8e7abae2bf3608ba9ebf5b0679010df6","md5":"671d550b01bc6817d0df9ac12118d0ff","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1993, 1994, 1995 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[{"value":"Theodore Ts'o ","start_line":494,"end_line":499}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":497,"end_line":497}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/e2fsck.c","type":"file","name":"e2fsck.c","base_name":"e2fsck","extension":".c","size":6225,"date":"2020-03-21","sha1":"8be15f77b9f9c32b30bc339fd8e8f2432a5f7957","md5":"52860c99444bde442542d883edd17a20","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/e2fsck.conf.5.in","type":"file","name":"e2fsck.conf.5.in","base_name":"e2fsck.conf.5","extension":".in","size":16717,"date":"2020-03-21","sha1":"57968e083a3b63611a33fb5cdd018ede140455fe","md5":"3d3d62a52452e27699d0977306c9e118","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 2006 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/e2fsck.h","type":"file","name":"e2fsck.h","base_name":"e2fsck","extension":".h","size":20431,"date":"2020-03-21","sha1":"7b14e57b35773f666e4d0d7d08400c452328b214","md5":"ac070d6816b212b32af42e885943add5","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/ea_refcount.c","type":"file","name":"ea_refcount.c","base_name":"ea_refcount","extension":".c","size":10353,"date":"2020-03-21","sha1":"b2d20bc0b7cc130b6211e6362b2ae4564a5d8828","md5":"470b1cbed50cfd49661206164f366a31","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2001 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/ehandler.c","type":"file","name":"ehandler.c","base_name":"ehandler","extension":".c","size":3152,"date":"2020-03-21","sha1":"6034642830ec79031fdd953538670148c3be2264","md5":"858c86164b7dba904a3726fa7f27ba23","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":5,"end_line":6,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1994 Theodore Ts'o","start_line":5,"end_line":6}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/emptydir.c","type":"file","name":"emptydir.c","base_name":"emptydir","extension":".c","size":4562,"date":"2020-03-21","sha1":"30bdcf4dd7d2ba1c44fb9fb5df423220de051e79","md5":"eb55ee157feb228c5f1a5dec7c2a0682","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1998 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/extend.c","type":"file","name":"extend.c","base_name":"extend","extension":".c","size":1529,"date":"2020-03-21","sha1":"607b4799aafed70aeac302464304e16da459f61c","md5":"ea80614abf0397aacd24eef2ec279ae6","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995 Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/extents.c","type":"file","name":"extents.c","base_name":"extents","extension":".c","size":14721,"date":"2020-03-21","sha1":"2a811b15f676a4f06753e11e2bfb38e4c6a0f2f1","md5":"94f70bcccd1eb13c804763f4e732dcc9","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,"licenses":[{"key":"lgpl-2.0","score":90.48,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":19,"match_coverage":90.48,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2014 Oracle","start_line":4,"end_line":4}],"holders":[{"value":"Oracle","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/flushb.c","type":"file","name":"flushb.c","base_name":"flushb","extension":".c","size":1375,"date":"2020-03-21","sha1":"99a288b64c96588be926ef93ce612a90a5517f8b","md5":"8e11064dd7bb8dbe8222c101754e871e","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":10,"end_line":12,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright 1997, 2000, by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/iscan.c","type":"file","name":"iscan.c","base_name":"iscan","extension":".c","size":2607,"date":"2020-03-21","sha1":"3bf4129f2d38dbb9ccaf67f22bb3312f445d3272","md5":"266317cce15a13dcfe70c72a6979ff40","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/jfs_user.h","type":"file","name":"jfs_user.h","base_name":"jfs_user","extension":".h","size":5950,"date":"2020-03-21","sha1":"0c547230bb7d3f5dde7152b2090e2ee07698647e","md5":"8db91b8aecec6942230c478d22136e20","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,"licenses":[{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":7,"end_line":9,"matched_rule":{"identifier":"gpl-2.0-plus_313.RULE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":23,"matched_length":23,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2000 Stephen C. Tweedie","start_line":5,"end_line":5}],"holders":[{"value":"Stephen C. Tweedie","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/journal.c","type":"file","name":"journal.c","base_name":"journal","extension":".c","size":32143,"date":"2020-03-21","sha1":"87d8f541e9e2049ad132bfee2f0a664c8d2f4c63","md5":"f7ade9097675a73fce557cfb0bfb16bd","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,"licenses":[{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":10,"end_line":12,"matched_rule":{"identifier":"gpl-2.0-plus_313.RULE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":23,"matched_length":23,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2000 Andreas Dilger","start_line":4,"end_line":5},{"value":"Copyright (c) 2000 Theodore Ts'o","start_line":4,"end_line":5},{"value":"Copyright (c) 1999 Red Hat Software","start_line":7,"end_line":8}],"holders":[{"value":"Andreas Dilger","start_line":4,"end_line":5},{"value":"Theodore Ts'o","start_line":4,"end_line":5},{"value":"Red Hat Software","start_line":7,"end_line":8}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/logfile.c","type":"file","name":"logfile.c","base_name":"logfile","extension":".c","size":7899,"date":"2020-03-21","sha1":"73a15d50d208f8b3f9dc53b17c2370bdb2155b7f","md5":"b7eb9c80b671bbe44c763e2dcefbf01b","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1996, 1997 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":27799,"date":"2020-03-21","sha1":"66da318479dc3e97a3d3ba8ceb039b85390df794","md5":"a13b53d8f0f7552cb8ff4bc205e6a84f","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/message.c","type":"file","name":"message.c","base_name":"message","extension":".c","size":12603,"date":"2020-03-21","sha1":"2aa8b303805badb51ef6a0364fbdb968d61c1f54","md5":"acc752186000325de4822cbbf7645fe7","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright 1996, 1997 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/mtrace.awk","type":"file","name":"mtrace.awk","base_name":"mtrace","extension":".awk","size":878,"date":"2020-03-21","sha1":"cbdb9d6a5a4aca8d41396448d7dd3aeee79305ba","md5":"53d1d28ea02c73c68c84a849a1eb9591","mime_type":"text/x-awk","file_type":"awk script, ASCII text executable","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/mtrace.c","type":"file","name":"mtrace.c","base_name":"mtrace","extension":".c","size":4217,"date":"2020-03-21","sha1":"488e9e3949ef54680c5c8c7bda7b6815e9242982","md5":"0c9d1f938b721caca0d4ae4de313742f","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":6,"end_line":19,"matched_rule":{"identifier":"lgpl-2.0-plus_37.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":118,"matched_length":118,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1991, 1992 Free Software Foundation, Inc.","start_line":2,"end_line":4}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"mike@ai.mit.edu","start_line":21,"end_line":21}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/mtrace.h","type":"file","name":"mtrace.h","base_name":"mtrace","extension":".h","size":6862,"date":"2020-03-21","sha1":"3fd39f30399e003b1de7772173597bdef2993df3","md5":"4c2a688532abcbde09c402ecc8ada9d4","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_37.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":118,"matched_length":118,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright 1990, 1991, 1992 Free Software Foundation, Inc.","start_line":2,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[{"email":"mike@ai.mit.edu","start_line":20,"end_line":20}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/pass1.c","type":"file","name":"pass1.c","base_name":"pass1","extension":".c","size":126137,"date":"2020-03-21","sha1":"c2290ef2b2e033a3f05039166fa7f150fc7a0b07","md5":"0ec7f8259b034ba52f32407f6f2ccec2","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/pass1b.c","type":"file","name":"pass1b.c","base_name":"pass1b","extension":".c","size":30254,"date":"2020-03-21","sha1":"dc23d74073de316d0188d56119c2995e2f480317","md5":"f67a30a95f967a0f80d913e006a5b872","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":23,"end_line":25,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997 Theodore Ts'o","start_line":21,"end_line":21}],"holders":[{"value":"Theodore Ts'o","start_line":21,"end_line":21}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/pass2.c","type":"file","name":"pass2.c","base_name":"pass2","extension":".c","size":54933,"date":"2020-03-21","sha1":"fed67dee4e5ffebe4da2e7c786be9a6c6c02a7be","md5":"c98da806c8b2e48cfe8d24e1498eccb5","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/pass3.c","type":"file","name":"pass3.c","base_name":"pass3","extension":".c","size":24464,"date":"2020-03-21","sha1":"516ba8f403e8e111139dd40fb72d33e58c31e6dd","md5":"dbfe728c5614a8d01b357568d25c5974","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/pass4.c","type":"file","name":"pass4.c","base_name":"pass4","extension":".c","size":8245,"date":"2020-03-21","sha1":"6dd34a9adb5839fe0dc27ab1de02365baec110d6","md5":"676f08e181bf97e416b57cd12b7ce4f8","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/pass5.c","type":"file","name":"pass5.c","base_name":"pass5","extension":".c","size":26793,"date":"2020-03-21","sha1":"1093f65693e85f42e0121703dc07ce651b01c2c7","md5":"5228c3a9469640786d01a16dbc89e58d","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/problem.c","type":"file","name":"problem.c","base_name":"problem","extension":".c","size":81487,"date":"2020-03-21","sha1":"a33adc6539afff99a6691107aaf6838c79c2a1a2","md5":"9f9b0362a395b9a270bc8d8e1af387d4","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright 1996, 1997 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/problem.h","type":"file","name":"problem.h","base_name":"problem","extension":".h","size":37115,"date":"2020-03-21","sha1":"c5f011bf4c5e9ffe0d9ba096cef1d0ce208cf0fc","md5":"04b9b0491d161fd94f291dc4aa4c24eb","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright 1996 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/problemP.h","type":"file","name":"problemP.h","base_name":"problemP","extension":".h","size":1571,"date":"2020-03-21","sha1":"97bc5c6ae98bc6fb5639e4bfa8ea23a12bb0ec2c","md5":"3f2ae1b90b65a22d10fb520367962e4f","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1997 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/quota.c","type":"file","name":"quota.c","base_name":"quota","extension":".c","size":3298,"date":"2020-03-21","sha1":"bf58f24ee5e16f802ea2166e35a95a9ad067f532","md5":"c51cd1874e36f155f6c8e148de1a826d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/readahead.c","type":"file","name":"readahead.c","base_name":"readahead","extension":".c","size":5954,"date":"2020-03-21","sha1":"cc2d1b692f50c7f7d39e4d994b26371dde614b7c","md5":"f8ea098e27194a2c8cf6ea40fdde87d2","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2014 Oracle","start_line":4,"end_line":4}],"holders":[{"value":"Oracle","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/recovery.c","type":"file","name":"recovery.c","base_name":"recovery","extension":".c","size":22821,"date":"2020-03-21","sha1":"7b1db12bd130ed325b41c4f40cad4159fda00143","md5":"7480f467f6674481808ddf2a33fd7a1f","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,"licenses":[{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":8,"end_line":10,"matched_rule":{"identifier":"gpl-2.0-plus_220.RULE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":34,"matched_length":34,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus"],"copyrights":[{"value":"Copyright 1999-2000 Red Hat Software","start_line":6,"end_line":6}],"holders":[{"value":"Red Hat Software","start_line":6,"end_line":6}],"authors":[{"value":"Stephen C. Tweedie ","start_line":4,"end_line":4}],"packages":[],"emails":[{"email":"sct@redhat.com","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/region.c","type":"file","name":"region.c","base_name":"region","extension":".c","size":4777,"date":"2020-03-21","sha1":"61ed3e23822f94bd1c6191704e604fb00f2d9110","md5":"2fd940d6053c0ed56b2aea446ed637b1","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2001 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/rehash.c","type":"file","name":"rehash.c","base_name":"rehash","extension":".c","size":28332,"date":"2020-03-21","sha1":"b61ae9043ccf1c6182129c7fd617303c3c2d963b","md5":"a2e43ce1efb81cc4ab952a64d9600d83","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2002 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/revoke.c","type":"file","name":"revoke.c","base_name":"revoke","extension":".c","size":22735,"date":"2020-03-21","sha1":"b468c178d4621318d223ad2c9fa4e1c1d117a1f6","md5":"8c1a4c83b3e2e5e15c1efb13c99fd590","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,"licenses":[{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":8,"end_line":10,"matched_rule":{"identifier":"gpl-2.0-plus_220.RULE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":34,"matched_length":34,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus"],"copyrights":[{"value":"Copyright 2000 Red Hat corp","start_line":6,"end_line":6}],"holders":[{"value":"Red Hat corp","start_line":6,"end_line":6}],"authors":[{"value":"Stephen C. Tweedie ","start_line":4,"end_line":4}],"packages":[],"emails":[{"email":"sct@redhat.com","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/scantest.c","type":"file","name":"scantest.c","base_name":"scantest","extension":".c","size":2960,"date":"2020-03-21","sha1":"3792e50f524de9609c816261c3d1fd5061b53254","md5":"b73188bdf53d45463a8dfd1ccdb2c893","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/sigcatcher.c","type":"file","name":"sigcatcher.c","base_name":"sigcatcher","extension":".c","size":8299,"date":"2020-03-21","sha1":"188475105aaa70ff45c59ce0623f663dfc595ef1","md5":"2f9b65c2a53cd07d0dec9a3558677214","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2011 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/super.c","type":"file","name":"super.c","base_name":"super","extension":".c","size":34785,"date":"2020-03-21","sha1":"ed641666ea4669092f4ea89922a8ad0f57e75256","md5":"cb69a085cbe0dcdf65c3bb9d6f55a241","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/unix.c","type":"file","name":"unix.c","base_name":"unix","extension":".c","size":57312,"date":"2020-03-21","sha1":"9221c46438f36c2d3034101659f121da642b7860","md5":"a03e9b8aa09b8ebdb3e4f657e2dfd8a1","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/e2fsck/util.c","type":"file","name":"util.c","base_name":"util","extension":".c","size":20343,"date":"2020-03-21","sha1":"1287a9aa69626c8f224ce36d5d5c2752d537821b","md5":"a633fc5806cd2e6db185a62f347c10b8","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed","type":"directory","name":"ext2ed","base_name":"ext2ed","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":23,"dirs_count":1,"size_count":400733,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/blockbitmap_com.c","type":"file","name":"blockbitmap_com.c","base_name":"blockbitmap_com","extension":".c","size":6600,"date":"2020-03-21","sha1":"0fc50659b71aaa82fb86a95067e057b90ed58ba3","md5":"2c836908bbed568578f5eb2da58ef035","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":15,"end_line":15}],"holders":[{"value":"Gadi Oxman","start_line":15,"end_line":15}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/COPYRIGHT","type":"file","name":"COPYRIGHT","base_name":"COPYRIGHT","extension":"","size":18185,"date":"2020-03-21","sha1":"75cadb9188a364774ce3c4b721028c9b3b24d11c","md5":"2046f3a00446244d3b3b9f19060bbfa4","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,"licenses":[{"key":"gpl-1.0-plus","score":88.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":1,"end_line":2,"matched_rule":{"identifier":"gpl-1.0-plus_16.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":16,"matched_length":16,"match_coverage":100.0,"rule_relevance":88}},{"key":"gpl-2.0","score":100.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":8,"end_line":346,"matched_rule":{"identifier":"gpl-2.0_565.RULE","license_expression":"gpl-2.0","licenses":["gpl-2.0"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":2921,"matched_length":2921,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-1.0-plus","gpl-2.0"],"copyrights":[{"value":"Copyright (c) 1989, 1991 Free Software Foundation, Inc.","start_line":11,"end_line":13},{"value":"copyrighted by the Free Software Foundation","start_line":258,"end_line":263}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":11,"end_line":13},{"value":"the Free Software Foundation","start_line":258,"end_line":263}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/dir_com.c","type":"file","name":"dir_com.c","base_name":"dir_com","extension":".c","size":20099,"date":"2020-03-21","sha1":"f4095cee02564990d339c4ef1ebf1a6dedad315d","md5":"439c1dd2d8b7bb09acb9c131fd3fc16a","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":27,"end_line":27}],"holders":[{"value":"Gadi Oxman","start_line":27,"end_line":27}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/disk.c","type":"file","name":"disk.c","base_name":"disk","extension":".c","size":5889,"date":"2020-03-21","sha1":"f3f7ba743ee1596f49726d7e732c4008d49d1c98","md5":"eac1101423191b55815198c38f8d7bca","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":21,"end_line":21}],"holders":[{"value":"Gadi Oxman","start_line":21,"end_line":21}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/ext2.descriptors","type":"file","name":"ext2.descriptors","base_name":"ext2","extension":".descriptors","size":21538,"date":"2020-03-21","sha1":"fa7b1d13f2822d3423d7feb0ce10d7252db17d2b","md5":"b63358d186a24fb68608242c0dc0c517","mime_type":"text/x-c","file_type":"C source, ASCII text","programming_language":"Perl6","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1992, 1993, 1994 Remy Card (card@masi.ibp.fr) Laboratoire","start_line":20,"end_line":22},{"value":"Copyright (c) 1991, 1992 Linus Torvalds","start_line":28,"end_line":28}],"holders":[{"value":"Remy Card Laboratoire","start_line":20,"end_line":22},{"value":"Linus Torvalds","start_line":28,"end_line":28}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":20,"end_line":20}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/ext2_com.c","type":"file","name":"ext2_com.c","base_name":"ext2_com","extension":".c","size":2289,"date":"2020-03-21","sha1":"3cf52d6bd41237d439bbd5013f50bce4fe4a591f","md5":"bed3f509af1e3540b838efeb01103d3e","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":15,"end_line":15}],"holders":[{"value":"Gadi Oxman","start_line":15,"end_line":15}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/ext2ed.8.in","type":"file","name":"ext2ed.8.in","base_name":"ext2ed.8","extension":".in","size":1820,"date":"2020-03-21","sha1":"e0841d11574ddb8a2e0a93d1c7301a49b2e94bc4","md5":"16c472e25547a6cc85ac354b52d46e03","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tgud@tochnapc2.technion.ac.il","start_line":69,"end_line":69}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/ext2ed.conf.in","type":"file","name":"ext2ed.conf.in","base_name":"ext2ed.conf","extension":".in","size":2411,"date":"2020-03-21","sha1":"c3ccb3d3c045f1c10b09bbaea05652aee468026d","md5":"8c780210785b036430525797c7b96941","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/ext2ed.h","type":"file","name":"ext2ed.h","base_name":"ext2ed","extension":".h","size":13839,"date":"2020-03-21","sha1":"554926a9018f702d7d46e3c1207555a6a9d70bc6","md5":"b1c555698d769877321077798646317e","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":16,"end_line":16}],"holders":[{"value":"Gadi Oxman","start_line":16,"end_line":16}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/file_com.c","type":"file","name":"file_com.c","base_name":"file_com","extension":".c","size":13260,"date":"2020-03-21","sha1":"928f776b03872031aac56c020372f209afcf45a1","md5":"c4b9db5489454354584e1a00af4d0724","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":13,"end_line":13}],"holders":[{"value":"Gadi Oxman","start_line":13,"end_line":13}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/general_com.c","type":"file","name":"general_com.c","base_name":"general_com","extension":".c","size":20921,"date":"2020-03-21","sha1":"6e4003cdd36ae27576b7f322048949adcce370de","md5":"40bc6cd4154df124dca25ed78e3f8b3a","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,"licenses":[{"key":"gpl-1.0-plus","score":66.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":94,"end_line":94,"matched_rule":{"identifier":"gpl-1.0-plus_17.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":12,"matched_length":12,"match_coverage":100.0,"rule_relevance":66}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":13,"end_line":13},{"value":"Copyright (c) 1995 Gadi Oxman","start_line":91,"end_line":96}],"holders":[{"value":"Gadi Oxman","start_line":13,"end_line":13},{"value":"Gadi Oxman","start_line":91,"end_line":96}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/group_com.c","type":"file","name":"group_com.c","base_name":"group_com","extension":".c","size":4623,"date":"2020-03-21","sha1":"63e9cdc5c083cfbc2e166440f94807b96d9f3377","md5":"01171cb24f9ec1bb615bec90316e6733","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":11,"end_line":11}],"holders":[{"value":"Gadi Oxman","start_line":11,"end_line":11}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/init.c","type":"file","name":"init.c","base_name":"init","extension":".c","size":20805,"date":"2020-03-21","sha1":"0e15fa1fc7699a37f077aec3461e82ce977f98a8","md5":"40c75abaeeac18019abb101430ab8066","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":13,"end_line":13}],"holders":[{"value":"Gadi Oxman","start_line":13,"end_line":13}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/inode_com.c","type":"file","name":"inode_com.c","base_name":"inode_com","extension":".c","size":11500,"date":"2020-03-21","sha1":"709a6b69d7f71472d87ed0398e69fa34c93d756c","md5":"436ff6279ccb8c919bfa6cb78ab62fba","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":11,"end_line":11}],"holders":[{"value":"Gadi Oxman","start_line":11,"end_line":11}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/inodebitmap_com.c","type":"file","name":"inodebitmap_com.c","base_name":"inodebitmap_com","extension":".c","size":4592,"date":"2020-03-21","sha1":"8c25dce7cc38ffae173558375466b3a70e035d06","md5":"9c0855ad9cee883cf293d6cfc47e8e75","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":15,"end_line":15}],"holders":[{"value":"Gadi Oxman","start_line":15,"end_line":15}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/main.c","type":"file","name":"main.c","base_name":"main","extension":".c","size":13644,"date":"2020-03-21","sha1":"12c4d0c657d7051d4d6574fd0b679ab7521b9ca4","md5":"1128a1a7ccfe4d33df3897461e1788e3","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":21,"end_line":21}],"holders":[{"value":"Gadi Oxman","start_line":21,"end_line":21}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":2710,"date":"2020-03-21","sha1":"9e7c27782a4ef636179133f1099da358d166a632","md5":"88043eccd7c0986a046fdd2704ebf853","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/README","type":"file","name":"README","base_name":"README","extension":"","size":5965,"date":"2020-03-21","sha1":"f4ad318a2798cbf50d09ee876ba82bf09104e7b9","md5":"c7a76e64a1243481ec8d04ad27870c19","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@MIT.EDU","start_line":38,"end_line":38},{"email":"Christian.Bac@nt-evry.fr","start_line":60,"end_line":60},{"email":"tgud@tochnapc2.technion.ac.il","start_line":158,"end_line":158}],"urls":[{"url":"http://tochnapc2.technion.ac.il/","start_line":78,"end_line":78}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/super_com.c","type":"file","name":"super_com.c","base_name":"super_com","extension":".c","size":3964,"date":"2020-03-21","sha1":"ad15a86527a1a1f16bb786e1a6d4b4ab20194f4f","md5":"399f34a4dd7d7286f12ca17c4a0d52a3","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":13,"end_line":13}],"holders":[{"value":"Gadi Oxman","start_line":13,"end_line":13}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/win.c","type":"file","name":"win.c","base_name":"win","extension":".c","size":6083,"date":"2020-03-21","sha1":"3830d7d1beea506f9908f472c69c224807be4d8c","md5":"3114fab45c63940e21987cb90dfd67e1","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":16,"end_line":16}],"holders":[{"value":"Gadi Oxman","start_line":16,"end_line":16}],"authors":[],"packages":[],"emails":[{"email":"Christian.Bac@int-evry.fr","start_line":12,"end_line":12}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/doc","type":"directory","name":"doc","base_name":"doc","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":199996,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/doc/ext2ed-design.sgml","type":"file","name":"ext2ed-design.sgml","base_name":"ext2ed-design","extension":".sgml","size":102077,"date":"2020-03-21","sha1":"42dbf7aaeef592e417340e7e74da67b9ae8603c2","md5":"a8caa9ae9126b209c53b5721ff61f7a8","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":100.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3331,"end_line":3334,"matched_rule":{"identifier":"gpl-1.0-plus_19.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":46,"matched_length":46,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":3324,"end_line":3327},{"value":"Copyright (c) 1992, 1993, 1994, 1995 Remy Card (card@masi.ibp.fr) Laboratoire MASI - Institut Blaise Pascal","start_line":3350,"end_line":3352},{"value":"Copyright (c) 1991, 1992 Linus Torvalds","start_line":3359,"end_line":3359}],"holders":[{"value":"Gadi Oxman","start_line":3324,"end_line":3327},{"value":"Remy Card Laboratoire MASI - Institut Blaise Pascal","start_line":3350,"end_line":3352},{"value":"Linus Torvalds","start_line":3359,"end_line":3359}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":3351,"end_line":3351},{"email":"tgud@tochnapc2.technion.ac.il","start_line":3450,"end_line":3450}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/doc/ext2fs-overview.sgml","type":"file","name":"ext2fs-overview.sgml","base_name":"ext2fs-overview","extension":".sgml","size":45846,"date":"2020-03-21","sha1":"7efe46fdc543b5720c08da19b10812ad77884007","md5":"c1fa1010949e483de11a16b020e59fd9","mime_type":"text/x-c++","file_type":"C++ source, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1992, 1993, 1994, 1995 Remy Card (card@masi.ibp.fr) Laboratoire MASI - Institut Blaise Pascal","start_line":1471,"end_line":1473},{"value":"Copyright (c) 1991, 1992 Linus Torvalds","start_line":1480,"end_line":1480}],"holders":[{"value":"Remy Card Laboratoire MASI - Institut Blaise Pascal","start_line":1471,"end_line":1473},{"value":"Linus Torvalds","start_line":1480,"end_line":1480}],"authors":[],"packages":[],"emails":[{"email":"tgud@tochnapc2.technion.ac.il","start_line":10,"end_line":10},{"email":"card@masi.ibp.fr","start_line":1472,"end_line":1472}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/ext2ed/doc/user-guide.sgml","type":"file","name":"user-guide.sgml","base_name":"user-guide","extension":".sgml","size":52073,"date":"2020-03-21","sha1":"5f3c7a73a6de68e0d4a52f58ff6ee025cd3854d3","md5":"c91b0760b6f243107b66663f36a30310","mime_type":"text/html","file_type":"HTML document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":100.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":2131,"end_line":2134,"matched_rule":{"identifier":"gpl-1.0-plus_19.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":46,"matched_length":46,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1995 Gadi Oxman","start_line":2124,"end_line":2127},{"value":"Copyright (c) 1992, 1993, 1994, 1995 Remy Card (card@masi.ibp.fr) Laboratoire MASI - Institut Blaise Pascal","start_line":2150,"end_line":2152},{"value":"Copyright (c) 1991, 1992 Linus Torvalds","start_line":2159,"end_line":2159}],"holders":[{"value":"Gadi Oxman","start_line":2124,"end_line":2127},{"value":"Remy Card Laboratoire MASI - Institut Blaise Pascal","start_line":2150,"end_line":2152},{"value":"Linus Torvalds","start_line":2159,"end_line":2159}],"authors":[],"packages":[],"emails":[{"email":"tgud@tochnapc2.technion.ac.il","start_line":9,"end_line":9},{"email":"card@masi.ibp.fr","start_line":2151,"end_line":2151}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include","type":"directory","name":"include","base_name":"include","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":24,"dirs_count":7,"size_count":9077,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/mingw","type":"directory","name":"mingw","base_name":"mingw","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":2,"size_count":1937,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/mingw/grp.h","type":"file","name":"grp.h","base_name":"grp","extension":".h","size":220,"date":"2020-03-21","sha1":"bb10f82c1133a4021318fa6cd0eb03de12c84640","md5":"039f66c46ad9e924deef306f96f6eb01","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/mingw/pwd.h","type":"file","name":"pwd.h","base_name":"pwd","extension":".h","size":264,"date":"2020-03-21","sha1":"26efa6969f6843054e622dd7a7869302c597c047","md5":"c1426f0e6eb33759b4b028a5156ecf1c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/mingw/unistd.h","type":"file","name":"unistd.h","base_name":"unistd","extension":".h","size":249,"date":"2020-03-21","sha1":"dbf3bf69602d603efd94b5a4ab2fbc5b76d99117","md5":"e021f3ed4219d614630290d2cdd08010","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/mingw/linux","type":"directory","name":"linux","base_name":"linux","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":521,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/mingw/linux/types.h","type":"file","name":"types.h","base_name":"types","extension":".h","size":521,"date":"2020-03-21","sha1":"674571701653fa92e075ea501390be996b7fc0e9","md5":"6ba856ae240a1812570d4cbf77e3c1d8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/mingw/sys","type":"directory","name":"sys","base_name":"sys","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":683,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/mingw/sys/stat.h","type":"file","name":"stat.h","base_name":"stat","extension":".h","size":291,"date":"2020-03-21","sha1":"2edc2167ef3fcefadb6c0014127a3d92aa3ad37d","md5":"e0cb5dcac7896abcb17a062755520489","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/mingw/sys/sysmacros.h","type":"file","name":"sysmacros.h","base_name":"sysmacros","extension":".h","size":258,"date":"2020-03-21","sha1":"fec5151f706a4a68891a634f046ca409c49cf25e","md5":"2bec3d5dc96cc6b1f32cb773184ccbbe","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/mingw/sys/types.h","type":"file","name":"types.h","base_name":"types","extension":".h","size":134,"date":"2020-03-21","sha1":"987fd68964d667e1c5cf565d34c52fdc55b0c3c7","md5":"01041d87e493f4e4a9327910033d12ba","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix","type":"directory","name":"nonunix","base_name":"nonunix","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":17,"dirs_count":3,"size_count":7140,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/config.h","type":"file","name":"config.h","base_name":"config","extension":".h","size":368,"date":"2020-03-21","sha1":"f2e413ce4eabbd10f174d612f902c5567a9c9ac5","md5":"1b9859877d83f653d14d849977890adf","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/dirent.h","type":"file","name":"dirent.h","base_name":"dirent","extension":".h","size":0,"date":"2020-03-21","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/getopt.h","type":"file","name":"getopt.h","base_name":"getopt","extension":".h","size":4711,"date":"2020-03-21","sha1":"67a2d76ebed08e4557a285d98832f841b71e40b6","md5":"167b162f6035f9fbdb0a1a0cc5e43667","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":3,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_63.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":136,"matched_length":136,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1989,90,91,92,93,94,96,97 Free Software Foundation, Inc.","start_line":2,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/grp.h","type":"file","name":"grp.h","base_name":"grp","extension":".h","size":270,"date":"2020-03-21","sha1":"de1131b283eef256ee97455e237922b8d1d78b64","md5":"f2c9d5649c836a4787307339f3b2ff17","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/pwd.h","type":"file","name":"pwd.h","base_name":"pwd","extension":".h","size":352,"date":"2020-03-21","sha1":"56c74d18b22cfa66c3a20893fe7cbf533d13976a","md5":"f455529277fcde2d5a82faab15046b85","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/termios.h","type":"file","name":"termios.h","base_name":"termios","extension":".h","size":0,"date":"2020-03-21","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/unistd.h","type":"file","name":"unistd.h","base_name":"unistd","extension":".h","size":784,"date":"2020-03-21","sha1":"84ac60b4d711a03bb8370cab945bad696ede1428","md5":"6822e5d7d968f22f822d79204c89940d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/utime.h","type":"file","name":"utime.h","base_name":"utime","extension":".h","size":23,"date":"2020-03-21","sha1":"67ed6d57bc96a7ce93e348facd9ec2613c1e9b9f","md5":"d5266620624dcf491d281557d2aaf16c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/asm","type":"directory","name":"asm","base_name":"asm","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":28,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/asm/types.h","type":"file","name":"types.h","base_name":"types","extension":".h","size":28,"date":"2020-03-21","sha1":"993258a8a33f2ea18e3822ac554be2943e922fc8","md5":"c569e8c299bc78819e6a39ba839b4ffd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/linux","type":"directory","name":"linux","base_name":"linux","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":586,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/linux/types.h","type":"file","name":"types.h","base_name":"types","extension":".h","size":586,"date":"2020-03-21","sha1":"f74908fe170de28b77aaf2be341d1dd08e9fee22","md5":"17fff2a033556fbcc873dfb726ad4c84","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/sys","type":"directory","name":"sys","base_name":"sys","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":0,"size_count":18,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/sys/file.h","type":"file","name":"file.h","base_name":"file","extension":".h","size":0,"date":"2020-03-21","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/sys/ioctl.h","type":"file","name":"ioctl.h","base_name":"ioctl","extension":".h","size":0,"date":"2020-03-21","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/sys/param.h","type":"file","name":"param.h","base_name":"param","extension":".h","size":0,"date":"2020-03-21","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/sys/resource.h","type":"file","name":"resource.h","base_name":"resource","extension":".h","size":0,"date":"2020-03-21","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/sys/socket.h","type":"file","name":"socket.h","base_name":"socket","extension":".h","size":0,"date":"2020-03-21","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/sys/time.h","type":"file","name":"time.h","base_name":"time","extension":".h","size":18,"date":"2020-03-21","sha1":"58edacb55bbc3a7fe5f50cf0d6407f5fdb74e3a3","md5":"fc60e8aa12e7ffb810269f343a18cb5a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/include/nonunix/sys/wait.h","type":"file","name":"wait.h","base_name":"wait","extension":".h","size":0,"date":"2020-03-21","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/install-utils","type":"directory","name":"install-utils","base_name":"install-utils","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":2302,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/install-utils/compile_manpages","type":"file","name":"compile_manpages","base_name":"compile_manpages","extension":"","size":216,"date":"2020-03-21","sha1":"e4d7da8ad4b35eb729ffa121eec7a517b4effaa8","md5":"85a785eee834d27a7dd841fbd526e627","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/install-utils/convfstab","type":"file","name":"convfstab","base_name":"convfstab","extension":"","size":1618,"date":"2020-03-21","sha1":"dde2f47f8abbe15627cd5bfe0e2283fbb820eda6","md5":"8266bdfbd513f6acb509319310d1458b","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"public-domain","score":22.0,"name":"Public Domain","short_name":"Public Domain","category":"Public Domain","is_exception":false,"owner":"Unspecified","homepage_url":"http://www.linfo.org/publicdomain.html","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:public-domain","spdx_license_key":null,"spdx_url":"","start_line":4,"end_line":4,"matched_rule":{"identifier":"public-domain_78.RULE","license_expression":"public-domain","licenses":["public-domain"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":4,"matched_length":4,"match_coverage":100.0,"rule_relevance":22}}],"license_expressions":["public-domain"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"eowmob@exp-math.uni-essen.de","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/install-utils/remove_preformat_manpages","type":"file","name":"remove_preformat_manpages","base_name":"remove_preformat_manpages","extension":"","size":468,"date":"2020-03-21","sha1":"6dfbbf5cc89449474f98b96490bca1e2c0361375","md5":"d0995c4abf1eeda11bbb0900ccaac07f","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl","type":"directory","name":"intl","base_name":"intl","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":51,"dirs_count":0,"size_count":391186,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/bindtextdom.c","type":"file","name":"bindtextdom.c","base_name":"bindtextdom","extension":".c","size":9779,"date":"2020-03-21","sha1":"1b41b5b1d06d4b5ae531e6c28c8c0a6d17cd932b","md5":"87d2f2dda987831201afe84aed3afd91","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1998, 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/config.charset","type":"file","name":"config.charset","base_name":"config","extension":".charset","size":18186,"date":"2020-03-21","sha1":"e3d2be5d35200dc1a309d1b4af699b5719c8e982","md5":"3e5924f89914a8f5e34f461f9c7cf83b","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":6,"end_line":19,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2000-2004 Free Software Foundation, Inc.","start_line":4,"end_line":4}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"st001906@hrz1.hrz.tu-darmstadt.de","start_line":453,"end_line":453},{"email":"bruno@clisp.org","start_line":454,"end_line":454}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/dcgettext.c","type":"file","name":"dcgettext.c","base_name":"dcgettext","extension":".c","size":1809,"date":"2020-03-21","sha1":"347b09a59d43b96f9d90d339129aab0363ac04aa","md5":"96a9245a583ec2286f135ec30da6e58a","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1999, 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/dcigettext.c","type":"file","name":"dcigettext.c","base_name":"dcigettext","extension":".c","size":33559,"date":"2020-03-21","sha1":"ea8656a0f22840de2c6e114e09a637678dfcce95","md5":"e97dc82c0a25e21401df2d902749dc53","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1999, 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/dcngettext.c","type":"file","name":"dcngettext.c","base_name":"dcngettext","extension":".c","size":1852,"date":"2020-03-21","sha1":"147aad60e68741cd395685193eefd47d79a13ddb","md5":"cabcf58cc99da308545228321d6ad421","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1999, 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/dgettext.c","type":"file","name":"dgettext.c","base_name":"dgettext","extension":".c","size":1785,"date":"2020-03-21","sha1":"aeee32e62cf2f1791a1318a921adaf2789f44812","md5":"382bb570036da46f19a13ab98b64baf2","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1997, 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/dngettext.c","type":"file","name":"dngettext.c","base_name":"dngettext","extension":".c","size":1894,"date":"2020-03-21","sha1":"22d26927ee737ae33702b8b7654d884769d082eb","md5":"4924c56c96ce795ce542a05a6a1f9106","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1997, 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/eval-plural.h","type":"file","name":"eval-plural.h","base_name":"eval-plural","extension":".h","size":2774,"date":"2020-03-21","sha1":"1bcb58ae6f1aa0e49189bf87bff8951ecb60c9f2","md5":"28a43aa136ba85c0028fa71c67b4f467","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/explodename.c","type":"file","name":"explodename.c","base_name":"explodename","extension":".c","size":4519,"date":"2020-03-21","sha1":"44aea15935cf059a720a9dac9463a8f85dbcc1fe","md5":"53ae74be12cf16b4d409cb01fda5e78a","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1998, 2000-2001, 2003 Free Software Foundation, Inc.","start_line":1,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":1,"end_line":2}],"authors":[{"value":"Ulrich Drepper ","start_line":1,"end_line":2}],"packages":[],"emails":[{"email":"drepper@gnu.ai.mit.edu","start_line":2,"end_line":2}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/finddomain.c","type":"file","name":"finddomain.c","base_name":"finddomain","extension":".c","size":5607,"date":"2020-03-21","sha1":"70c087905731a7928ea287181682fa71208afec5","md5":"dd3474cc5ff4fd0faab8a5c7b03490da","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1999, 2000-2001, 2003 Free Software Foundation, Inc.","start_line":2,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":3}],"authors":[{"value":"Ulrich Drepper ","start_line":2,"end_line":3}],"packages":[],"emails":[{"email":"drepper@gnu.org","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/gettext.c","type":"file","name":"gettext.c","base_name":"gettext","extension":".c","size":1900,"date":"2020-03-21","sha1":"3ab2442f4704e723c28ba34e2b1b25fdd9c479d0","md5":"8fad23b26192683dc2b22b9b4ae80d5d","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995, 1997, 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/gettextP.h","type":"file","name":"gettextP.h","base_name":"gettextP","extension":".h","size":6492,"date":"2020-03-21","sha1":"a17c6aa5f9ae14c580aef436b98c2448b682c37e","md5":"2b77fcf74243a60ad8757efdc22e7101","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1999, 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":3}],"authors":[{"value":"Ulrich Drepper ","start_line":2,"end_line":3}],"packages":[],"emails":[{"email":"drepper@cygnus.com","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/gmo.h","type":"file","name":"gmo.h","base_name":"gmo","extension":".h","size":4841,"date":"2020-03-21","sha1":"3cc5de550f360e0d0a34e59b875993618df51a05","md5":"84800f5572120a8701eea5faa9facd2d","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995, 1997, 2000-2002, 2004 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/hash-string.h","type":"file","name":"hash-string.h","base_name":"hash-string","extension":".h","size":1637,"date":"2020-03-21","sha1":"2e562be382469f74f128b9c42c47ec143509225e","md5":"6af762de14fa914886f8994193232ded","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995, 1997-1998, 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/intl-compat.c","type":"file","name":"intl-compat.c","base_name":"intl-compat","extension":".c","size":3367,"date":"2020-03-21","sha1":"dbfeba8ad8afd9ffb4b673cf63430810b3616421","md5":"f7b407ce4892b5ce47e5acb7e0eedd91","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995, 2000-2003 Software Foundation, Inc.","start_line":3,"end_line":3}],"holders":[{"value":"Software Foundation, Inc.","start_line":3,"end_line":3}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/l10nflist.c","type":"file","name":"l10nflist.c","base_name":"l10nflist","extension":".c","size":12041,"date":"2020-03-21","sha1":"1d88ab179ae051cc27a44cf6e9e9e18fd83dfcdd","md5":"8ba5e75b19d02f6cdeecbe8e1d31db44","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1999, 2000-2003 Free Software Foundation, Inc.","start_line":1,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":1,"end_line":2}],"authors":[{"value":"Ulrich Drepper ","start_line":1,"end_line":2}],"packages":[],"emails":[{"email":"drepper@gnu.ai.mit.edu","start_line":2,"end_line":2}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/libgettext.h","type":"file","name":"libgettext.h","base_name":"libgettext","extension":".h","size":5735,"date":"2020-03-21","sha1":"20d2713127ed106c05bf4a8ce21e8cfb87f5ea2c","md5":"cb37f952fa72d0fcc6ddd608e0954f24","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,"licenses":[{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":4,"end_line":16,"matched_rule":{"identifier":"gpl-2.0-plus_82.RULE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":110,"matched_length":110,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/libgnuintl.h.in","type":"file","name":"libgnuintl.h.in","base_name":"libgnuintl.h","extension":".in","size":12906,"date":"2020-03-21","sha1":"79c3575f8b7cf0af46bbc3ef0ec10efe834c84e7","md5":"6e7ed05c76bee6360698c8396b0ee0dd","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1997, 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/loadinfo.h","type":"file","name":"loadinfo.h","base_name":"loadinfo","extension":".h","size":5846,"date":"2020-03-21","sha1":"c4951782644e4b180bef4c8edd162f5bc8c085de","md5":"e2a60b9ef2a0ef4ee9853c798c97e2fa","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1996-1999, 2000-2003 Free Software Foundation, Inc.","start_line":1,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":1,"end_line":3}],"authors":[{"value":"Ulrich Drepper ","start_line":1,"end_line":3}],"packages":[],"emails":[{"email":"drepper@cygnus.com","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/loadmsgcat.c","type":"file","name":"loadmsgcat.c","base_name":"loadmsgcat","extension":".c","size":36463,"date":"2020-03-21","sha1":"b58d985173593238d2280b60c02c179bd99668b4","md5":"b62b721c1f20363277cee4a3ccd6f05c","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1999, 2000-2004 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/localcharset.c","type":"file","name":"localcharset.c","base_name":"localcharset","extension":".c","size":10459,"date":"2020-03-21","sha1":"79a5d27334cf5b603cbd6b273e25fb8298464a7d","md5":"49323f8ee8f168a0518592673cd05cbd","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2000-2003 Free Software Foundation, Inc.","start_line":3,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":3,"end_line":3}],"authors":[{"value":"Bruno Haible ","start_line":20,"end_line":20}],"packages":[],"emails":[{"email":"bruno@clisp.org","start_line":20,"end_line":20}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/localcharset.h","type":"file","name":"localcharset.h","base_name":"localcharset","extension":".h","size":1395,"date":"2020-03-21","sha1":"0f591d0d02019bc84b92cddb9ab8a79450e06206","md5":"406e71f7e3dbdf712e7370798d59cb23","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/locale.alias","type":"file","name":"locale.alias","base_name":"locale","extension":".alias","size":2646,"date":"2020-03-21","sha1":"b72286b047c956b16396ac4ad6e8ef9cd6a2c952","md5":"868c1ab7692e80c68e99c33c86c91262","mime_type":"text/plain","file_type":"ISO-8859 text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1996-2001,2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[{"email":"bugs@gnu.org","start_line":28,"end_line":28}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/localealias.c","type":"file","name":"localealias.c","base_name":"localealias","extension":".c","size":9956,"date":"2020-03-21","sha1":"d19817c2ebf7e7a248542d3ca40b00ca9555f614","md5":"2975b028716951548a95e5608f4064bf","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1999, 2000-2001, 2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/localename.c","type":"file","name":"localename.c","base_name":"localename","extension":".c","size":30817,"date":"2020-03-21","sha1":"783ce1f69ea5e1a32a4ae7f68c9fd20dd1b3f446","md5":"5f1c3c91a2c7fb0436eb75067c58efe4","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1999, 2000-2004 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[{"value":"Ulrich Drepper ","start_line":19,"end_line":20},{"value":"Tor Lillqvist ","start_line":19,"end_line":20}],"packages":[],"emails":[{"email":"drepper@gnu.org","start_line":19,"end_line":19},{"email":"tml@iki.fi","start_line":20,"end_line":20}],"urls":[{"url":"http://www.unicode.org/unicode/onlinedat/languages.html","start_line":768,"end_line":768},{"url":"http://www.ethnologue.com/","start_line":769,"end_line":769}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/log.c","type":"file","name":"log.c","base_name":"log","extension":".c","size":2759,"date":"2020-03-21","sha1":"7c9a9943af40ad1a4ec6d5a822e1ff3e73c203d7","md5":"c2c47932f1d65e07d9b0a99f1447b887","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[{"value":"Bruno Haible ","start_line":19,"end_line":19}],"packages":[],"emails":[{"email":"bruno@clisp.org","start_line":19,"end_line":19}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":17745,"date":"2020-03-21","sha1":"5c973253a5abfe40a93cbb501ee48049e091aa65","md5":"3fbf379cfca7d66344e6962f5bb7c641","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1998, 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/ngettext.c","type":"file","name":"ngettext.c","base_name":"ngettext","extension":".c","size":1980,"date":"2020-03-21","sha1":"47bb16655b6c58602ee0028926499e6649f5745b","md5":"a8e484240881532dcf7bd2d1de538eb8","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995, 1997, 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/os2compat.c","type":"file","name":"os2compat.c","base_name":"os2compat","extension":".c","size":2887,"date":"2020-03-21","sha1":"9d0c83c26957f7a34f68789c4744c14a7640a210","md5":"bf45568da840de6e691ce03b3336bd59","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2001-2002 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/os2compat.h","type":"file","name":"os2compat.h","base_name":"os2compat","extension":".h","size":1558,"date":"2020-03-21","sha1":"1c9444b8e32b40380b93f2714a6e8149d94067ac","md5":"646cb8319e0fb3f20ee48ecf1b73bb10","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2001-2002 Free Software Foundation, Inc.","start_line":3,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":3,"end_line":3}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/osdep.c","type":"file","name":"osdep.c","base_name":"osdep","extension":".c","size":935,"date":"2020-03-21","sha1":"07e8d44be914f76d357b777ea235fba3cf5df2e5","md5":"2443686e7da3c626f42add60308ba1f7","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2001-2002 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/plural-exp.c","type":"file","name":"plural-exp.c","base_name":"plural-exp","extension":".c","size":4013,"date":"2020-03-21","sha1":"7d0f8485dc554d29765f8fcc5327bc0fdf54933e","md5":"16b8de3c32b5e517bce00e3e3c4c4656","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2000-2001, 2003 Free Software Foundation, Inc.","start_line":2,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":3}],"authors":[{"value":"Ulrich Drepper ","start_line":2,"end_line":3}],"packages":[],"emails":[{"email":"drepper@cygnus.com","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/plural-exp.h","type":"file","name":"plural-exp.h","base_name":"plural-exp","extension":".h","size":4063,"date":"2020-03-21","sha1":"07cf5979c064c4faa0d78b063a16e5f9a5acc760","md5":"22110df5274752c91a3226a94d4c1469","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":3}],"authors":[{"value":"Ulrich Drepper ","start_line":2,"end_line":3}],"packages":[],"emails":[{"email":"drepper@cygnus.com","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/plural.c","type":"file","name":"plural.c","base_name":"plural","extension":".c","size":37292,"date":"2020-03-21","sha1":"53a898c53b322faebad65f74997f0736362e3d48","md5":"24f41ca9b8b0587a2ccc1bc00fe56e66","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":25,"end_line":38,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}},{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":306,"end_line":324,"matched_rule":{"identifier":"gpl-2.0-plus_with_bison-exception-2.0_1.RULE","license_expression":"gpl-2.0-plus WITH bison-exception-2.0","licenses":["gpl-2.0-plus","bison-exception-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":148,"matched_length":148,"match_coverage":100.0,"rule_relevance":100}},{"key":"bison-exception-2.0","score":100.0,"name":"Bison exception to GPL 2.0 or later","short_name":"Bison exception to GPL 2.0 or later","category":"Copyleft Limited","is_exception":true,"owner":"Free Software Foundation (FSF)","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bison-exception-2.0","spdx_license_key":null,"spdx_url":"","start_line":306,"end_line":324,"matched_rule":{"identifier":"gpl-2.0-plus_with_bison-exception-2.0_1.RULE","license_expression":"gpl-2.0-plus WITH bison-exception-2.0","licenses":["gpl-2.0-plus","bison-exception-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":148,"matched_length":148,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus","gpl-2.0-plus WITH bison-exception-2.0"],"copyrights":[{"value":"Copyright (c) 2000-2001, 2003 Free Software Foundation, Inc.","start_line":22,"end_line":23},{"value":"Copyright (c) 1984, 1989, 1990, 2000, 2001, 2002 Free Software Foundation, Inc.","start_line":303,"end_line":304}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":22,"end_line":23},{"value":"Free Software Foundation, Inc.","start_line":303,"end_line":304}],"authors":[{"value":"Ulrich Drepper ","start_line":22,"end_line":23},{"value":"Richard Stallman","start_line":328,"end_line":329}],"packages":[],"emails":[{"email":"drepper@cygnus.com","start_line":23,"end_line":23}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/plural.y","type":"file","name":"plural.y","base_name":"plural","extension":".y","size":7357,"date":"2020-03-21","sha1":"8362d9af5c85fcc064cc5d5b507e3af45f3a6b9b","md5":"db70883b9fcc4c390afdea0da88005a8","mime_type":"text/plain","file_type":"lex description, ASCII text","programming_language":"C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":6,"end_line":19,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2000-2001, 2003 Free Software Foundation, Inc.","start_line":3,"end_line":4}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":3,"end_line":4}],"authors":[{"value":"Ulrich Drepper ","start_line":3,"end_line":4}],"packages":[],"emails":[{"email":"drepper@cygnus.com","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/printf-args.c","type":"file","name":"printf-args.c","base_name":"printf-args","extension":".c","size":3247,"date":"2020-03-21","sha1":"d21466007ec9babd8736934fbc05a9b590a261a2","md5":"4706d73aa7c8394477338669f70694e1","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1999, 2002-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/printf-args.h","type":"file","name":"printf-args.h","base_name":"printf-args","extension":".h","size":2886,"date":"2020-03-21","sha1":"21951019c95a2175c146587df9a7f021c8a28477","md5":"e69a4d61e727bb5b232fb6d11eb6f14d","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1999, 2002-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/printf-parse.c","type":"file","name":"printf-parse.c","base_name":"printf-parse","extension":".c","size":11967,"date":"2020-03-21","sha1":"c22ef0958eecab03f127d3f90b5c1b01566ecf34","md5":"7ac26e970d818ec225ffb0b4c30c07bc","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1999-2000, 2002-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/printf-parse.h","type":"file","name":"printf-parse.h","base_name":"printf-parse","extension":".h","size":2187,"date":"2020-03-21","sha1":"65823c821db6f4ae8d0826efbe17fc496cf0a961","md5":"2b24efb4b2c9c1523f5ac4c6c2dbb7b6","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1999, 2002-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/printf.c","type":"file","name":"printf.c","base_name":"printf","extension":".c","size":7811,"date":"2020-03-21","sha1":"ef3df869890e51ae5da90831c38463beb7182350","md5":"14f044b9ec656d5fcb40afd5f0214b5e","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2003 Free Software Foundation, Inc.","start_line":2,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":3}],"authors":[{"value":"Bruno Haible ","start_line":2,"end_line":3}],"packages":[],"emails":[{"email":"bruno@clisp.org","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/ref-add.sin","type":"file","name":"ref-add.sin","base_name":"ref-add","extension":".sin","size":1093,"date":"2020-03-21","sha1":"f09ba48dc67367b3cf2112ba9f320c71b164471c","md5":"6989ea7d2d1b7d95097c43f7318f218d","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2000 Free Software Foundation, Inc.","start_line":3,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":3,"end_line":3}],"authors":[{"value":"Bruno Haible ","start_line":20,"end_line":20}],"packages":[],"emails":[{"email":"haible@clisp.cons.org","start_line":20,"end_line":20}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/ref-del.sin","type":"file","name":"ref-del.sin","base_name":"ref-del","extension":".sin","size":1048,"date":"2020-03-21","sha1":"e9d53d50fa94bf820892e2016783b4c02e00c338","md5":"a149aed0d00a26c341d3ca1a5376d916","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2000 Free Software Foundation, Inc.","start_line":3,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":3,"end_line":3}],"authors":[{"value":"Bruno Haible ","start_line":20,"end_line":20}],"packages":[],"emails":[{"email":"haible@clisp.cons.org","start_line":20,"end_line":20}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/relocatable.c","type":"file","name":"relocatable.c","base_name":"relocatable","extension":".c","size":13044,"date":"2020-03-21","sha1":"e9e5eca3c9b1094afbe593f044110d63102c1089","md5":"7cc94c6a122eafd1c54379a1f9def4f5","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2003 Free Software Foundation, Inc.","start_line":2,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":3}],"authors":[{"value":"Bruno Haible ","start_line":2,"end_line":3}],"packages":[],"emails":[{"email":"bruno@clisp.org","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/relocatable.h","type":"file","name":"relocatable.h","base_name":"relocatable","extension":".h","size":2721,"date":"2020-03-21","sha1":"b1e40909232d89b7c414a2a0dcc6c4494ef04eac","md5":"f84596c28db771ce7dfbc4a5302f0cae","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2003 Free Software Foundation, Inc.","start_line":2,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":3}],"authors":[{"value":"Bruno Haible ","start_line":2,"end_line":3}],"packages":[],"emails":[{"email":"bruno@clisp.org","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/textdomain.c","type":"file","name":"textdomain.c","base_name":"textdomain","extension":".c","size":4532,"date":"2020-03-21","sha1":"ea1dfe83df17d87d496c6fd4d343442661db8b30","md5":"06f2862929b26c0a15cef49045226f45","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1995-1998, 2000-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/vasnprintf.c","type":"file","name":"vasnprintf.c","base_name":"vasnprintf","extension":".c","size":21961,"date":"2020-03-21","sha1":"cba5e499752d69436ace11ed37a0f2b6e6fbef89","md5":"d9d4ef7f3716b897b21ef6f67621c9b9","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1999, 2002-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/vasnprintf.h","type":"file","name":"vasnprintf.h","base_name":"vasnprintf","extension":".h","size":2292,"date":"2020-03-21","sha1":"b9904e76dfea43decb5f3f83ba438c50137a5cca","md5":"2c74ddb68d2d5e3b9c8bcd8754b8f93e","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2002-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/vasnwprintf.h","type":"file","name":"vasnwprintf.h","base_name":"vasnwprintf","extension":".h","size":1734,"date":"2020-03-21","sha1":"4db9e9cb4d6091057aae294671bad0668047efcb","md5":"040fcd18c3846a216c85a58aaf0441b6","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2002-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/VERSION","type":"file","name":"VERSION","base_name":"VERSION","extension":"","size":40,"date":"2020-03-21","sha1":"d99be19b1eae0f810d879d650700b21607043df1","md5":"30faa074c7aa4b54b7c57d460e0f6e89","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/wprintf-parse.h","type":"file","name":"wprintf-parse.h","base_name":"wprintf-parse","extension":".h","size":2227,"date":"2020-03-21","sha1":"c38cb65176bf8bffb3d2ef22f6bcb57e6442240d","md5":"85f8236f5dab494c6783e8c3297a1689","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":4,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 1999, 2002-2003 Free Software Foundation, Inc.","start_line":2,"end_line":2}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/intl/xsize.h","type":"file","name":"xsize.h","base_name":"xsize","extension":".h","size":3542,"date":"2020-03-21","sha1":"e81265a236283c8de90037875fde4bbf382cd197","md5":"6df716b7f86241081b4300f6ee7f0a4d","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":5,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0-plus_64.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2003 Free Software Foundation, Inc.","start_line":3,"end_line":3}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":3,"end_line":3}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib","type":"directory","name":"lib","base_name":"lib","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":370,"dirs_count":11,"size_count":2749141,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/Android.bp","type":"file","name":"Android.bp","base_name":"Android","extension":".bp","size":539,"date":"2020-03-21","sha1":"a0ff8d849ae92266837f934e638f876ec7ebbca7","md5":"84ca94d52566c79122d1e9cfa72be704","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2017 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/config.h.in","type":"file","name":"config.h.in","base_name":"config.h","extension":".in","size":27077,"date":"2020-03-21","sha1":"40047fc1fcfb4d6f25c6e6d850688d8e1b55060c","md5":"81ed979f7f06ec5b0a63b95e0a13da32","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://lists.gnu.org/archive/html/bug-texinfo/2013-02/msg00030.html","start_line":790,"end_line":790},{"url":"http://lists.gnu.org/archive/html/bug-gnulib/2012-12/msg00023.html","start_line":800,"end_line":800},{"url":"http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113","start_line":834,"end_line":834}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/dirpaths.h.in","type":"file","name":"dirpaths.h.in","base_name":"dirpaths.h","extension":".in","size":323,"date":"2020-03-21","sha1":"5ed4ce9a4829e83402b53a1b7072eb92723b8532","md5":"72b9fee3cac950c2138e8e5deba4f282","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/fpopen.c","type":"file","name":"fpopen.c","base_name":"fpopen","extension":".c","size":2446,"date":"2020-03-21","sha1":"57fd528f2094b12d1d683d83de488adb052470ca","md5":"5fdb8ef70131e6c9e2efe2f7ca804850","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,"licenses":[{"key":"tso-license","score":100.0,"name":"Theodore Ts'o license","short_name":"Theodore Ts'o license","category":"Permissive","is_exception":false,"owner":"Theodore Ts'o","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:tso-license","spdx_license_key":null,"spdx_url":"","start_line":7,"end_line":21,"matched_rule":{"identifier":"tso-license.LICENSE","license_expression":"tso-license","licenses":["tso-license"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":137,"matched_length":137,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["tso-license"],"copyrights":[{"value":"Copyright Theodore Ts'o, 1996-1999","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/Makefile.bsd-lib","type":"file","name":"Makefile.bsd-lib","base_name":"Makefile","extension":".bsd-lib","size":1072,"date":"2020-03-21","sha1":"c16cdd452c5cc3f7f893e8dec5f7bd452f42509d","md5":"16a60bb55fc61240367ad82ce70fa097","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/Makefile.checker","type":"file","name":"Makefile.checker","base_name":"Makefile","extension":".checker","size":170,"date":"2020-03-21","sha1":"35c28f6acd0d6d7bec8da881fe21b125cc6dd1be","md5":"90cc25dbe0988b697553df1977e3adb6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/Makefile.darwin-lib","type":"file","name":"Makefile.darwin-lib","base_name":"Makefile","extension":".darwin-lib","size":1341,"date":"2020-03-21","sha1":"9bf6da911237215f3a62053be8f3a4a333cbdc0e","md5":"b20e5664e743fd5edd5883cf7bdb0b3d","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/Makefile.elf-lib","type":"file","name":"Makefile.elf-lib","base_name":"Makefile","extension":".elf-lib","size":2473,"date":"2020-03-21","sha1":"98cca7d936f2bcdd749743f995d9d4ab12ae1a0c","md5":"c9ad301a57d0e5d5df065a5562e92bc1","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/Makefile.library","type":"file","name":"Makefile.library","base_name":"Makefile","extension":".library","size":503,"date":"2020-03-21","sha1":"3d0e84a5ddbd42fcaa5e2ab31192c8e341119d7d","md5":"bdc997f04182c1794a6b7b61db0981f6","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/Makefile.profile","type":"file","name":"Makefile.profile","base_name":"Makefile","extension":".profile","size":796,"date":"2020-03-21","sha1":"579591f36219346a4da081c76da342ec6416a1f6","md5":"ef8b80a629387cd04c1bf4c3f7a07460","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/Makefile.solaris-lib","type":"file","name":"Makefile.solaris-lib","base_name":"Makefile","extension":".solaris-lib","size":1920,"date":"2020-03-21","sha1":"82768040152d1408a30d5210a767e82b90221311","md5":"e5430b93422dfb6c0a3b0cfa76c537fc","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid","type":"directory","name":"blkid","base_name":"blkid","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":61,"dirs_count":1,"size_count":196930,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/Android.bp","type":"file","name":"Android.bp","base_name":"Android","extension":".bp","size":1168,"date":"2020-03-21","sha1":"902d952df6230ee58cdcf67f45f1f698fafce81d","md5":"78a3056cb8b6835931d10c1f20fd7f31","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2017 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/blkid.h.in","type":"file","name":"blkid.h.in","base_name":"blkid.h","extension":".in","size":3311,"date":"2020-03-21","sha1":"7aeedb744f8511febb3ccddcd1e7a1c6bd1bb81c","md5":"da243986f68a37355d4299296b58bb2f","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) 2001 Andreas Dilger","start_line":4,"end_line":5},{"value":"Copyright (c) 2003 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Andreas Dilger","start_line":4,"end_line":5},{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/blkid.pc.in","type":"file","name":"blkid.pc.in","base_name":"blkid.pc","extension":".in","size":256,"date":"2020-03-21","sha1":"ff67cc6a805ab29f3fcf4ee0aa5469f126b82cd7","md5":"880aee9c0929ef925981e1392297ada6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/blkid_types.h.in","type":"file","name":"blkid_types.h.in","base_name":"blkid_types.h","extension":".in","size":3484,"date":"2020-03-21","sha1":"f554f45cadb408dca3ef473b62fb47d7fa5c27fe","md5":"c9a805bfa6181d65802f8f1511e04cfd","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/blkidP.h","type":"file","name":"blkidP.h","base_name":"blkidP","extension":".h","size":5806,"date":"2020-03-21","sha1":"594b666f4410e1216265b9236ea0d8529d72c205","md5":"e58aad9fde312f10df72029964f6bf93","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) 2001 Andreas Dilger","start_line":4,"end_line":5},{"value":"Copyright (c) 2003 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Andreas Dilger","start_line":4,"end_line":5},{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/cache.c","type":"file","name":"cache.c","base_name":"cache","extension":".c","size":4489,"date":"2020-03-21","sha1":"3a9d4e8938c3e4a8885e8ec75bcf8902690a8874","md5":"231371e1823ded68e621e562d460a241","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) 2001 Andreas Dilger","start_line":4,"end_line":5},{"value":"Copyright (c) 2003 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Andreas Dilger","start_line":4,"end_line":5},{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/dev.c","type":"file","name":"dev.c","base_name":"dev","extension":".c","size":5617,"date":"2020-03-21","sha1":"1c27618901de3311fd650553b8fae1f3c64801a5","md5":"872ca1ff4a121bb49ae721241cb58924","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) 2001 Andreas Dilger","start_line":4,"end_line":5},{"value":"Copyright (c) 2003 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Andreas Dilger","start_line":4,"end_line":5},{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/devname.c","type":"file","name":"devname.c","base_name":"devname","extension":".c","size":13833,"date":"2020-03-21","sha1":"6db325bbf85db3f84ef0dd70865d85a182cc0772","md5":"af4e1e87c051f1914e102c6b9c710e9f","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) Andries Brouwer","start_line":4,"end_line":6},{"value":"Copyright (c) 1999, 2000, 2001, 2002, 2003 Theodore Ts'o","start_line":4,"end_line":6},{"value":"Copyright (c) 2001 Andreas Dilger","start_line":4,"end_line":6}],"holders":[{"value":"Andries Brouwer","start_line":4,"end_line":6},{"value":"Theodore Ts'o","start_line":4,"end_line":6},{"value":"Andreas Dilger","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/devno.c","type":"file","name":"devno.c","base_name":"devno","extension":".c","size":4879,"date":"2020-03-21","sha1":"e30024ea81fc77f48d9f603df512c7c83b32f339","md5":"ea3fffec16a63c26303ec42f53df5aeb","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) 2000, 2001, 2003 Theodore Ts'o","start_line":4,"end_line":5},{"value":"Copyright (c) 2001 Andreas Dilger","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5},{"value":"Andreas Dilger","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/getsize.c","type":"file","name":"getsize.c","base_name":"getsize","extension":".c","size":4776,"date":"2020-03-21","sha1":"a89ba09b690c5e249e72b9ee5e63e3527cf25d00","md5":"edec53900085a221ee919b9fce3a73f0","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) 1995, 1995 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/libblkid.3.in","type":"file","name":"libblkid.3.in","base_name":"libblkid.3","extension":".in","size":2968,"date":"2020-03-21","sha1":"d15e71b19711d6400024811ccabf7ce6396d0015","md5":"9a0351683d37a1418b1e5f900f0cf863","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":5,"end_line":5,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}},{"key":"lgpl-2.0-plus","score":75.68,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":62,"end_line":77,"matched_rule":{"identifier":"lgpl-2.0-plus_66.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":56,"matched_length":56,"match_coverage":100.0,"rule_relevance":100}},{"key":"other-copyleft","score":90.0,"name":"Other Copyleft Licenses","short_name":"Other Copyleft Licenses","category":"Copyleft","is_exception":false,"owner":"nexB","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:other-copyleft","spdx_license_key":null,"spdx_url":"","start_line":66,"end_line":72,"matched_rule":{"identifier":"other-copyleft_fsf_address_6.RULE","license_expression":"other-copyleft","licenses":["other-copyleft"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":14,"matched_length":14,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["gpl-1.0-plus","lgpl-2.0-plus","other-copyleft"],"copyrights":[{"value":"Copyright 2001 Andreas Dilger (adilger@turbolinux.com)","start_line":1,"end_line":1}],"holders":[{"value":"Andreas Dilger","start_line":1,"end_line":1}],"authors":[{"value":"Andreas Dilger","start_line":48,"end_line":53},{"value":"Ted Ts'o","start_line":48,"end_line":53}],"packages":[],"emails":[{"email":"adilger@turbolinux.com","start_line":1,"end_line":1}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":59,"end_line":59},{"url":"http://www.gnu.org/licenses/licenses.html#LGPL","start_line":76,"end_line":76}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/list.h","type":"file","name":"list.h","base_name":"list","extension":".h","size":4443,"date":"2020-03-21","sha1":"5174dae0dc99d3fb179cc2434f288d8c07bc02f3","md5":"c124769ecd08925911d1d7d6b47f0c3b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/llseek.c","type":"file","name":"llseek.c","base_name":"llseek","extension":".c","size":3058,"date":"2020-03-21","sha1":"428a14eb60be630f6b82ef5d2486a058ee872ee3","md5":"3f361561311e164481113641d494b0c5","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) 1994, 1995, 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":7607,"date":"2020-03-21","sha1":"9eef81d09b32fdf4cd75ece7e325ab9ede2ad1ac","md5":"916f85122683aceeadf2d043b73ddf83","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"lgpl-2.0","score":83.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":5,"end_line":6,"matched_rule":{"identifier":"lgpl-2.0_26.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":15,"matched_length":15,"match_coverage":100.0,"rule_relevance":83}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2001 Theodore Ts'o (tytso@mit.edu)","start_line":3,"end_line":3}],"holders":[{"value":"Theodore Ts'o","start_line":3,"end_line":3}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/probe.c","type":"file","name":"probe.c","base_name":"probe","extension":".c","size":51797,"date":"2020-03-21","sha1":"a09d502cddf27130556e6dc1a14a78e9a7b4f0cc","md5":"2892244d56d2972fe13e24dc3d1d745f","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":10,"end_line":13,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) 1999 by Andries Brouwer","start_line":5,"end_line":8},{"value":"Copyright (c) 1999, 2000, 2003 by Theodore Ts'o","start_line":5,"end_line":8},{"value":"Copyright (c) 2001 by Andreas Dilger","start_line":5,"end_line":8},{"value":"Copyright (c) 2004 Kay Sievers ","start_line":5,"end_line":8}],"holders":[{"value":"Andries Brouwer","start_line":5,"end_line":8},{"value":"Theodore Ts'o","start_line":5,"end_line":8},{"value":"Andreas Dilger","start_line":5,"end_line":8},{"value":"Kay Sievers","start_line":5,"end_line":8}],"authors":[],"packages":[],"emails":[{"email":"kay.sievers@vrfy.org","start_line":8,"end_line":8},{"email":"kzak@redhat.com","start_line":639,"end_line":639}],"urls":[{"url":"http://vrfy.org/projects/volume_id/","start_line":638,"end_line":638},{"url":"http://luks.endorphin.org/LUKS-on-disk-format.pdf","start_line":898,"end_line":898}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/probe.h","type":"file","name":"probe.h","base_name":"probe","extension":".h","size":23199,"date":"2020-03-21","sha1":"26300f2b0213b2a4bca8097383401103e9460608","md5":"b13ae1409f2af1fedc6d14289037a15a","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) 1999 by Andries Brouwer","start_line":4,"end_line":6},{"value":"Copyright (c) 1999, 2000, 2003 by Theodore Ts'o","start_line":4,"end_line":6},{"value":"Copyright (c) 2001 by Andreas Dilger","start_line":4,"end_line":6}],"holders":[{"value":"Andries Brouwer","start_line":4,"end_line":6},{"value":"Theodore Ts'o","start_line":4,"end_line":6},{"value":"Andreas Dilger","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/read.c","type":"file","name":"read.c","base_name":"read","extension":".c","size":10179,"date":"2020-03-21","sha1":"cd21a8f098d36da264ef29732abe2aabbe5fb65e","md5":"eb1375852d28311f1c21ddca73cb46d9","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) 2001, 2003 Theodore Y. Ts'o","start_line":4,"end_line":5},{"value":"Copyright (c) 2001 Andreas Dilger","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Y. Ts'o","start_line":4,"end_line":5},{"value":"Andreas Dilger","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/resolve.c","type":"file","name":"resolve.c","base_name":"resolve","extension":".c","size":3022,"date":"2020-03-21","sha1":"b8d1ba30ec4d09dbe3e75a11b66109edc249927e","md5":"bdce70aaeb6fda28c5b87d0311c3db6f","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) 2001, 2003 Theodore Ts'o","start_line":4,"end_line":5},{"value":"Copyright (c) 2001 Andreas Dilger","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5},{"value":"Andreas Dilger","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/save.c","type":"file","name":"save.c","base_name":"save","extension":".c","size":4448,"date":"2020-03-21","sha1":"d26a7a2473e8ac1ffc83e151781fc0d29a799423","md5":"dc00973b8281d9e787f7718fb4a4ca84","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) 2001 by Andreas Dilger","start_line":4,"end_line":5},{"value":"Copyright (c) 2003 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Andreas Dilger","start_line":4,"end_line":5},{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tag.c","type":"file","name":"tag.c","base_name":"tag","extension":".c","size":10559,"date":"2020-03-21","sha1":"de73b02edc119ecceeb86702ce95950d5903e09b","md5":"0ea4f8d15114a6f77614d6a77b35b758","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) 2001 Andreas Dilger","start_line":4,"end_line":5},{"value":"Copyright (c) 2003 Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Andreas Dilger","start_line":4,"end_line":5},{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/test_probe.in","type":"file","name":"test_probe.in","base_name":"test_probe","extension":".in","size":1564,"date":"2020-03-21","sha1":"7febe8d31c25afc9863bdc65b5d5e613b2bdb7aa","md5":"9d0b730f34baa15193a3a7faa45be1ea","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tst_types.c","type":"file","name":"tst_types.c","base_name":"tst_types","extension":".c","size":1373,"date":"2020-03-21","sha1":"cffb0f25252fa1f7fec75c9e70def8cab7b9f1a4","md5":"35b243c08059133c0e3750ad396fd632","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2006 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/version.c","type":"file","name":"version.c","base_name":"version","extension":".c","size":1005,"date":"2020-03-21","sha1":"362c7e7b78d438fe2db1100e47d93d76524132c9","md5":"dc630b297fba37e9519cd323fcf02738","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) 2004 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests","type":"directory","name":"tests","base_name":"tests","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":38,"dirs_count":0,"size_count":24089,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/cramfs.img.bz2","type":"file","name":"cramfs.img.bz2","base_name":"cramfs.img","extension":".bz2","size":124,"date":"2020-03-21","sha1":"17e4947fc8bcf56b78ae1dc539aec70c8e37b46b","md5":"d3145bf91893455ea36bbbe491e5e525","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/cramfs.results","type":"file","name":"cramfs.results","base_name":"cramfs","extension":".results","size":32,"date":"2020-03-21","sha1":"7715f5b1bda078ecd8453c4e61a3e6cc480d1b7d","md5":"053f1d4eac688143cce28b0d95fc800d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/ext2.img.bz2","type":"file","name":"ext2.img.bz2","base_name":"ext2.img","extension":".bz2","size":356,"date":"2020-03-21","sha1":"08e7811705851cef2245e64f473c8a39bbd4bf57","md5":"ea0e49b6f28d6f25bafc10f1807997cd","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/ext2.results","type":"file","name":"ext2.results","base_name":"ext2","extension":".results","size":74,"date":"2020-03-21","sha1":"be588ccea5a4fadea45f58731496430627010ec0","md5":"c21f711e010ff4093f3eb3362b00f275","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/ext3.img.bz2","type":"file","name":"ext3.img.bz2","base_name":"ext3.img","extension":".bz2","size":1489,"date":"2020-03-21","sha1":"8cacbb01f83b283da12db1c8ffbba6149a3bb32e","md5":"be8b366201c2386a8d8d817c4073d8e3","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/ext3.results","type":"file","name":"ext3.results","base_name":"ext3","extension":".results","size":74,"date":"2020-03-21","sha1":"1ecb2df66f822e0190498befbadf825e8bd632c5","md5":"7260502281a9d2c05ffbf2922432d214","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/fat.img.bz2","type":"file","name":"fat.img.bz2","base_name":"fat.img","extension":".bz2","size":249,"date":"2020-03-21","sha1":"0e2e2717bfa9734e6eb5ba8b962fee62ba7f884b","md5":"68dd339646efe3a5404146a35a5540ca","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/fat.results","type":"file","name":"fat.results","base_name":"fat","extension":".results","size":46,"date":"2020-03-21","sha1":"298a84adf7b93e3fc4c941a8892f998db6aa3f69","md5":"c145369322953989d08937899266a46f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/fat32_label_64MB.img.bz2","type":"file","name":"fat32_label_64MB.img.bz2","base_name":"fat32_label_64MB.img","extension":".bz2","size":1151,"date":"2020-03-21","sha1":"6ed30eee535addd910b51446af896339805d6fe2","md5":"2aa035071426c374341565e1905f07b5","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/fat32_label_64MB.results","type":"file","name":"fat32_label_64MB.results","base_name":"fat32_label_64MB","extension":".results","size":43,"date":"2020-03-21","sha1":"ccf54793604bcd61cfdc8bb27262485726b8e26b","md5":"1df4ecc0f50e34f6f45debe6937f2091","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/iso.img.bz2","type":"file","name":"iso.img.bz2","base_name":"iso.img","extension":".bz2","size":336,"date":"2020-03-21","sha1":"3f7c3bf2338c2ddf73a8e41c59407e90e27a2d6f","md5":"1ab72b816720c5b3daecc0cfd0415eb7","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/iso.results","type":"file","name":"iso.results","base_name":"iso","extension":".results","size":32,"date":"2020-03-21","sha1":"53e0d93b4fb31726eefd52eaa5fab8ceb983f878","md5":"ddde438cf9b2da690473ed266845a2a5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/jbd.img.bz2","type":"file","name":"jbd.img.bz2","base_name":"jbd.img","extension":".bz2","size":205,"date":"2020-03-21","sha1":"e73969d2650921eb1d5eff15df26495d3be64836","md5":"474abd6104429bf494a32d71ea50a443","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/jbd.results","type":"file","name":"jbd.results","base_name":"jbd","extension":".results","size":55,"date":"2020-03-21","sha1":"ec4ca1cc3a28692e1607380f6619dcbb3c12022b","md5":"db97659b8586c28506a6371f28431aa4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/jfs.img.bz2","type":"file","name":"jfs.img.bz2","base_name":"jfs.img","extension":".bz2","size":3434,"date":"2020-03-21","sha1":"20611d4202243846d87eebd1164364f710cdfcab","md5":"a7d44f7417495618e0c57534321c0add","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/jfs.results","type":"file","name":"jfs.results","base_name":"jfs","extension":".results","size":72,"date":"2020-03-21","sha1":"4693c87dfdc57f2190a480a386bf75930ec4aea5","md5":"017b76d568852cfb8513cb1a87cefa47","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/minix.img.bz2","type":"file","name":"minix.img.bz2","base_name":"minix.img","extension":".bz2","size":138,"date":"2020-03-21","sha1":"04695b288d71a7987eb5e16f3245855201ab63f4","md5":"7c1931f576ad8a1a9954d3c07ba71d4f","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/minix.results","type":"file","name":"minix.results","base_name":"minix","extension":".results","size":13,"date":"2020-03-21","sha1":"b9ea7ebddd596502d654f971821364ee3fad594d","md5":"cb8b994531f027b3a574a92ff76e1e16","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/ocfs2.img.bz2","type":"file","name":"ocfs2.img.bz2","base_name":"ocfs2.img","extension":".bz2","size":1002,"date":"2020-03-21","sha1":"17a811734867421d62415fd770d95f7569ef0a1d","md5":"e0ea15e9981d567c4e560f73da12512e","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/ocfs2.results","type":"file","name":"ocfs2.results","base_name":"ocfs2","extension":".results","size":76,"date":"2020-03-21","sha1":"82bc4067882c8b098bf912366d03085d03218acb","md5":"47a6585d0e61c630e97e6871e0424bfa","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/reiser3.img.bz2","type":"file","name":"reiser3.img.bz2","base_name":"reiser3.img","extension":".bz2","size":282,"date":"2020-03-21","sha1":"9014558d2d2010e85e0239e9ec9d3a7908fb5bd0","md5":"60de4cb2cc787ecf2a292540335b10e4","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/reiser3.results","type":"file","name":"reiser3.results","base_name":"reiser3","extension":".results","size":79,"date":"2020-03-21","sha1":"7b786f61644f27a6041e58b0388a87fde2539e36","md5":"289dc4852d172d4a33dd217ecdf96759","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/reiser4.img.bz2","type":"file","name":"reiser4.img.bz2","base_name":"reiser4.img","extension":".bz2","size":366,"date":"2020-03-21","sha1":"35e54afbc5b90c04b00a490fc4b5147793d14566","md5":"fb70c620db95275c42102d648c140c13","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/reiser4.results","type":"file","name":"reiser4.results","base_name":"reiser4","extension":".results","size":74,"date":"2020-03-21","sha1":"dde7ba14445281a6ca6b626f25371f96e81c1628","md5":"3a6a1e23e5d8420e6b2e4cb98d55bbdc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/romfs.img.bz2","type":"file","name":"romfs.img.bz2","base_name":"romfs.img","extension":".bz2","size":105,"date":"2020-03-21","sha1":"bbdc09e9287ed538268f59aa307c11734ab18688","md5":"62f409423b33013ca206496baafd85d5","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/romfs.results","type":"file","name":"romfs.results","base_name":"romfs","extension":".results","size":32,"date":"2020-03-21","sha1":"9748de38ad0a2075f82f79e8ec9dc3ad4bb4f23e","md5":"4a68629a61d1666ff3b929c49e99a93d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/small-fat32.img.bz2","type":"file","name":"small-fat32.img.bz2","base_name":"small-fat32.img","extension":".bz2","size":372,"date":"2020-03-21","sha1":"bd20398a1cec5abc4f8497a6054f1d72cd79a6aa","md5":"bec8ac78dc6c72c8378d354a5e180ef7","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/small-fat32.results","type":"file","name":"small-fat32.results","base_name":"small-fat32","extension":".results","size":46,"date":"2020-03-21","sha1":"e975cb98b63523d20f3e0ce5309b61ef1bee3f38","md5":"6532374c8ea0af347ceeb9bea91bf060","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/swap0.img.bz2","type":"file","name":"swap0.img.bz2","base_name":"swap0.img","extension":".bz2","size":72,"date":"2020-03-21","sha1":"40f5b42b8a3d55516b58d96ddff800f54a3f00c0","md5":"4797c7fc7823b09d7410a7fafc72a52c","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/swap0.results","type":"file","name":"swap0.results","base_name":"swap0","extension":".results","size":12,"date":"2020-03-21","sha1":"a24dcb9d305e46989d06315c04f8b164698c1875","md5":"cc41924ac6bec351fe446a23a601acda","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/swap1.img.bz2","type":"file","name":"swap1.img.bz2","base_name":"swap1.img","extension":".bz2","size":120,"date":"2020-03-21","sha1":"ec8dc74065c365c8622b24507a7ea759eadf6ee5","md5":"e2904080de54f5d03784bc577f8cbf1e","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/swap1.results","type":"file","name":"swap1.results","base_name":"swap1","extension":".results","size":74,"date":"2020-03-21","sha1":"88abfbf960a311bc07305437072b2c1f7d20c766","md5":"57fa26175be2528f12592b6eb617acec","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/udf.img.bz2","type":"file","name":"udf.img.bz2","base_name":"udf.img","extension":".bz2","size":2031,"date":"2020-03-21","sha1":"e49bbb271ed0b04b988e0bedda1e2eaf23378c95","md5":"45cfe51c6ac652bd0d1554d351121552","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/udf.results","type":"file","name":"udf.results","base_name":"udf","extension":".results","size":28,"date":"2020-03-21","sha1":"c37fbc30d9fb1f3e2344aee6cb67210729881c7b","md5":"b0b95d03edbafe7fa7ab5306ff08c1c5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/xfs.img.bz2","type":"file","name":"xfs.img.bz2","base_name":"xfs.img","extension":".bz2","size":443,"date":"2020-03-21","sha1":"b39b4ee68c32203fb566af641171977c92c8572b","md5":"e1a32640cef754f583162f1d111b3b03","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/xfs.results","type":"file","name":"xfs.results","base_name":"xfs","extension":".results","size":72,"date":"2020-03-21","sha1":"5d3ab562adc47e17d95dc4e4feaaea30cfb62981","md5":"248987abcc034856a4af6962c2396065","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/zfs.img.bz2","type":"file","name":"zfs.img.bz2","base_name":"zfs.img","extension":".bz2","size":10869,"date":"2020-03-21","sha1":"dd3c282b62be5004732c3b41f353e76d4c0671aa","md5":"0fbed11f19afa47cc5f6737f78bf8d64","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/blkid/tests/zfs.results","type":"file","name":"zfs.results","base_name":"zfs","extension":".results","size":11,"date":"2020-03-21","sha1":"547f683c754b9f899611243b7bd44068c9d550b3","md5":"2599a9ec0619c71cdf63fd41c0bcdd5d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p","type":"directory","name":"e2p","base_name":"e2p","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":30,"dirs_count":0,"size_count":76096,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/Android.bp","type":"file","name":"Android.bp","base_name":"Android","extension":".bp","size":1363,"date":"2020-03-21","sha1":"32d932c4138f411bb3631d273abbe25c900f18be","md5":"9628a5e3180d9e8879b2593d7463e168","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2017 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/crypto_mode.c","type":"file","name":"crypto_mode.c","base_name":"crypto_mode","extension":".c","size":1400,"date":"2020-03-21","sha1":"498897c3f8c2dc9e24ab1baa944cedd1141e8d7a","md5":"32814c939f8a3214ed3b00fafe0c3fc7","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1999 Theodore Ts'o ","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/e2p.h","type":"file","name":"e2p.h","base_name":"e2p","extension":".h","size":3252,"date":"2020-03-21","sha1":"305d207952ff626f1f3f9b589bf9e3e1edc48e80","md5":"5edb1f75caf9a6c82311501c6143661c","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":4,"end_line":7,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/e2p.pc.in","type":"file","name":"e2p.pc.in","base_name":"e2p.pc","extension":".in","size":256,"date":"2020-03-21","sha1":"1fe32e2b7ba069b82f969ac8120fb06909a26272","md5":"226ce2deb134bf32e47e1f1dd9d78871","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/encoding.c","type":"file","name":"encoding.c","base_name":"encoding","extension":".c","size":2420,"date":"2020-03-21","sha1":"652eaa5e999f96669e2dc264a503ca1709905ed7","md5":"e07759685cb999b97bc6c79644d37567","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2018 Collabora Ltd.","start_line":4,"end_line":4}],"holders":[{"value":"Collabora Ltd.","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/feature.c","type":"file","name":"feature.c","base_name":"feature","extension":".c","size":10701,"date":"2020-03-21","sha1":"1225e9bb6241ca3938312135b6615dadc90d046b","md5":"30da19907e65c14257de37e702ae7f19","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1999 Theodore Ts'o ","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/fgetflags.c","type":"file","name":"fgetflags.c","base_name":"fgetflags","extension":".c","size":2114,"date":"2020-03-21","sha1":"e91ee307ae3b28760a32b98086e13b46c9055682","md5":"bad767eaf5290dbf4e6bfa09e81d4062","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/fgetproject.c","type":"file","name":"fgetproject.c","base_name":"fgetproject","extension":".c","size":1168,"date":"2020-03-21","sha1":"ec0df757751d0020083744b45115ae0f6ec96051","md5":"37bda9bfa316747ad3162428e06e9e8a","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1999 Theodore Ts'o ","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/fgetversion.c","type":"file","name":"fgetversion.c","base_name":"fgetversion","extension":".c","size":1527,"date":"2020-03-21","sha1":"18dc5de3b6284ab079f0bac05c569938b1fba9f3","md5":"b1badffe6b06c45d723bd726d9cf702c","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/fsetflags.c","type":"file","name":"fsetflags.c","base_name":"fsetflags","extension":".c","size":2271,"date":"2020-03-21","sha1":"2a8dbc9670ce47cd650b9da314287f43e90d3a1a","md5":"3fed89158380176bde2207112286440d","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/fsetproject.c","type":"file","name":"fsetproject.c","base_name":"fsetproject","extension":".c","size":1273,"date":"2020-03-21","sha1":"449a3949c8f6a5bb8ba1c8a4f316fcb4db3c3533","md5":"37f79c8b6f39f53c8c69350467cd2de5","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1999 Theodore Ts'o ","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/fsetversion.c","type":"file","name":"fsetversion.c","base_name":"fsetversion","extension":".c","size":1488,"date":"2020-03-21","sha1":"e34a651d815eb09097155edf5ed6cba363f38df5","md5":"2052bfb88b4b9b6abfd343ab1496b9c4","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/getflags.c","type":"file","name":"getflags.c","base_name":"getflags","extension":".c","size":1324,"date":"2020-03-21","sha1":"50edccfbd2b9fc3f70397e20e3fe1ac764a09fdc","md5":"bf05fb6b57cf33856d6525ec41296384","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/getversion.c","type":"file","name":"getversion.c","base_name":"getversion","extension":".c","size":868,"date":"2020-03-21","sha1":"b911b27ad6b55a76c2ca17646666316e9dcb88e6","md5":"35b0768b9caacde68429cc8dc45972e5","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/hashstr.c","type":"file","name":"hashstr.c","base_name":"hashstr","extension":".c","size":1255,"date":"2020-03-21","sha1":"a69664845c1d2960b4ae0002bc7183c9444abb06","md5":"854bad18a43de8de4c45da9b9e1804b5","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1999 Theodore Ts'o ","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/iod.c","type":"file","name":"iod.c","base_name":"iod","extension":".c","size":1539,"date":"2020-03-21","sha1":"3ab37503855ab2d60ab779b269ecc6ebe4288d16","md5":"726392fd832157834bcb1df0f6b111bd","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/ljs.c","type":"file","name":"ljs.c","base_name":"ljs","extension":".c","size":3181,"date":"2020-03-21","sha1":"1c4dd746d4dbfb4b6ba27983bf696297bbbfbeb1","md5":"121321f4658f3901b23c4ba2a736655a","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1995, 1996, 1997 Theodore Ts'o ","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/ls.c","type":"file","name":"ls.c","base_name":"ls","extension":".c","size":13700,"date":"2020-03-21","sha1":"ab75653f96d37d40f61affb0cddcabae43276357","md5":"5cbc4421bd3786c84d8d7f23231f94f6","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":10,"end_line":13,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1992, 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6},{"value":"Copyright (c) 1995, 1996, 1997 Theodore Ts'o ","start_line":8,"end_line":8}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6},{"value":"Theodore Ts'o","start_line":8,"end_line":8}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4},{"email":"tytso@mit.edu","start_line":8,"end_line":8}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":9615,"date":"2020-03-21","sha1":"cca609cae5633441e9166e7af93ec73121114f9b","md5":"d5d22add604ee6d9d688413cddfc917b","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":77.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":5,"end_line":6,"matched_rule":{"identifier":"gpl-1.0-plus_20.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":14,"matched_length":14,"match_coverage":100.0,"rule_relevance":77}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993 Remy Card (card@masi.ibp.fr)","start_line":3,"end_line":3}],"holders":[{"value":"Remy Card","start_line":3,"end_line":3}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/mntopts.c","type":"file","name":"mntopts.c","base_name":"mntopts","extension":".c","size":2915,"date":"2020-03-21","sha1":"94d8013eb9d5b2d3ae18b86f9e33e83dcc30c274","md5":"673ad6f1663aa6677267fa5d6ff69f82","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2002 Theodore Ts'o ","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/ostype.c","type":"file","name":"ostype.c","base_name":"ostype","extension":".c","size":1258,"date":"2020-03-21","sha1":"48ac853493d3d2794cea941ad1012d9356ab3a15","md5":"d59574aa904ebd5a1b445b61f7a3f816","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2004,2005 Theodore Ts'o ","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/parse_num.c","type":"file","name":"parse_num.c","base_name":"parse_num","extension":".c","size":1598,"date":"2020-03-21","sha1":"2208809a5ffec66a6cd8d9ede124b20f01a1e77d","md5":"5bbfd2030b2228142c86ac8d16bc1dd3","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2004,2005 Theodore Ts'o ","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/pe.c","type":"file","name":"pe.c","base_name":"pe","extension":".c","size":867,"date":"2020-03-21","sha1":"9d9855b9309c0b709f4b36b283ab68c8b25bfd53","md5":"9ff807c923a6854f87d9536cf09320cb","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1992, 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/percent.c","type":"file","name":"percent.c","base_name":"percent","extension":".c","size":1330,"date":"2020-03-21","sha1":"e3d58334b538b458041a7afdfb8d183bef469a89","md5":"0122e25a562bfcaa1c161805ad526d7d","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2006 Theodore Ts'o ","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/pf.c","type":"file","name":"pf.c","base_name":"pf","extension":".c","size":2027,"date":"2020-03-21","sha1":"a88dbe7ef08ad03b5ef835c2d0b72c9ffd5739d0","md5":"84b379cb2feef3e2a5d16ac1c02f2469","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/project.h","type":"file","name":"project.h","base_name":"project","extension":".h","size":705,"date":"2020-03-21","sha1":"329d69e68cd4363f322dbe676d8bb20b242fc710","md5":"2d7f6ce6c19b09780bbc772cd11f00e2","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":4,"end_line":7,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/ps.c","type":"file","name":"ps.c","base_name":"ps","extension":".c","size":696,"date":"2020-03-21","sha1":"b299fa03d036a75fcdbfabc1a526eaf2dfbc1373","md5":"f40e11237aab2744d4b1965d6067c186","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/setflags.c","type":"file","name":"setflags.c","base_name":"setflags","extension":".c","size":1573,"date":"2020-03-21","sha1":"442cd5f3f5a6584ba8554e30b7ab5b13da6a19b8","md5":"b9bc61f8f4ce1d64948d368a08826435","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/setversion.c","type":"file","name":"setversion.c","base_name":"setversion","extension":".c","size":860,"date":"2020-03-21","sha1":"d418a077ff4655ef5a7d0c00cade9feb43f3436d","md5":"4318090a803ba0e5e3db31d861c29490","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/e2p/uuid.c","type":"file","name":"uuid.c","base_name":"uuid","extension":".c","size":1552,"date":"2020-03-21","sha1":"8c648f7e25035e9dd50f6142244e4189de3c6d55","md5":"d3b5da1d16aaa1f2215d39bd9a9e462e","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":4,"end_line":7,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et","type":"directory","name":"et","base_name":"et","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":37,"dirs_count":1,"size_count":339305,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/Android.bp","type":"file","name":"Android.bp","base_name":"Android","extension":".bp","size":659,"date":"2020-03-21","sha1":"5cfa24362d265ed4f76962730070f895559f1daf","md5":"9c10ad5ddb900bd4c6cc28faf04cfaac","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2017 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/com_err.3","type":"file","name":"com_err.3","base_name":"com_err","extension":".3","size":2372,"date":"2020-03-21","sha1":"99e58d33abdccacf30bef094e32a8e01173b49fa","md5":"74773e56d1a4b07e612b2e0bc5fe89dd","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1988 Massachusetts Institute of Technology, Student Information Processing Board","start_line":1,"end_line":2}],"holders":[{"value":"Massachusetts Institute of Technology, Student Information Processing Board","start_line":1,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/com_err.c","type":"file","name":"com_err.c","base_name":"com_err","extension":".c","size":2377,"date":"2020-03-21","sha1":"ba1ec290d0087daf63c18b35d54a01526c40b9d3","md5":"27c90f838a70d86a6f9dc257bd8c5509","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":4,"end_line":11,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988","start_line":2,"end_line":2}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/com_err.h","type":"file","name":"com_err.h","base_name":"com_err","extension":".h","size":2118,"date":"2020-03-21","sha1":"34cb89793e145b16193e5d9f4e15de0941d34d36","md5":"b1e3784cd241530eb4c773216ebb4944","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 1988, Student Information Processing Board of the Massachusetts Institute of Technology","start_line":4,"end_line":5}],"holders":[{"value":"Student Information Processing Board of the Massachusetts Institute of Technology","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/com_err.pc.in","type":"file","name":"com_err.pc.in","base_name":"com_err.pc","extension":".in","size":282,"date":"2020-03-21","sha1":"f2029bffb731bf649c1863889196ba29d475fa77","md5":"b21efceda094fc9ee2cdbf495e239b46","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/com_err.texinfo","type":"file","name":"com_err.texinfo","base_name":"com_err","extension":".texinfo","size":21136,"date":"2020-03-21","sha1":"825e091854d6962d2a69932de731d111ed79931b","md5":"6133361113029e532250cf541c35a6bc","mime_type":"text/x-tex","file_type":"TeX document, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":39,"end_line":47,"matched_rule":{"identifier":"mit-old-style-no-advert_5.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":110,"matched_length":110,"match_coverage":100.0,"rule_relevance":100}},{"key":"unknown","score":22.0,"name":"Unknown license detected but not recognized","short_name":"unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:unknown","spdx_license_key":null,"spdx_url":"","start_line":54,"end_line":54,"matched_rule":{"identifier":"lead-in_unknown_16.RULE","license_expression":"unknown","licenses":["unknown"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":4,"matched_length":4,"match_coverage":100.0,"rule_relevance":22}},{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":98,"end_line":106,"matched_rule":{"identifier":"mit-old-style-no-advert_5.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":110,"matched_length":110,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert","unknown","mit-old-style-no-advert"],"copyrights":[{"value":"Copyright (c) 1987, 1988 Student Information Processing Board of the Massachusetts Institute of Technology","start_line":36,"end_line":37},{"value":"Copyright 1987, 1988 by the Student Information Processing Board of the Massachusetts Institute of Technology","start_line":95,"end_line":96}],"holders":[{"value":"Student Information Processing Board of the Massachusetts Institute of Technology","start_line":36,"end_line":37},{"value":"the Student Information Processing Board of the Massachusetts Institute of Technology","start_line":95,"end_line":96}],"authors":[{"value":"Theodore Ts'o","start_line":513,"end_line":514}],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/com_right.c","type":"file","name":"com_right.c","base_name":"com_right","extension":".c","size":3695,"date":"2020-03-21","sha1":"7f4b3a82975faeffd6233f4e9a94bdf7c47022d4","md5":"f6df538540558c070ca4edb95193716a","mime_type":"text/x-c","file_type":"C source, ISO-8859 text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":13,"end_line":38,"matched_rule":{"identifier":"bsd-new_151.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":213,"matched_length":213,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 2003 by Theodore Ts'o","start_line":5,"end_line":5},{"value":"Copyright (c) 1997, 1998, 2001 Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden)","start_line":9,"end_line":11}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5},{"value":"Kungliga Tekniska Hogskolan (Royal Institute of Technology, Stockholm, Sweden)","start_line":9,"end_line":11}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/compile_et.1","type":"file","name":"compile_et.1","base_name":"compile_et","extension":".1","size":2237,"date":"2020-03-21","sha1":"a927ea5c023cac00ab5918a7c0b1447d5d4cd020","md5":"ecac753e3ee10879742e80fe5f176b52","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1988 Massachusetts Institute of Technology, Student Information Processing Board","start_line":1,"end_line":2}],"holders":[{"value":"Massachusetts Institute of Technology, Student Information Processing Board","start_line":1,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/compile_et.sh.in","type":"file","name":"compile_et.sh.in","base_name":"compile_et.sh","extension":".in","size":1342,"date":"2020-03-21","sha1":"172f41789230dec3cd477b0b389d257d08b7472b","md5":"df25245e47d8aacf51e81f4385957f87","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/error_message.c","type":"file","name":"error_message.c","base_name":"error_message","extension":".c","size":7227,"date":"2020-03-21","sha1":"0cec19045d70973fb94a1623363c98b18279fd75","md5":"8527cd91e1a8fad20db1f01b5297d812","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":9,"end_line":16,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987 by the Student Information Processing Board of the Massachusetts Institute of Technology","start_line":6,"end_line":7}],"holders":[{"value":"the Student Information Processing Board of the Massachusetts Institute of Technology","start_line":6,"end_line":7}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/error_table.h","type":"file","name":"error_table.h","base_name":"error_table","extension":".h","size":979,"date":"2020-03-21","sha1":"e398cee107ca60e5d8cd640511376aa8786dac03","md5":"e6870ad6c32153433e7cfa0300177da9","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":5,"end_line":12,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1988 by the Student Information Processing Board of the Massachusetts Institute of Technology","start_line":2,"end_line":3}],"holders":[{"value":"the Student Information Processing Board of the Massachusetts Institute of Technology","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/et_c.awk","type":"file","name":"et_c.awk","base_name":"et_c","extension":".awk","size":6485,"date":"2020-03-21","sha1":"694ded719c334d13b6dea6e62896274276c2d0c2","md5":"71fdfd25214d12014217706002cd3711","mime_type":"text/plain","file_type":"awk or perl script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/et_h.awk","type":"file","name":"et_h.awk","base_name":"et_h","extension":".awk","size":4539,"date":"2020-03-21","sha1":"9d04a3be49eda1106e9ba8745dc09ae6fa8bbf20","md5":"a5c6d9dd3bf259cda5ef92c2f62910e9","mime_type":"text/plain","file_type":"awk or perl script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/et_name.c","type":"file","name":"et_name.c","base_name":"et_name","extension":".c","size":1291,"date":"2020-03-21","sha1":"42d230f93bf5dfdcc328564c2167a4b76af55b59","md5":"93ad885b0d61ffa8b71e747b57c2da62","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":4,"end_line":11,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987","start_line":2,"end_line":2}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/init_et.c","type":"file","name":"init_et.c","base_name":"init_et","extension":".c","size":1398,"date":"2020-03-21","sha1":"a0ce1baa9731d066e949d5cc2c5091b2af6b143e","md5":"5b7d531d01f09226b79c83313720fe0d","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":9,"end_line":16,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1986, 1987, 1988","start_line":6,"end_line":7}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/internal.h","type":"file","name":"internal.h","base_name":"internal","extension":".h","size":676,"date":"2020-03-21","sha1":"32306d243a9fa147f96843fd471f9f6b98c1868d","md5":"c3b6badcafa45fde17547fc146aa2cf8","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":4,"end_line":11,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":5718,"date":"2020-03-21","sha1":"8031c64883421d3864c2e9d84fe039b26b934e6f","md5":"ac6448645e77e4b7e62b62afb4098fc5","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/texinfo.tex","type":"file","name":"texinfo.tex","base_name":"texinfo","extension":".tex","size":231166,"date":"2020-03-21","sha1":"50157dfdca79d18e591b09505f4f80d476717d23","md5":"1942c6732f540af41bb5b3be0a958e7e","mime_type":"text/x-tex","file_type":"TeX document, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":12,"end_line":29,"matched_rule":{"identifier":"gpl-2.0-plus_and_free-unknown_2.RULE","license_expression":"gpl-2.0-plus AND free-unknown","licenses":["gpl-2.0-plus","free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":151,"matched_length":151,"match_coverage":100.0,"rule_relevance":100}},{"key":"free-unknown","score":100.0,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":12,"end_line":29,"matched_rule":{"identifier":"gpl-2.0-plus_and_free-unknown_2.RULE","license_expression":"gpl-2.0-plus AND free-unknown","licenses":["gpl-2.0-plus","free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":151,"matched_length":151,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus AND free-unknown"],"copyrights":[{"value":"Copyright (c) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.","start_line":8,"end_line":10}],"holders":[{"value":"Free Software Foundation, Inc.","start_line":8,"end_line":10}],"authors":[],"packages":[],"emails":[{"email":"bug-texinfo@gnu.org","start_line":39,"end_line":39},{"email":"juha@viisa.uucp","start_line":363,"end_line":363},{"email":"nathan@acm.org","start_line":2792,"end_line":2792},{"email":"tege@matematik.su.se","start_line":4635,"end_line":4635},{"email":"janneke@gnu.org","start_line":5145,"end_line":5145},{"email":"romildo@urano.iceb.ufop.br","start_line":6986,"end_line":6986}],"urls":[{"url":"http://www.gnu.org/software/texinfo/","start_line":33,"end_line":33},{"url":"ftp://tug.org/tex/texinfo.tex","start_line":34,"end_line":34},{"url":"http://www.ctan.org/","start_line":35,"end_line":35},{"url":"http://www.gnu.org/software/texinfo","start_line":59,"end_line":59},{"url":"http://www.ntg.nl/pipermail/ntg-pdftex/2004-July/000654.html","start_line":1193,"end_line":1193},{"url":"http://www.ctan.org/tex-archive/fonts/eurosym","start_line":2075,"end_line":2075},{"url":"ftp://tug.org/tex/epsf.tex","start_line":6497,"end_line":6497}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/vfprintf.c","type":"file","name":"vfprintf.c","base_name":"vfprintf","extension":".c","size":1488,"date":"2020-03-21","sha1":"f7395eb1a3a70e4761b1a2cada4aa54c3b2d435b","md5":"d7e7698d1a1d00568bf6a43729c2d649","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,"licenses":[{"key":"bsla","score":100.0,"name":"Berkeley Software License Agreement","short_name":"BSLA","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsla","spdx_license_key":null,"spdx_url":"","start_line":5,"end_line":15,"matched_rule":{"identifier":"bsla_3.RULE","license_expression":"bsla","licenses":["bsla"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":101,"matched_length":101,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsla"],"copyrights":[{"value":"Copyright (c) 1988 Regents of the University of California","start_line":2,"end_line":3}],"holders":[{"value":"Regents of the University of California","start_line":2,"end_line":3}],"authors":[{"value":"the University of California, Berkeley","start_line":6,"end_line":12}],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases","type":"directory","name":"test_cases","base_name":"test_cases","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":0,"size_count":42120,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/continuation.c","type":"file","name":"continuation.c","base_name":"continuation","extension":".c","size":1350,"date":"2020-03-21","sha1":"9156b886f0ee2ab37dd62b95142bcfb6e41c7928","md5":"92a315c12c6042c9297b69d3ce4b1dd1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/continuation.et","type":"file","name":"continuation.et","base_name":"continuation","extension":".et","size":273,"date":"2020-03-21","sha1":"8621d5c9c22bfa759dcc3fdf908a02902f12831b","md5":"0c47f80acbd2712ddd66557a808d44cc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/continuation.h","type":"file","name":"continuation.h","base_name":"continuation","extension":".h","size":562,"date":"2020-03-21","sha1":"91782563a627fa5602170076b4659e40c84b3dce","md5":"b0e93ed59cbacc3ba054dc880af6d538","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/heimdal.c","type":"file","name":"heimdal.c","base_name":"heimdal","extension":".c","size":4110,"date":"2020-03-21","sha1":"f9cd358dc97e64a0e5482ee0def33d279df798ee","md5":"0abe56dd5f86af4660b3c6dbbf799597","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/heimdal.et","type":"file","name":"heimdal.et","base_name":"heimdal","extension":".et","size":2658,"date":"2020-03-21","sha1":"8fe26097352b4315460b07950fca99ee87abf19b","md5":"83dcc29ab981ba8fea4d96ae4904c5f2","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 1987,1988 Massachusetts Institute of Technology","start_line":1,"end_line":1}],"holders":[{"value":"Massachusetts Institute of Technology","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/heimdal.h","type":"file","name":"heimdal.h","base_name":"heimdal","extension":".h","size":3302,"date":"2020-03-21","sha1":"d365c258a0ee77098edf4fcee911d9fd31227fdc","md5":"073d25b5554ab0767f06706ebfe20a83","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/heimdal2.c","type":"file","name":"heimdal2.c","base_name":"heimdal2","extension":".c","size":3656,"date":"2020-03-21","sha1":"4ff773ef1e7ecebb41f9e19f9a755acc220a92ea","md5":"87ba4a9c284eb8f221e2f0217ece7312","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/heimdal2.et","type":"file","name":"heimdal2.et","base_name":"heimdal2","extension":".et","size":2588,"date":"2020-03-21","sha1":"202d477b4a6b370525205457bf444bcea2cb4076","md5":"c432e173111f403968b9236557c0a00b","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 1988 by the Massachusetts Institute of Technology","start_line":3,"end_line":3}],"holders":[{"value":"the Massachusetts Institute of Technology","start_line":3,"end_line":3}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/heimdal2.h","type":"file","name":"heimdal2.h","base_name":"heimdal2","extension":".h","size":3068,"date":"2020-03-21","sha1":"64feee83bf1a85f70198350f0117c43c6662a05e","md5":"b737b2403e7e7c9efbf1b315a4d62446","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/heimdal3.c","type":"file","name":"heimdal3.c","base_name":"heimdal3","extension":".c","size":1209,"date":"2020-03-21","sha1":"38121aa36def40f3eb5ac7402d79d4be8997504e","md5":"ee5318c932ef80f61beea44a4792b6fe","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/heimdal3.et","type":"file","name":"heimdal3.et","base_name":"heimdal3","extension":".et","size":95,"date":"2020-03-21","sha1":"7dcdf1571c339e0df00264fd86d57d6f39f1d557","md5":"1bd912580b996fc7b6ca989dd25584df","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/heimdal3.h","type":"file","name":"heimdal3.h","base_name":"heimdal3","extension":".h","size":643,"date":"2020-03-21","sha1":"1957eb5479733723eedcfeb31946e6b2b8efea34","md5":"118212e3772676f8a08941b58d950443","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/imap_err.c","type":"file","name":"imap_err.c","base_name":"imap_err","extension":".c","size":3545,"date":"2020-03-21","sha1":"a060502d79360a3307c3443364eddc4f69151f58","md5":"0f32af456f98c10c5a88b6c97f6183bb","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/imap_err.et","type":"file","name":"imap_err.et","base_name":"imap_err","extension":".et","size":5825,"date":"2020-03-21","sha1":"fd24c3b9defcc9635ebf394ea91ceda6b9e0772b","md5":"f92faba702a8bca18c2f8838f1a71587","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,"licenses":[{"key":"paul-mackerras-binary","score":92.47,"name":"Paul Mackerras Binary License","short_name":"Paul Mackerras Binary License","category":"Permissive","is_exception":false,"owner":"Paul Mackerras","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:paul-mackerras-binary","spdx_license_key":null,"spdx_url":"","start_line":5,"end_line":40,"matched_rule":{"identifier":"paul-mackerras-binary_1.RULE","license_expression":"paul-mackerras-binary","licenses":["paul-mackerras-binary"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":186,"matched_length":172,"match_coverage":92.47,"rule_relevance":100}}],"license_expressions":["paul-mackerras-binary"],"copyrights":[{"value":"Copyright (c) 1994-2008 Carnegie Mellon University","start_line":3,"end_line":3}],"holders":[{"value":"Carnegie Mellon University","start_line":3,"end_line":3}],"authors":[{"value":"Computing Services at Carnegie Mellon University (http://www.cmu.edu/computing/)","start_line":31,"end_line":32}],"packages":[],"emails":[{"email":"innovation@andrew.cmu.edu","start_line":27,"end_line":27}],"urls":[{"url":"http://www.cmu.edu/computing","start_line":32,"end_line":32}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/imap_err.h","type":"file","name":"imap_err.h","base_name":"imap_err","extension":".h","size":4412,"date":"2020-03-21","sha1":"9ba52c4c33a194f189ca87f53688a01938b77c85","md5":"1b8c96d12b1f863017ff8fe5140ba55c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/simple.c","type":"file","name":"simple.c","base_name":"simple","extension":".c","size":1858,"date":"2020-03-21","sha1":"93210f28491ae08c49398c1ca129e710e82f1334","md5":"2ad7e8e97dfd86670fb5713390f0601d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/simple.et","type":"file","name":"simple.et","base_name":"simple","extension":".et","size":1129,"date":"2020-03-21","sha1":"cc375cb5a3d40c1329b58e7b183517703458e469","md5":"1449006466fa4eb9f6731d272dcd20e0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/et/test_cases/simple.h","type":"file","name":"simple.h","base_name":"simple","extension":".h","size":1837,"date":"2020-03-21","sha1":"56b1e14ce04490292fb4dfb0f297a238ec0f92ae","md5":"d997025276966aba684857a1ba05448c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs","type":"directory","name":"ext2fs","base_name":"ext2fs","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":146,"dirs_count":2,"size_count":1755505,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/alloc.c","type":"file","name":"alloc.c","base_name":"alloc","extension":".c","size":14700,"date":"2020-03-21","sha1":"e55c19f5b800ec0546bff92cce09096ffcd1a413","md5":"e1cc2cda6ac5b622289f5f216d85ae24","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/alloc_sb.c","type":"file","name":"alloc_sb.c","base_name":"alloc_sb","extension":".c","size":2446,"date":"2020-03-21","sha1":"976a23ca17dbe653a3691772246f110da76ede90","md5":"f7a5c2177a73d3c3dfeb993166ded78f","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1994, 1995, 1996, 2003 Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/alloc_stats.c","type":"file","name":"alloc_stats.c","base_name":"alloc_stats","extension":".c","size":4644,"date":"2020-03-21","sha1":"704f873e7e839b9a0886bdf5bbd0e9ac0353de24","md5":"f1b76670b6f0a0783a9c76c2e0fe62a7","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2001 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/alloc_tables.c","type":"file","name":"alloc_tables.c","base_name":"alloc_tables","extension":".c","size":8181,"date":"2020-03-21","sha1":"7c4dd4d077764c00be1587f37b3803577e590f37","md5":"926c89f591deedbfe22c236481aa8e57","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1996 Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/Android.bp","type":"file","name":"Android.bp","base_name":"Android","extension":".bp","size":2801,"date":"2020-03-21","sha1":"4c054c3c2cc44c5e9815d8b6720bd0f2be340e5d","md5":"1a8ab4dcdd029de4b9d47a85b36db18f","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2017 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/atexit.c","type":"file","name":"atexit.c","base_name":"atexit","extension":".c","size":2283,"date":"2020-03-21","sha1":"aa3ea8df826b126df8addd610061ac3ba99a90c7","md5":"11e2be3bc11c044949d300082990f172","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright Oracle, 2014","start_line":4,"end_line":5}],"holders":[{"value":"Oracle","start_line":4,"end_line":5}],"authors":[{"value":"Darrick J. Wong ","start_line":4,"end_line":5}],"packages":[],"emails":[{"email":"darrick.wong@oracle.com","start_line":5,"end_line":5}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/badblocks.c","type":"file","name":"badblocks.c","base_name":"badblocks","extension":".c","size":6558,"date":"2020-03-21","sha1":"3a078da264246e3831a58073b722ce650accf452","md5":"653968ba4b290585f88c8313ccf06270","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1994, 1995, 1996 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/bb_compat.c","type":"file","name":"bb_compat.c","base_name":"bb_compat","extension":".c","size":1312,"date":"2020-03-21","sha1":"9fe869aed440bcb60901c7af165def7d5a41a608","md5":"6a0de5b1c8996dcccc204e585707c79f","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/bb_inode.c","type":"file","name":"bb_inode.c","base_name":"bb_inode","extension":".c","size":6322,"date":"2020-03-21","sha1":"654c580bf5173c67fbd8c1281317ea34134a241a","md5":"beb353d06d0eaa5544858b5d00c527cd","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":10,"end_line":13,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1994, 1995 Theodore Ts'o","start_line":8,"end_line":8}],"holders":[{"value":"Theodore Ts'o","start_line":8,"end_line":8}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/bitmaps.c","type":"file","name":"bitmaps.c","base_name":"bitmaps","extension":".c","size":8227,"date":"2020-03-21","sha1":"37dd15a32766dec496ff8b719bef4a71e38f7a9c","md5":"f711d86b605fdbc3eb74a28e8300be55","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996 Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/bitops.c","type":"file","name":"bitops.c","base_name":"bitops","extension":".c","size":3317,"date":"2020-03-21","sha1":"6a8be1e651068d48bbca1ad0bb28e032f27a135d","md5":"8ee3d82c8a6ba83f02a565e1b14ec9ff","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996 Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[{"value":"Theodore Ts'o","start_line":29,"end_line":31}],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/bitops.h","type":"file","name":"bitops.h","base_name":"bitops","extension":".h","size":22148,"date":"2020-03-21","sha1":"760a9a60a67ff24a4252cbdffd56f6728b46bc65","md5":"d57df88320128ac18a19563586241606","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996 Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/blkmap64_ba.c","type":"file","name":"blkmap64_ba.c","base_name":"blkmap64_ba","extension":".c","size":11692,"date":"2020-03-21","sha1":"dedf16686e2aeb2f2fc2c7e4f14af9b683193e31","md5":"097c499b0d2cbc2ec752e437273314bb","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2008 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/blkmap64_rb.c","type":"file","name":"blkmap64_rb.c","base_name":"blkmap64_rb","extension":".c","size":22241,"date":"2020-03-21","sha1":"d0eae735a7e2e0cccec8c07414b2fc8bf89584bb","md5":"cff0a34f6baee480054a393fdcf65b83","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"(c) 2010 Red Hat, Inc., Lukas Czerner ","start_line":4,"end_line":4}],"holders":[{"value":"Red Hat, Inc., Lukas Czerner","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"lczerner@redhat.com","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/blknum.c","type":"file","name":"blknum.c","base_name":"blknum","extension":".c","size":13617,"date":"2020-03-21","sha1":"f469bde24233b2d4abc2dc7ace810ea36399c557","md5":"522f2e47373b645ac9ba113b7395b014","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright IBM Corporation, 2007","start_line":5,"end_line":6}],"holders":[{"value":"IBM Corporation","start_line":5,"end_line":6}],"authors":[{"value":"Jose R. Santos ","start_line":5,"end_line":6}],"packages":[],"emails":[{"email":"jrs@us.ibm.com","start_line":6,"end_line":6}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/block.c","type":"file","name":"block.c","base_name":"block","extension":".c","size":16616,"date":"2020-03-21","sha1":"a6659f9cac430ccc221ca3dd0069ff1d158bfbb5","md5":"a5fdc32358da06e66658cd3f0e85a8de","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/bmap.c","type":"file","name":"bmap.c","base_name":"bmap","extension":".c","size":12578,"date":"2020-03-21","sha1":"23b8d6766761760c87cd2d9892306371a79e44e1","md5":"365146919f0148d3ba7e1ab910473fdd","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/bmap64.h","type":"file","name":"bmap64.h","base_name":"bmap64","extension":".h","size":3427,"date":"2020-03-21","sha1":"e003e1c884ad7b8d418bb7724a8a49bf66b269d3","md5":"08e24f93e6e86b1e733420369f855c62","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2007, 2008 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/bmove.c","type":"file","name":"bmove.c","base_name":"bmove","extension":".c","size":3793,"date":"2020-03-21","sha1":"a874e1376f63f068b0a7140a7fc5b644aff05098","md5":"08a3033077e02b08361e33bcb06ce66b","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1997 Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/brel.h","type":"file","name":"brel.h","base_name":"brel","extension":".h","size":2135,"date":"2020-03-21","sha1":"d51c25a8190a3c28b83f771c428230f5877d5e2f","md5":"0df64850734da8fe3bc1c8f1bf604691","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/brel_ma.c","type":"file","name":"brel_ma.c","base_name":"brel_ma","extension":".c","size":4337,"date":"2020-03-21","sha1":"b17c7c3a9f31a785b0cf617e9a62b1d0abeb7ddd","md5":"f0592812f0590a81f8999feb8666ac7b","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":9,"end_line":12,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/check_desc.c","type":"file","name":"check_desc.c","base_name":"check_desc","extension":".c","size":2578,"date":"2020-03-21","sha1":"16c619837ecbe2aa586c583394dc6e3b9e9596c9","md5":"36442374d90285174cb86ca3c6445554","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/closefs.c","type":"file","name":"closefs.c","base_name":"closefs","extension":".c","size":13262,"date":"2020-03-21","sha1":"87b705670bca9d9b401b1f52b9ea924d38e862cc","md5":"b7ad64b7638f9807800109375c3f6de1","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/crc16.c","type":"file","name":"crc16.c","base_name":"crc16","extension":".c","size":3130,"date":"2020-03-21","sha1":"d344ba9647c7afc5ef2a1574c28c55fed47b4272","md5":"ea4b3db76d47a8d3a5d436cc9c497fa1","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,"licenses":[{"key":"gpl-2.0","score":100.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl-2.0_199.RULE","license_expression":"gpl-2.0","licenses":["gpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":20,"matched_length":20,"match_coverage":100.0,"rule_relevance":100.0}}],"license_expressions":["gpl-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/crc16.h","type":"file","name":"crc16.h","base_name":"crc16","extension":".h","size":700,"date":"2020-03-21","sha1":"31bc8032e33c719483f18a9f6dcc24e141fb50b2","md5":"a4b1d97796231327fa648bc0d41c0cb3","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,"licenses":[{"key":"gpl-2.0","score":100.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":11,"end_line":12,"matched_rule":{"identifier":"gpl-2.0_199.RULE","license_expression":"gpl-2.0","licenses":["gpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":20,"matched_length":20,"match_coverage":100.0,"rule_relevance":100.0}}],"license_expressions":["gpl-2.0"],"copyrights":[{"value":"Copyright (c) 2005 Ben Gardner ","start_line":9,"end_line":9}],"holders":[{"value":"Ben Gardner","start_line":9,"end_line":9}],"authors":[],"packages":[],"emails":[{"email":"bgardner@wabtec.com","start_line":9,"end_line":9}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/crc32c.c","type":"file","name":"crc32c.c","base_name":"crc32c","extension":".c","size":41146,"date":"2020-03-21","sha1":"275c13f1c41aa88cb3f24ca443ea3abfd17b7d1b","md5":"d0184dcab59c1e3f3dde6eff8d56f6a7","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,"licenses":[{"key":"public-domain","score":100.0,"name":"Public Domain","short_name":"Public Domain","category":"Public Domain","is_exception":false,"owner":"Unspecified","homepage_url":"http://www.linfo.org/publicdomain.html","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:public-domain","spdx_license_key":null,"spdx_url":"","start_line":13,"end_line":15,"matched_rule":{"identifier":"public-domain_and_gpl-2.0.RULE","license_expression":"public-domain AND gpl-2.0","licenses":["public-domain","gpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":24,"matched_length":24,"match_coverage":100.0,"rule_relevance":100}},{"key":"gpl-2.0","score":100.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":13,"end_line":15,"matched_rule":{"identifier":"public-domain_and_gpl-2.0.RULE","license_expression":"public-domain AND gpl-2.0","licenses":["public-domain","gpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":24,"matched_length":24,"match_coverage":100.0,"rule_relevance":100}},{"key":"gpl-2.0","score":100.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":28,"end_line":29,"matched_rule":{"identifier":"gpl-2.0_199.RULE","license_expression":"gpl-2.0","licenses":["gpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":20,"matched_length":20,"match_coverage":100.0,"rule_relevance":100.0}}],"license_expressions":["public-domain AND gpl-2.0","gpl-2.0"],"copyrights":[],"holders":[],"authors":[{"value":"linux@horizon.com","start_line":11,"end_line":15}],"packages":[],"emails":[{"email":"Matt_Domsch@dell.com","start_line":11,"end_line":11},{"email":"linux@horizon.com","start_line":12,"end_line":12}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/crc32c_defs.h","type":"file","name":"crc32c_defs.h","base_name":"crc32c_defs","extension":".h","size":1794,"date":"2020-03-21","sha1":"947228ef345c2a688d48fb3883a9c2d138ca87ff","md5":"aeaa2350867a44643ea655d09b57488e","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/csum.c","type":"file","name":"csum.c","base_name":"csum","extension":".c","size":28354,"date":"2020-03-21","sha1":"bd1ba892967bfabff74e671efd7fff3f558d1744","md5":"3ba8e6e484e0cca76fcde54c53766b7f","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2006 Cluster","start_line":4,"end_line":5},{"value":"Copyright (c) 2006, 2007 by Andreas Dilger ","start_line":4,"end_line":5}],"holders":[{"value":"Cluster","start_line":4,"end_line":5},{"value":"Andreas Dilger","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[{"email":"adilger@clusterfs.com","start_line":5,"end_line":5}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/dblist.c","type":"file","name":"dblist.c","base_name":"dblist","extension":".c","size":8950,"date":"2020-03-21","sha1":"908a5644079f7ec3d9aa9aace2d9f9995c0949ab","md5":"a883adc0decd85fd91704e340da47d77","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright 1997 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/dblist_dir.c","type":"file","name":"dblist_dir.c","base_name":"dblist_dir","extension":".c","size":1947,"date":"2020-03-21","sha1":"1478b7dae9313db1a051c9ead04e0d225dd2faba","md5":"6a077fb80ffcb1dfb31236f701ad61bf","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright 1997 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/digest_encode.c","type":"file","name":"digest_encode.c","base_name":"digest_encode","extension":".c","size":4407,"date":"2020-03-21","sha1":"fc0e725ed90dc9830c9e6acb0c19dde5d3cbc2a7","md5":"ccdf313d35a24fd6550f0b72ced39ff2","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":11,"end_line":14,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright 2014 Google Inc.","start_line":9,"end_line":9}],"holders":[{"value":"Google Inc.","start_line":9,"end_line":9}],"authors":[{"value":"Uday Savagaonkar","start_line":7,"end_line":7}],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/dir_iterate.c","type":"file","name":"dir_iterate.c","base_name":"dir_iterate","extension":".c","size":7730,"date":"2020-03-21","sha1":"9a5f97e3b5f2c5b62a156fc4a84639790391bd31","md5":"14b6462361a5f41e3400af50c1749d05","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1994, 1995, 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/dirblock.c","type":"file","name":"dirblock.c","base_name":"dirblock","extension":".c","size":2610,"date":"2020-03-21","sha1":"577de8027cb2ef35e5600f6457112471b1588db0","md5":"3ca90428ea1f08650392fece2eea131a","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1995, 1996 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/dirhash.c","type":"file","name":"dirhash.c","base_name":"dirhash","extension":".c","size":7377,"date":"2020-03-21","sha1":"78000710a9d3b84bad07dd846e70cd6940554983","md5":"108fa526ca29a1517de76b645d03d6fb","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}},{"key":"gpl-1.0-plus","score":38.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":36,"end_line":36,"matched_rule":{"identifier":"gpl-1.0-plus_29.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":7,"matched_length":7,"match_coverage":100.0,"rule_relevance":38}}],"license_expressions":["lgpl-2.0","gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2001 Daniel Phillips","start_line":4,"end_line":4},{"value":"Copyright (c) 2002 Theodore Ts'o","start_line":6,"end_line":6},{"value":"Jeremy Fitzhardinge 1998","start_line":34,"end_line":34}],"holders":[{"value":"Daniel Phillips","start_line":4,"end_line":4},{"value":"Theodore Ts'o","start_line":6,"end_line":6},{"value":"Jeremy Fitzhardinge","start_line":34,"end_line":34}],"authors":[],"packages":[],"emails":[{"email":"jeremy@zip.com.au","start_line":34,"end_line":34}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/dosio.c","type":"file","name":"dosio.c","base_name":"dosio","extension":".c","size":10492,"date":"2020-03-21","sha1":"69546cb71208c8190f32f66284d9600fa19b0ee0","md5":"8151949106720e78762d3ba086601f88","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1997 by Theodore Ts'o","start_line":4,"end_line":4},{"value":"Copyright (c) 1997 Mark Habersack","start_line":6,"end_line":6}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4},{"value":"Mark Habersack","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/dosio.h","type":"file","name":"dosio.h","base_name":"dosio","extension":".h","size":4684,"date":"2020-03-21","sha1":"a12a71e6b4b09815b218ea0f75f04c9f41ee80f3","md5":"33acaa8a0639a6ef67ddf7b8a97ebc97","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1997 Mark Habersack","start_line":6,"end_line":6}],"holders":[{"value":"Mark Habersack","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/dupfs.c","type":"file","name":"dupfs.c","base_name":"dupfs","extension":".c","size":2703,"date":"2020-03-21","sha1":"4d8e9c3b525128581cd8ce0d82c9167b0ec27e57","md5":"f195f02440eb8ad7eba4eac4ca351e3a","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1997, 1998, 2001, 2003, 2005 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/e2image.h","type":"file","name":"e2image.h","base_name":"e2image","extension":".h","size":1355,"date":"2020-03-21","sha1":"15e696614ce88517073c3fbeda0806a8b0d57f36","md5":"b7ec643ceef689fa9ff7e5594346f13a","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":9,"end_line":12,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2000 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/expanddir.c","type":"file","name":"expanddir.c","base_name":"expanddir","extension":".c","size":3006,"date":"2020-03-21","sha1":"d0cb1c1411a15ec571d64f19ea20ab5036233e70","md5":"1721537582faa8650b6f6be88681e1b0","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/ext2_err.et.in","type":"file","name":"ext2_err.et.in","base_name":"ext2_err.et","extension":".in","size":12772,"date":"2020-03-21","sha1":"b6d2c8f0385884ec180f20f644d00c201b043f04","md5":"0bee2e2e1c7ec5184d96f12f4e409f7c","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":5,"end_line":6,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996 Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/ext2_ext_attr.h","type":"file","name":"ext2_ext_attr.h","base_name":"ext2_ext_attr","extension":".h","size":2644,"date":"2020-03-21","sha1":"64fd38a7ce8015b9074bcc0730aa7f094b60a826","md5":"f046bda08d56fbef636811fbdd4de4ec","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"(c) 2000 Andreas Gruenbacher, ","start_line":6,"end_line":6}],"holders":[{"value":"Andreas Gruenbacher","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"a.gruenbacher@computer.org","start_line":6,"end_line":6}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/ext2_fs.h","type":"file","name":"ext2_fs.h","base_name":"ext2_fs","extension":".h","size":42075,"date":"2020-03-21","sha1":"f798cf00c3606d7993b3ae3dd3e1c61165d64069","md5":"31dffa4cccbbcab19ba76d8d2012ac70","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 1992, 1993, 1994, 1995 Remy Card (card@masi.ibp.fr) Laboratoire MASI - Institut Blaise Pascal","start_line":4,"end_line":6},{"value":"Copyright (c) 1991, 1992 Linus Torvalds","start_line":13,"end_line":13}],"holders":[{"value":"Remy Card Laboratoire MASI - Institut Blaise Pascal","start_line":4,"end_line":6},{"value":"Linus Torvalds","start_line":13,"end_line":13}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":5,"end_line":5}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/ext2_io.h","type":"file","name":"ext2_io.h","base_name":"ext2_io","extension":".h","size":5391,"date":"2020-03-21","sha1":"1ae692327bcec68734513a6e12e7ff5c67515c60","md5":"9d21a76a44ca92a765652a3c75e801c6","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/ext2_types.h.in","type":"file","name":"ext2_types.h.in","base_name":"ext2_types.h","extension":".in","size":4033,"date":"2020-03-21","sha1":"0c5debe697c7681b2dadbc0b8cb75a2f3451c06e","md5":"35f3499f5a0392cb61301d6fb9a58aee","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/ext2fs.h","type":"file","name":"ext2fs.h","base_name":"ext2fs","extension":".h","size":72208,"date":"2020-03-21","sha1":"9001d4aedb35765eef2f868ec784c4e1e727468a","md5":"1015613a8e9a60c4fdc3b1855a5b8a16","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/ext2fs.pc.in","type":"file","name":"ext2fs.pc.in","base_name":"ext2fs.pc","extension":".in","size":253,"date":"2020-03-21","sha1":"99a941fafc08c98832305bd77286570368965dac","md5":"b7521751311ce72627e6db3280de25d5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/ext2fsP.h","type":"file","name":"ext2fsP.h","base_name":"ext2fsP","extension":".h","size":5139,"date":"2020-03-21","sha1":"d3a47241946cf714989884169c63cfebad199f1a","md5":"0de732947af593a62330aede4d7152de","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/ext3_extents.h","type":"file","name":"ext3_extents.h","base_name":"ext3_extents","extension":".h","size":4558,"date":"2020-03-21","sha1":"eb54db34c673f879821e8c5d19b4cf01068de0ac","md5":"e866d5ae0bef93aa68c43c2581ed650f","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":5,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2003,2004 Cluster","start_line":2,"end_line":3}],"holders":[{"value":"Cluster","start_line":2,"end_line":3}],"authors":[{"value":"Alex Tomas ","start_line":2,"end_line":3}],"packages":[],"emails":[{"email":"info@clusterfs.com","start_line":2,"end_line":2},{"email":"alex@clusterfs.com","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/ext4_acl.h","type":"file","name":"ext4_acl.h","base_name":"ext4_acl","extension":".h","size":1350,"date":"2020-03-21","sha1":"1a4e016e60993236e04814c48652524599e0d97b","md5":"552f816a291bdf6279ab7571a8829da9","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/ext_attr.c","type":"file","name":"ext_attr.c","base_name":"ext_attr","extension":".c","size":42819,"date":"2020-03-21","sha1":"6fc3e436c564b734a80e25309c9f75c985785b63","md5":"9803a81edc49db0733ffb977a20c3c5f","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2001 Andreas Gruenbacher, ","start_line":4,"end_line":4},{"value":"Copyright (c) 2002 Theodore Ts'o","start_line":6,"end_line":6}],"holders":[{"value":"Andreas Gruenbacher","start_line":4,"end_line":4},{"value":"Theodore Ts'o","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"a.gruenbacher@computer.org","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/extent.c","type":"file","name":"extent.c","base_name":"extent","extension":".c","size":46342,"date":"2020-03-21","sha1":"91451bb4aa93443d7be2887be4f1c44fee97246f","md5":"63bb7162b18f4cef854f630f35815c7b","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2007 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/fallocate.c","type":"file","name":"fallocate.c","base_name":"fallocate","extension":".c","size":25022,"date":"2020-03-21","sha1":"9b6c5ca906dcbd39d6ba404ad336e9ce9372b09e","md5":"a267379a1d0fdc54a696421135641939","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2014 Oracle","start_line":4,"end_line":4}],"holders":[{"value":"Oracle","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/fiemap.h","type":"file","name":"fiemap.h","base_name":"fiemap","extension":".h","size":2885,"date":"2020-03-21","sha1":"11c04bb0cf149f2f305b2a8644083edb6c669e39","md5":"0e46c8341c6fa75b03cb25fe63bfdd1a","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"portions copyright (c) 2007 Cluster","start_line":4,"end_line":4}],"holders":[{"value":"Cluster","start_line":4,"end_line":4}],"authors":[{"value":"Mark Fasheh Kalpak Shah Andreas Dilger ","start_line":6,"end_line":8}],"packages":[],"emails":[{"email":"mfasheh@suse.com","start_line":6,"end_line":6},{"email":"kalpak.shah@sun.com","start_line":7,"end_line":7},{"email":"adilger@sun.com","start_line":8,"end_line":8}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/fileio.c","type":"file","name":"fileio.c","base_name":"fileio","extension":".c","size":14742,"date":"2020-03-21","sha1":"0f6e785523eca54ab53b789e2ca24be86d6e47de","md5":"0ffce5412f0ffbe103ad87b527444c9b","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/finddev.c","type":"file","name":"finddev.c","base_name":"finddev","extension":".c","size":4465,"date":"2020-03-21","sha1":"4973338db3a17795014554785a1cf2cd000bfc5c","md5":"bd9800920412ad6a43b766c093b21f0d","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2000 Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/flushb.c","type":"file","name":"flushb.c","base_name":"flushb","extension":".c","size":2116,"date":"2020-03-21","sha1":"4d3bb24992ee5ecd9b89bd6b37f7d8b0870be903","md5":"cd9199423582592d217a24c09fe2d7c2","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2000 Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/freefs.c","type":"file","name":"freefs.c","base_name":"freefs","extension":".c","size":2191,"date":"2020-03-21","sha1":"3c1c0deea5ca05fc520e12b244519acea2e9afeb","md5":"8248b9214db9c69db8d152f0e7d4bb51","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/gen_bitmap.c","type":"file","name":"gen_bitmap.c","base_name":"gen_bitmap","extension":".c","size":16769,"date":"2020-03-21","sha1":"a1e5a8db0b34a79a3aa42ad2b5cdfee7239b1081","md5":"84e25c84231b32014d7bde08e029e67e","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2001 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/gen_bitmap64.c","type":"file","name":"gen_bitmap64.c","base_name":"gen_bitmap64","extension":".c","size":23957,"date":"2020-03-21","sha1":"1d6a9ec1b7b748c77702794b6dda267205766a4c","md5":"c52cca28ed574e75a840b85ea35417b8","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2007, 2008 Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/gen_crc32ctable.c","type":"file","name":"gen_crc32ctable.c","base_name":"gen_crc32ctable","extension":".c","size":2765,"date":"2020-03-21","sha1":"7e69362512b6305fce3a7ea03fc83a269864dcad","md5":"19150680f4c50c3a29113a9d7dc9b561","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/get_num_dirs.c","type":"file","name":"get_num_dirs.c","base_name":"get_num_dirs","extension":".c","size":1105,"date":"2020-03-21","sha1":"243f546927233e706406b5b6faa7467ed7094774","md5":"5bbdff8e219149f9097629370d0c6d0a","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright 1997 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/get_pathname.c","type":"file","name":"get_pathname.c","base_name":"get_pathname","extension":".c","size":3703,"date":"2020-03-21","sha1":"9900343d6a83dcb3705aa17f58ebda2fccfb505f","md5":"d5dd2c794ae495fa1b332d62e551c733","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/getsectsize.c","type":"file","name":"getsectsize.c","base_name":"getsectsize","extension":".c","size":2483,"date":"2020-03-21","sha1":"3b51869f4765a73a4f3c181ddcc23c9db31e17fd","md5":"97ef7131e4bdd884c5894b46e756830f","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1995, 1995 Theodore Ts'o","start_line":4,"end_line":5},{"value":"Copyright (c) 2003 VMware, Inc.","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5},{"value":"VMware, Inc.","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/getsize.c","type":"file","name":"getsize.c","base_name":"getsize","extension":".c","size":6512,"date":"2020-03-21","sha1":"d2183c00cdf9cee983541e0cf00de4a9840139d4","md5":"8a32b8e627fe84f3b304b7225b824807","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":9,"end_line":12,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1995, 1995 Theodore Ts'o","start_line":4,"end_line":5},{"value":"Copyright (c) 2003 VMware, Inc.","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5},{"value":"VMware, Inc.","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/hashmap.c","type":"file","name":"hashmap.c","base_name":"hashmap","extension":".c","size":2264,"date":"2020-03-21","sha1":"5fe0c958140f7b7a34d346316f5961fb9180971b","md5":"a5ae323c66de8d1074dcd1e08b7f22b6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/hashmap.h","type":"file","name":"hashmap.h","base_name":"hashmap","extension":".h","size":1179,"date":"2020-03-21","sha1":"b259dbb8e64e4e8a48ab0d6d83cb6dfee608a0ad","md5":"ddba249d1ca093f6bca71e82ad6efb77","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/i_block.c","type":"file","name":"i_block.c","base_name":"i_block","extension":".c","size":2207,"date":"2020-03-21","sha1":"04cf26d33e30ff5bd7ab8543af92f63caa81edd4","md5":"65c0032a7eec8fe1a1a02d8f7b85cfea","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2008 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/icount.c","type":"file","name":"icount.c","base_name":"icount","extension":".c","size":21739,"date":"2020-03-21","sha1":"e4d7f0e4a5df1d0d52b78d12534589ad28f7006c","md5":"e261d93f5db342b952da0104ec4f08bd","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/imager.c","type":"file","name":"imager.c","base_name":"imager","extension":".c","size":9268,"date":"2020-03-21","sha1":"51435420ddebc635c0eda3f9bbf88ece3d18cadc","md5":"77cf315381f2c8f6aa67a502ad3cbf45","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":10,"end_line":13,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2000 Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/ind_block.c","type":"file","name":"ind_block.c","base_name":"ind_block","extension":".c","size":1416,"date":"2020-03-21","sha1":"70c08daabf9de1ad288a001ad2a6811f7c739335","md5":"7741443b8614d0a4c58c552429b66f6f","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/initialize.c","type":"file","name":"initialize.c","base_name":"initialize","extension":".c","size":17383,"date":"2020-03-21","sha1":"cbbe69729c3b7e209a44b1996f3d55fed4e21436","md5":"e6836b25a7b943c96c24455cccda3d2d","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1994, 1995, 1996 Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/inline.c","type":"file","name":"inline.c","base_name":"inline","extension":".c","size":2412,"date":"2020-03-21","sha1":"6a438878c6c53b142d30fb8e024adbe559f9f7f8","md5":"96bd79e17057fc0b4f94dd3e6ee9b0cb","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Theodore Ts'o","start_line":6,"end_line":6}],"holders":[{"value":"Theodore Ts'o","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/inline_data.c","type":"file","name":"inline_data.c","base_name":"inline_data","extension":".c","size":20146,"date":"2020-03-21","sha1":"a65f5a0886158678722acee0d6b87659e367b4ee","md5":"5688608d0bdb94a46fc4fd2a27b726f9","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2012 Zheng Liu ","start_line":4,"end_line":4}],"holders":[{"value":"Zheng Liu","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"wenqing.lz@taobao.com","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/inode.c","type":"file","name":"inode.c","base_name":"inode","extension":".c","size":29359,"date":"2020-03-21","sha1":"1a8835116cc778dbcb76bec8a770b1b0828fc077","md5":"b547b71f693abff80d2dfb07cc0277d5","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/inode_io.c","type":"file","name":"inode_io.c","base_name":"inode_io","extension":".c","size":7506,"date":"2020-03-21","sha1":"1d9979a62d8043f0a621f4fd9ea263839b36ab18","md5":"32ec96c778fba5ead017ecf484c8cbfb","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2002 Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/io_manager.c","type":"file","name":"io_manager.c","base_name":"io_manager","extension":".c","size":3380,"date":"2020-03-21","sha1":"dc66dd103ecbd7c4a206a7730c0db04d960a15ed","md5":"9b1fe01d62f47817c9015389f70a2c12","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/irel.h","type":"file","name":"irel.h","base_name":"irel","extension":".h","size":3369,"date":"2020-03-21","sha1":"a22160b9c8f8cb20c152df16157f7c2dff4c5112","md5":"6236b83a678f28ea0a33b95f8adb5502","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/irel_ma.c","type":"file","name":"irel_ma.c","base_name":"irel_ma","extension":".c","size":9217,"date":"2020-03-21","sha1":"d2c4d9d9366b2f83bb34bdd6555b293e923fca4e","md5":"d0f26e6a58e9d5a33504273b8c1b95f8","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/ismounted.c","type":"file","name":"ismounted.c","base_name":"ismounted","extension":".c","size":11353,"date":"2020-03-21","sha1":"ff11ba9bc3613f0f08f53fca351339773168dd20","md5":"2f21e347649fb30b7feec12655d4bb6b","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1995,1996,1997,1998,1999,2000 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/jfs_compat.h","type":"file","name":"jfs_compat.h","base_name":"jfs_compat","extension":".h","size":2373,"date":"2020-03-21","sha1":"daccf17a7aa21b460906012fd4557b04a636062e","md5":"e3440b899a058c36fa867270a7ff3d94","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/kernel-jbd.h","type":"file","name":"kernel-jbd.h","base_name":"kernel-jbd","extension":".h","size":13687,"date":"2020-03-21","sha1":"ad67cd06c356bc4ea07d7b3837750140a012db57","md5":"cc12837f57ad7d4b335a15bf62aa446e","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,"licenses":[{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":8,"end_line":10,"matched_rule":{"identifier":"gpl-2.0-plus_220.RULE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":34,"matched_length":34,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus"],"copyrights":[{"value":"Copyright 1998-2000 Red Hat, Inc","start_line":6,"end_line":6}],"holders":[{"value":"Red Hat, Inc","start_line":6,"end_line":6}],"authors":[{"value":"Stephen C. Tweedie ","start_line":4,"end_line":4}],"packages":[],"emails":[{"email":"sct@redhat.com","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/kernel-list.h","type":"file","name":"kernel-list.h","base_name":"kernel-list","extension":".h","size":2436,"date":"2020-03-21","sha1":"f0abba1d78f1b43d1fe912d8d5510105a06f3e8a","md5":"d7da63c1f604b56b4837fcbe9bba1d0b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/link.c","type":"file","name":"link.c","base_name":"link","extension":".c","size":5225,"date":"2020-03-21","sha1":"6bbdb35dc8d68448779ef9b397e4e48784427875","md5":"d11cda84c0fb764b90d1c7275feade21","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/llseek.c","type":"file","name":"llseek.c","base_name":"llseek","extension":".c","size":3070,"date":"2020-03-21","sha1":"e8223700c696378b4911c8ca2d34b906e5815e72","md5":"39130be16002d80de8e155186f39b553","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1994, 1995, 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/lookup.c","type":"file","name":"lookup.c","base_name":"lookup","extension":".c","size":1472,"date":"2020-03-21","sha1":"0c62702535887259a05daf00d5cbcdff705083b0","md5":"8f605305a389668146169716267147c3","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1994, 1995 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":68147,"date":"2020-03-21","sha1":"55a13c3efbd57a5c57d834e58f37726c32bb6d73","md5":"8c1d58cfeac9b81c238f6b545ff2f169","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/mkdir.c","type":"file","name":"mkdir.c","base_name":"mkdir","extension":".c","size":4239,"date":"2020-03-21","sha1":"552c552b6497f5e92d66818de0ff76387df108ff","md5":"36d5e1e0cddaac950b6f6a92910f0436","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1994, 1995 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/mkjournal.c","type":"file","name":"mkjournal.c","base_name":"mkjournal","extension":".c","size":14751,"date":"2020-03-21","sha1":"8025386a531b565ea031557d4c66370bfb9140ec","md5":"189b972d2f2b661596bb36c9522563a5","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2000 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/mmp.c","type":"file","name":"mmp.c","base_name":"mmp","extension":".c","size":11072,"date":"2020-03-21","sha1":"038ec98a7374c8b4947a9d4dc77bfe9f74774699","md5":"5d6861e80a2db54af872f1b6609c8b36","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2011 Whamcloud, Inc.","start_line":4,"end_line":4}],"holders":[{"value":"Whamcloud, Inc.","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/namei.c","type":"file","name":"namei.c","base_name":"namei","extension":".c","size":5471,"date":"2020-03-21","sha1":"5a2bc158c1322306ba432a45e36e860df2c911e8","md5":"bb95deeb447cfb42966aee3d6c839561","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1994, 1995 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/native.c","type":"file","name":"native.c","base_name":"native","extension":".c","size":449,"date":"2020-03-21","sha1":"1fbed7a1608f58e1c0fd4a849225c616ccf01876","md5":"277e028f44eb42ad67d4d5a370cf9435","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1996 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/newdir.c","type":"file","name":"newdir.c","base_name":"newdir","extension":".c","size":2815,"date":"2020-03-21","sha1":"7e149bec22a0d2606e236f6c1082e2ab32ac7986","md5":"1cd1dd4b47e331d78df46c831fd231dc","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1994, 1995 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/nls_utf8.c","type":"file","name":"nls_utf8.c","base_name":"nls_utf8","extension":".c","size":23944,"date":"2020-03-21","sha1":"260eaeb136a56ba4d48cc391648c20a0860f4726","md5":"17865fd9883b2b6bc7cadb64455f3ef4","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,"licenses":[{"key":"gpl-1.0-plus","score":98.48,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":6,"end_line":13,"matched_rule":{"identifier":"gpl-1.0-plus_110.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":66,"matched_length":65,"match_coverage":98.48,"rule_relevance":100.0}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2014 SGI.","start_line":2,"end_line":4},{"value":"Copyright (c) 2018 Collabora Ltd.","start_line":2,"end_line":4}],"holders":[{"value":"SGI.","start_line":2,"end_line":4},{"value":"Collabora Ltd.","start_line":2,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.unicode.org/versions/corrigendum1.html","start_line":160,"end_line":160}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/nt_io.c","type":"file","name":"nt_io.c","base_name":"nt_io","extension":".c","size":25241,"date":"2020-03-21","sha1":"b822777e5c9fa848ef833a073f0c11db9e51610b","md5":"ffba4193234d4e9eaf4e7485c6c91005","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":9,"end_line":12,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995 Theodore Ts'o","start_line":6,"end_line":7},{"value":"Copyright (c) 1998 Andrey Shedel (andreys@ns.cr.cyco.com)","start_line":6,"end_line":7}],"holders":[{"value":"Theodore Ts'o","start_line":6,"end_line":7},{"value":"Andrey Shedel","start_line":6,"end_line":7}],"authors":[],"packages":[],"emails":[{"email":"andreys@ns.cr.cyco.com","start_line":7,"end_line":7}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/openfs.c","type":"file","name":"openfs.c","base_name":"openfs","extension":".c","size":15986,"date":"2020-03-21","sha1":"3ad5a2a7ed53d1f4514d2748162ab77cbf99f785","md5":"33eb1047126709f98868b98e69b6072a","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/progress.c","type":"file","name":"progress.c","base_name":"progress","extension":".c","size":2429,"date":"2020-03-21","sha1":"5faf221980e7bcfc2dd162bba2101c084c0a851b","md5":"e64f5afeecbd330b62720b94370ecc8a","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/punch.c","type":"file","name":"punch.c","base_name":"punch","extension":".c","size":13505,"date":"2020-03-21","sha1":"21669317f15c8c5b55d090dcc5b9f9825199c20f","md5":"db36ce5161904a174399afbb84991e19","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2010 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/qcow2.c","type":"file","name":"qcow2.c","base_name":"qcow2","extension":".c","size":5983,"date":"2020-03-21","sha1":"fefc4978ac2e9dbfa2abe41d957ca410c61fee89","md5":"896dbe4b48b3a08d88fb064c6a8d4b65","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":20,"end_line":22,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2010 Red Hat, Inc., Lukas Czerner ","start_line":18,"end_line":18}],"holders":[{"value":"Red Hat, Inc., Lukas Czerner","start_line":18,"end_line":18}],"authors":[],"packages":[],"emails":[{"email":"lczerner@redhat.com","start_line":18,"end_line":18}],"urls":[{"url":"http://people.gnome.org/~markmc/qcow-image-format.html","start_line":16,"end_line":16}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/qcow2.h","type":"file","name":"qcow2.h","base_name":"qcow2","extension":".h","size":2588,"date":"2020-03-21","sha1":"5c1c725b626e70b6f83dba031a8b1c653df8ceb1","md5":"a69710203be157efc314a0e66babf585","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":21,"end_line":23,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2010 Red Hat, Inc., Lukas Czerner ","start_line":19,"end_line":19}],"holders":[{"value":"Red Hat, Inc., Lukas Czerner","start_line":19,"end_line":19}],"authors":[],"packages":[],"emails":[{"email":"lczerner@redhat.com","start_line":19,"end_line":19}],"urls":[{"url":"http://people.gnome.org/~markmc/qcow-image-format.html","start_line":17,"end_line":17}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/rbtree.c","type":"file","name":"rbtree.c","base_name":"rbtree","extension":".c","size":10590,"date":"2020-03-21","sha1":"6f3d8f78b71e29f977c6029a9f2d9279ad434d1b","md5":"0fbe7034746c46200293b3f6959dc9e1","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,"licenses":[{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":6,"end_line":18,"matched_rule":{"identifier":"gpl-2.0-plus.LICENSE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus"],"copyrights":[{"value":"(c) 1999 Andrea Arcangeli ","start_line":3,"end_line":4},{"value":"(c) 2002 David Woodhouse ","start_line":3,"end_line":4}],"holders":[{"value":"Andrea Arcangeli","start_line":3,"end_line":4},{"value":"David Woodhouse","start_line":3,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"andrea@suse.de","start_line":3,"end_line":3},{"email":"dwmw2@infradead.org","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/rbtree.h","type":"file","name":"rbtree.h","base_name":"rbtree","extension":".h","size":5868,"date":"2020-03-21","sha1":"081a3e3f3a033a3434609641a8c54a93e5cc9294","md5":"38b46b6f750e599106e351fa07bf222c","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,"licenses":[{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":5,"end_line":17,"matched_rule":{"identifier":"gpl-2.0-plus.LICENSE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":113,"matched_length":113,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus"],"copyrights":[{"value":"(c) 1999 Andrea Arcangeli ","start_line":3,"end_line":3}],"holders":[{"value":"Andrea Arcangeli","start_line":3,"end_line":3}],"authors":[],"packages":[],"emails":[{"email":"andrea@suse.de","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/read_bb.c","type":"file","name":"read_bb.c","base_name":"read_bb","extension":".c","size":2232,"date":"2020-03-21","sha1":"2961ffc077930cece80b620bf8f2573cae47b7c6","md5":"a539140b31ab301104cc3370fc998119","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1994 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/read_bb_file.c","type":"file","name":"read_bb_file.c","base_name":"read_bb_file","extension":".c","size":2272,"date":"2020-03-21","sha1":"d41ce565ece9b3288d91af5eb3ecf6cb82b56bf4","md5":"4256cbb149129343571737051d9e1a55","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1994, 1995, 2000 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/res_gdt.c","type":"file","name":"res_gdt.c","base_name":"res_gdt","extension":".c","size":6413,"date":"2020-03-21","sha1":"b3fbfbd3369cd9cde4f9d53cee776dca3ee4d458","md5":"b39951de62873f5a4e2d2375cb9785b3","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2002 Andreas Dilger","start_line":5,"end_line":5}],"holders":[{"value":"Andreas Dilger","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/rw_bitmaps.c","type":"file","name":"rw_bitmaps.c","base_name":"rw_bitmaps","extension":".c","size":11278,"date":"2020-03-21","sha1":"a6eee4138d92382cf8a6c166aa276fa55905eb07","md5":"06522a5c21616df67c24af79163c122d","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1994, 1996 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/sha256.c","type":"file","name":"sha256.c","base_name":"sha256","extension":".c","size":7982,"date":"2020-03-21","sha1":"4987b40ca309cdd375902c19fce46841824f711c","md5":"7c0ff8ba9856723b855477b4340eff15","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,"licenses":[{"key":"public-domain","score":44.0,"name":"Public Domain","short_name":"Public Domain","category":"Public Domain","is_exception":false,"owner":"Unspecified","homepage_url":"http://www.linfo.org/publicdomain.html","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:public-domain","spdx_license_key":null,"spdx_url":"","start_line":5,"end_line":5,"matched_rule":{"identifier":"public-domain_and_gpl-2.0_2.RULE","license_expression":"public-domain AND gpl-2.0","licenses":["public-domain","gpl-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":8,"matched_length":8,"match_coverage":100.0,"rule_relevance":44}},{"key":"gpl-2.0","score":44.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":5,"end_line":5,"matched_rule":{"identifier":"public-domain_and_gpl-2.0_2.RULE","license_expression":"public-domain AND gpl-2.0","licenses":["public-domain","gpl-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":8,"matched_length":8,"match_coverage":100.0,"rule_relevance":44}},{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["public-domain AND gpl-2.0","lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2004 Sam Hocevar ","start_line":4,"end_line":5}],"holders":[{"value":"Sam Hocevar","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[{"email":"sam@hocevar.net","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/sha512.c","type":"file","name":"sha512.c","base_name":"sha512","extension":".c","size":10087,"date":"2020-03-21","sha1":"8c08d9d775ab209c7344a9e0d5b4b578a9ad86e5","md5":"763c106a2d654bb0f007fbebb75de4b4","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,"licenses":[{"key":"public-domain","score":44.0,"name":"Public Domain","short_name":"Public Domain","category":"Public Domain","is_exception":false,"owner":"Unspecified","homepage_url":"http://www.linfo.org/publicdomain.html","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:public-domain","spdx_license_key":null,"spdx_url":"","start_line":5,"end_line":5,"matched_rule":{"identifier":"public-domain_and_gpl-2.0_2.RULE","license_expression":"public-domain AND gpl-2.0","licenses":["public-domain","gpl-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":8,"matched_length":8,"match_coverage":100.0,"rule_relevance":44}},{"key":"gpl-2.0","score":44.0,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":5,"end_line":5,"matched_rule":{"identifier":"public-domain_and_gpl-2.0_2.RULE","license_expression":"public-domain AND gpl-2.0","licenses":["public-domain","gpl-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":8,"matched_length":8,"match_coverage":100.0,"rule_relevance":44}},{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["public-domain AND gpl-2.0","lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2004 Sam Hocevar ","start_line":4,"end_line":5}],"holders":[{"value":"Sam Hocevar","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[{"email":"sam@hocevar.net","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/sparse_io.c","type":"file","name":"sparse_io.c","base_name":"sparse_io","extension":".c","size":13526,"date":"2020-03-21","sha1":"ae67038959ca522c6d17fa2349515781c0789676","md5":"b1babbf28c9f11669acc85b6d7ec6ddc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/swapfs.c","type":"file","name":"swapfs.c","base_name":"swapfs","extension":".c","size":18291,"date":"2020-03-21","sha1":"4a6c12daa85f02627b4372ec31c2c654825cb68c","md5":"b003f8947268377e579728308a3220f4","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1995, 1996, 2002 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/symlink.c","type":"file","name":"symlink.c","base_name":"symlink","extension":".c","size":4797,"date":"2020-03-21","sha1":"0e660fd5a1cc5bec475e672d09cc91d636c6ae1a","md5":"1719e5e355bbb794014d79efd3034721","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":10,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2012, Intel Corporation","start_line":4,"end_line":5}],"holders":[{"value":"Intel Corporation","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tdb.c","type":"file","name":"tdb.c","base_name":"tdb","extension":".c","size":112638,"date":"2020-03-21","sha1":"deb71addd0de4ce91e98cfed28187e82a46d6037","md5":"9e23786ca43f212064e01691b0f933d3","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":13,"end_line":29,"matched_rule":{"identifier":"lgpl-2.0-plus_65.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":139,"matched_length":139,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) Andrew Tridgell 1999-2005","start_line":9,"end_line":11},{"value":"Copyright (c) Jeremy Allison 2000-2006","start_line":9,"end_line":11},{"value":"Copyright (c) Paul Rusty Russell 2000","start_line":9,"end_line":11}],"holders":[{"value":"Andrew Tridgell","start_line":9,"end_line":11},{"value":"Jeremy Allison","start_line":9,"end_line":11},{"value":"Paul Rusty Russell","start_line":9,"end_line":11}],"authors":[],"packages":[],"emails":[{"email":"Shlomi@exanet.com","start_line":2717,"end_line":2717}],"urls":[{"url":"svn://svnanon.samba.org/samba/branches/SAMBA_4_0/source/lib/tdb/common","start_line":2,"end_line":2}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tdb.h","type":"file","name":"tdb.h","base_name":"tdb","extension":".h","size":8871,"date":"2020-03-21","sha1":"2ef883aeca45e0551c4d18e0c67694ef2874f657","md5":"e315314331b52b88d57a2a104a163d50","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,"licenses":[{"key":"lgpl-2.0-plus","score":100.0,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":11,"end_line":27,"matched_rule":{"identifier":"lgpl-2.0-plus_65.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":139,"matched_length":139,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) Andrew Tridgell 1999-2004","start_line":9,"end_line":9}],"holders":[{"value":"Andrew Tridgell","start_line":9,"end_line":9}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tdbtool.c","type":"file","name":"tdbtool.c","base_name":"tdbtool","extension":".c","size":13342,"date":"2020-03-21","sha1":"87b2125ef8c31cd9adbefd63f57d1b512a53ffd1","md5":"16872cd9eb75c8d5a87f35b58a810a7c","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,"licenses":[{"key":"gpl-2.0-plus","score":100.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":9,"end_line":21,"matched_rule":{"identifier":"gpl-2.0-plus_19.RULE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":110,"matched_length":110,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) Andrew Tridgell 1999-2000","start_line":4,"end_line":7},{"value":"Copyright (c) Paul Rusty Russell 2000","start_line":4,"end_line":7},{"value":"Copyright (c) Jeremy Allison 2000","start_line":4,"end_line":7},{"value":"Copyright (c) Andrew Esh 2001","start_line":4,"end_line":7}],"holders":[{"value":"Andrew Tridgell","start_line":4,"end_line":7},{"value":"Paul Rusty Russell","start_line":4,"end_line":7},{"value":"Jeremy Allison","start_line":4,"end_line":7},{"value":"Andrew Esh","start_line":4,"end_line":7}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/test_io.c","type":"file","name":"test_io.c","base_name":"test_io","extension":".c","size":15549,"date":"2020-03-21","sha1":"7d3ab581828ebe46693b593c11ccef4d9653ff04","md5":"078eb17284db2cf185d585b9ba1a5d14","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1996 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_badblocks.c","type":"file","name":"tst_badblocks.c","base_name":"tst_badblocks","extension":".c","size":7564,"date":"2020-03-21","sha1":"196ec83ddfe08f19dda76e84cdda2ba503026d8e","md5":"69bab7fe61fd397ca9fdee5abbc3f20b","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1996 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_bitmaps.c","type":"file","name":"tst_bitmaps.c","base_name":"tst_bitmaps","extension":".c","size":16700,"date":"2020-03-21","sha1":"4cdfcbdee10b0b25e1dedc642fd70763725e91de","md5":"27fcf322e3a103638320550256a17a2b","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2011 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_bitmaps_cmd.ct","type":"file","name":"tst_bitmaps_cmd.ct","base_name":"tst_bitmaps_cmd","extension":".ct","size":1052,"date":"2020-03-21","sha1":"0829504a361e5cf510ef6f5caa33158fb4a60cf9","md5":"08b6efa48372cc81e0f4e0da45b249ae","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_bitmaps_cmds","type":"file","name":"tst_bitmaps_cmds","base_name":"tst_bitmaps_cmds","extension":"","size":1389,"date":"2020-03-21","sha1":"70fbde2ccd3fbcd346b5aded006a1a9d08d5106e","md5":"3fcb50610876a829b3aa9ca5becbdea3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_bitmaps_exp","type":"file","name":"tst_bitmaps_exp","base_name":"tst_bitmaps_exp","extension":"","size":8431,"date":"2020-03-21","sha1":"5511dae23b93790e75b4ca0d485b20e56004c9ed","md5":"356094fff7f87b396fcc35d1f67f8264","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_bitops.c","type":"file","name":"tst_bitops.c","base_name":"tst_bitops","extension":".c","size":7430,"date":"2020-03-21","sha1":"25a61d5dd265468fa2b0d299bb7931792df4fce9","md5":"7b1bff611d782903a804b60f7dcc17e4","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2001 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_byteswap.c","type":"file","name":"tst_byteswap.c","base_name":"tst_byteswap","extension":".c","size":1949,"date":"2020-03-21","sha1":"560af34082695c211889fb7ef542bd4d408eb358","md5":"a303230eaf8af5b6cdbd607a8efbd57c","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2000 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_cmds.ct","type":"file","name":"tst_cmds.ct","base_name":"tst_cmds","extension":".ct","size":96,"date":"2020-03-21","sha1":"01bf55c0e7061a3668de00c9edffab13a8e2dfbc","md5":"13767ea3098098202ebb83e523346531","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_fs_struct.c","type":"file","name":"tst_fs_struct.c","base_name":"tst_fs_struct","extension":".c","size":1980,"date":"2020-03-21","sha1":"b3ed2aba22e5dd54f0e26334faa62b538abf4077","md5":"17df4fc5b2d87d9ec811f5240b9659a7","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2007 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_getsectsize.c","type":"file","name":"tst_getsectsize.c","base_name":"tst_getsectsize","extension":".c","size":1324,"date":"2020-03-21","sha1":"62f8e70fd5a0866a0c95aaa11902b98c82986454","md5":"dd0ed88fb3b8f8f318730ee804c8e9a3","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1997 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_getsize.c","type":"file","name":"tst_getsize.c","base_name":"tst_getsize","extension":".c","size":936,"date":"2020-03-21","sha1":"2d30c76fda84e2662f60d6fa4f43d659d20641ac","md5":"f0fec6a9553904b2feb86b3da70c49fd","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1997 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_inode_size.c","type":"file","name":"tst_inode_size.c","base_name":"tst_inode_size","extension":".c","size":2433,"date":"2020-03-21","sha1":"381e27f50992014e01da8d351044cb99fc623e29","md5":"5f0437c0fa13b56c3a2a11c9527b7a33","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2007 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_iscan.c","type":"file","name":"tst_iscan.c","base_name":"tst_iscan","extension":".c","size":4972,"date":"2020-03-21","sha1":"b40627127dc12f725aea9b731009b8775142801d","md5":"47d8d3f2e4a1c42c4b2f34b3543898bb","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1996 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_libext2fs.c","type":"file","name":"tst_libext2fs.c","base_name":"tst_libext2fs","extension":".c","size":1505,"date":"2020-03-21","sha1":"6772f7e43a1b733481e9d2306c87c65d00d95461","md5":"c504f92f273e7abacf8c6f89f41529fd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_super_size.c","type":"file","name":"tst_super_size.c","base_name":"tst_super_size","extension":".c","size":4779,"date":"2020-03-21","sha1":"18a3746bc8dbff2bfd2692f953399f667b06c67b","md5":"53548a311f7464085e87b9490f0f0099","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2007 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tst_types.c","type":"file","name":"tst_types.c","base_name":"tst_types","extension":".c","size":1395,"date":"2020-03-21","sha1":"f24cda6c33af0d5822da4bc852866dd25247fc4f","md5":"730cf3caf46ce1794a63c798fc1919da","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2006 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/undo_io.c","type":"file","name":"undo_io.c","base_name":"undo_io","extension":".c","size":29989,"date":"2020-03-21","sha1":"6bc9f20e510ae9fad639e62e459ce8201d618a46","md5":"68905718bbb23a2666b02b0190131452","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":8,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright IBM Corporation, 2007","start_line":5,"end_line":6}],"holders":[{"value":"IBM Corporation","start_line":5,"end_line":6}],"authors":[{"value":"Aneesh Kumar","start_line":5,"end_line":6}],"packages":[],"emails":[{"email":"aneesh.kumar@linux.vnet.ibm.com","start_line":6,"end_line":6}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/unix_io.c","type":"file","name":"unix_io.c","base_name":"unix_io","extension":".c","size":30455,"date":"2020-03-21","sha1":"bb782537ba86c55041497d8543246db5649f1e11","md5":"336724b85b6a2a3d692fb266ce6be06f","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":12,"end_line":15,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 by Theodore Ts'o","start_line":9,"end_line":10}],"holders":[{"value":"Theodore Ts'o","start_line":9,"end_line":10}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/unlink.c","type":"file","name":"unlink.c","base_name":"unlink","extension":".c","size":1987,"date":"2020-03-21","sha1":"d92e799d788dc55b661f9764c470401160c38295","md5":"7afe78472a898fe8942f7caa810d2c0a","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/utf8data.h","type":"file","name":"utf8data.h","base_name":"utf8data","extension":".h","size":330943,"date":"2020-03-21","sha1":"61a984445a53c19eee5a473b51524e92a5e22dd2","md5":"f4ac2009422ac4ea3ad869a5fbea97d2","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/utf8n.h","type":"file","name":"utf8n.h","base_name":"utf8n","extension":".h","size":3738,"date":"2020-03-21","sha1":"5b0fb0dfb4d9b155f3f4158f0c36120a10c4d58c","md5":"f0965f56fa58dbc3e2db0ddd60e4fb23","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,"licenses":[{"key":"gpl-1.0-plus","score":98.48,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":5,"end_line":12,"matched_rule":{"identifier":"gpl-1.0-plus_110.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":66,"matched_length":65,"match_coverage":98.48,"rule_relevance":100.0}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2014 SGI.","start_line":2,"end_line":3}],"holders":[{"value":"SGI.","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/valid_blk.c","type":"file","name":"valid_blk.c","base_name":"valid_blk","extension":".c","size":1670,"date":"2020-03-21","sha1":"4204735bbde841ddd6af14c6964a52475420bcde","md5":"3d89cfde3656a3dba06822143770e04c","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright 1997 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/version.c","type":"file","name":"version.c","base_name":"version","extension":".c","size":1098,"date":"2020-03-21","sha1":"879f580cb51c9612c65076ec24794cc46482d9b3","md5":"9c7ae597a6f7bb5c714e1736025bae78","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/write_bb_file.c","type":"file","name":"write_bb_file.c","base_name":"write_bb_file","extension":".c","size":779,"date":"2020-03-21","sha1":"9e9f56ff1572306cbdfb664e775ac4d5c3d7df59","md5":"a02a7c6171c6118f5f29e1a1f44acfbe","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1994, 1995 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tdb","type":"directory","name":"tdb","base_name":"tdb","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":8,"dirs_count":1,"size_count":12195,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tdb/build-tdb","type":"file","name":"build-tdb","base_name":"build-tdb","extension":"","size":849,"date":"2020-03-21","sha1":"58b51e8c42133ca98c2cf56754d10ebcc392b55c","md5":"da181f5eb74b1b653482317cf94e5138","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tdb/patches","type":"directory","name":"patches","base_name":"patches","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":0,"size_count":11346,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tdb/patches/copyright","type":"file","name":"copyright","base_name":"copyright","extension":"","size":716,"date":"2020-03-21","sha1":"d1bf87ecabe986bacd73e7b7146effbaa99abe26","md5":"a9c26eb26660c38d55c025525e33e4be","mime_type":"text/x-diff","file_type":"unified diff output, ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"lgpl-2.0-plus","score":14.39,"name":"GNU Library General Public License 2.0 or later","short_name":"LGPL 2.0 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0-plus","spdx_license_key":"LGPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.0-or-later","start_line":19,"end_line":20,"matched_rule":{"identifier":"lgpl-2.0-plus_65.RULE","license_expression":"lgpl-2.0-plus","licenses":["lgpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":139,"matched_length":20,"match_coverage":14.39,"rule_relevance":100}}],"license_expressions":["lgpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) Andrew Tridgell 2005","start_line":14,"end_line":17},{"value":"Copyright (c) Andrew Tridgell 1999-2005","start_line":14,"end_line":17},{"value":"Copyright (c) Jeremy Allison 2000-2006","start_line":14,"end_line":17},{"value":"Copyright (c) Paul Rusty Russell 2000","start_line":14,"end_line":17}],"holders":[{"value":"Andrew Tridgell","start_line":14,"end_line":17},{"value":"Andrew Tridgell","start_line":14,"end_line":17},{"value":"Jeremy Allison","start_line":14,"end_line":17},{"value":"Paul Rusty Russell","start_line":14,"end_line":17}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tdb/patches/ext2tdb-rename","type":"file","name":"ext2tdb-rename","base_name":"ext2tdb-rename","extension":"","size":2841,"date":"2020-03-21","sha1":"c700012780205c82efe4e46e0b995c48f1411387","md5":"fd83ceb2862ef126a837fca4e52b6649","mime_type":"text/x-diff","file_type":"unified diff output, ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tdb/patches/replace-includes","type":"file","name":"replace-includes","base_name":"replace-includes","extension":"","size":1924,"date":"2020-03-21","sha1":"8d12e20bb2644b6039fe0e3ce2008ab3a3128493","md5":"3279e0917e753e9f7c7139cc97970cc8","mime_type":"text/x-diff","file_type":"unified diff output, ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"other-copyleft","score":77.14,"name":"Other Copyleft Licenses","short_name":"Other Copyleft Licenses","category":"Copyleft","is_exception":false,"owner":"nexB","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:other-copyleft","spdx_license_key":null,"spdx_url":"","start_line":6,"end_line":6,"matched_rule":{"identifier":"other-copyleft_fsf_address_1.RULE","license_expression":"other-copyleft","licenses":["other-copyleft"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"3-seq","rule_length":14,"matched_length":12,"match_coverage":85.71,"rule_relevance":90.0}}],"license_expressions":["other-copyleft"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tdb/patches/series","type":"file","name":"series","base_name":"series","extension":"","size":94,"date":"2020-03-21","sha1":"7e6559dfb01e61d003cbd22999f49fb30d1531e8","md5":"d7407665a70fe6d73b9e2adf24371e3a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tdb/patches/static-functions","type":"file","name":"static-functions","base_name":"static-functions","extension":"","size":545,"date":"2020-03-21","sha1":"a443d34fdc8d04d265f6b434d7877b3272e3dca9","md5":"090a51902b70a4433ba24b8ad98847e1","mime_type":"text/x-diff","file_type":"unified diff output, ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tdb/patches/static-prototypes","type":"file","name":"static-prototypes","base_name":"static-prototypes","extension":"","size":4552,"date":"2020-03-21","sha1":"246985e13c3c652ef5a717c40e6c3f7a951009fe","md5":"5b95bfff8fac41ff13583defa06614de","mime_type":"text/x-diff","file_type":"unified diff output, ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ext2fs/tdb/patches/tdbtool-includes","type":"file","name":"tdbtool-includes","base_name":"tdbtool-includes","extension":"","size":674,"date":"2020-03-21","sha1":"447c702c25f684a7e8b1da14fb45919f23bff6d7","md5":"65f421c38dfe742c56d4cde7b4dcc2ca","mime_type":"text/x-diff","file_type":"unified diff output, ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"other-copyleft","score":73.64,"name":"Other Copyleft Licenses","short_name":"Other Copyleft Licenses","category":"Copyleft","is_exception":false,"owner":"nexB","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:other-copyleft","spdx_license_key":null,"spdx_url":"","start_line":6,"end_line":6,"matched_rule":{"identifier":"other-copyleft_fsf_address_2.RULE","license_expression":"other-copyleft","licenses":["other-copyleft"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"3-seq","rule_length":11,"matched_length":9,"match_coverage":81.82,"rule_relevance":90.0}}],"license_expressions":["other-copyleft"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss","type":"directory","name":"ss","base_name":"ss","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":29,"dirs_count":0,"size_count":65340,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/Android.bp","type":"file","name":"Android.bp","base_name":"Android","extension":".bp","size":681,"date":"2020-03-21","sha1":"64b8259fed0025cb7bf58ec6fd542e413fc900e3","md5":"f8c1a4c135fce673aaf0504fc90b2280","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2017 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/ct_c.awk","type":"file","name":"ct_c.awk","base_name":"ct_c","extension":".awk","size":1551,"date":"2020-03-21","sha1":"86d61eb87e281c981bfac997b1531a0f78b4ce03","md5":"b1083c00c9b18f06e378a9851af9d7a9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/ct_c.sed","type":"file","name":"ct_c.sed","base_name":"ct_c","extension":".sed","size":2290,"date":"2020-03-21","sha1":"4ef48be2496662083a029d7e849da3c92c4f658f","md5":"af8da29457ed5a76ffeeb7afda709330","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/data.c","type":"file","name":"data.c","base_name":"data","extension":".c","size":764,"date":"2020-03-21","sha1":"2e7ce2df5f25c8b100c8d1994902d788bb4de51c","md5":"5338b5b4a93c2c565cbed4690792c939","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":5,"end_line":12,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988, 1989 Massachusetts Institute of Technology","start_line":2,"end_line":3}],"holders":[{"value":"Massachusetts Institute of Technology","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/error.c","type":"file","name":"error.c","base_name":"error","extension":".c","size":1870,"date":"2020-03-21","sha1":"b439b7dcfa4539ed2744965006b6ecb27fcd6515","md5":"644dd31b8c3a6f29a9de926842d86aa8","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":5,"end_line":12,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988, 1989","start_line":2,"end_line":3}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/execute_cmd.c","type":"file","name":"execute_cmd.c","base_name":"execute_cmd","extension":".c","size":6076,"date":"2020-03-21","sha1":"252e2e0a5f897b8c3c78dd916af82be1d057e7e2","md5":"b6ac54a286ef27fbc57c1415ccd941d9","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":4,"end_line":11,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988, 1989 by Massachusetts Institute of Technology","start_line":2,"end_line":2}],"holders":[{"value":"Massachusetts Institute of Technology","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/get_readline.c","type":"file","name":"get_readline.c","base_name":"get_readline","extension":".c","size":2751,"date":"2020-03-21","sha1":"4a4536daa1b3210bee1baecd1564f753fc098fbf","md5":"fa6fb3d0bcaf2f1b21f58d19296e1045","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":4,"end_line":11,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 2003","start_line":2,"end_line":2}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/help.c","type":"file","name":"help.c","base_name":"help","extension":".c","size":4494,"date":"2020-03-21","sha1":"ab7b3cf486b157f84372f2674af56b19be047139","md5":"36d581116802c6c5c4e5b8f756a17244","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":4,"end_line":11,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988","start_line":2,"end_line":2}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/invocation.c","type":"file","name":"invocation.c","base_name":"invocation","extension":".c","size":3106,"date":"2020-03-21","sha1":"a361c3278ebd17591ac584844f8755b30c8f34c2","md5":"2c96ac97300ca4db4b76001131242dd9","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":4,"end_line":11,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988","start_line":2,"end_line":2}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/list_rqs.c","type":"file","name":"list_rqs.c","base_name":"list_rqs","extension":".c","size":2487,"date":"2020-03-21","sha1":"243f716dcf93b6871cb8bf377f506e3e97527630","md5":"2e6ac77978f53a1f74d3968f38ed4efb","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":4,"end_line":11,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988","start_line":2,"end_line":2}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/listen.c","type":"file","name":"listen.c","base_name":"listen","extension":".c","size":4545,"date":"2020-03-21","sha1":"84fc6dd7543de672a454ab3710f721a31b127257","md5":"4147b3096a7ba8d535615c23e2a45699","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":9,"end_line":16,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988","start_line":7,"end_line":7}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":8069,"date":"2020-03-21","sha1":"d836e87c7ba64ddb0483a80c3227ec4a52774c3e","md5":"a7d15c3e97a0e3c2e2fce0b4f955f052","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/mit-sipb-copyright.h","type":"file","name":"mit-sipb-copyright.h","base_name":"mit-sipb-copyright","extension":".h","size":763,"date":"2020-03-21","sha1":"1940524719dc25eab77014280d9e828cb7895d0f","md5":"7248d27f8ee1bd462000ace7523c8c07","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":6,"end_line":16,"matched_rule":{"identifier":"mit-old-style-no-advert_5.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":110,"matched_length":110,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987 by the Student Information Processing Board of the Massachusetts Institute of Technology","start_line":3,"end_line":4}],"holders":[{"value":"the Student Information Processing Board of the Massachusetts Institute of Technology","start_line":3,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/mk_cmds.1","type":"file","name":"mk_cmds.1","base_name":"mk_cmds","extension":".1","size":1112,"date":"2020-03-21","sha1":"a0298c045268e4dff311ac274055117a4231adbc","md5":"28ae7672991f95f857f3f3c3a5359a9b","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 2003 Theodore Ts'o","start_line":1,"end_line":1}],"holders":[{"value":"Theodore Ts'o","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/mk_cmds.sh.in","type":"file","name":"mk_cmds.sh.in","base_name":"mk_cmds.sh","extension":".in","size":1102,"date":"2020-03-21","sha1":"75d4128c44691d6bbbd7d7f4b5812cfaf9f86c38","md5":"04423696ee93bd41aa17927cb81b8e09","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/pager.c","type":"file","name":"pager.c","base_name":"pager","extension":".c","size":3227,"date":"2020-03-21","sha1":"17cf5352298a568a05e3951235d4a3ce3df88ade","md5":"d6d7c859b45e2cc027b17c0e996767c4","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":7,"end_line":14,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988","start_line":5,"end_line":5}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/parse.c","type":"file","name":"parse.c","base_name":"parse","extension":".c","size":3618,"date":"2020-03-21","sha1":"8d045158a77e337c082aab0e2a62b072a573c795","md5":"6a6cefeb4e1d0bf6def90395976d34fe","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":4,"end_line":11,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988","start_line":2,"end_line":2}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/prompt.c","type":"file","name":"prompt.c","base_name":"prompt","extension":".c","size":909,"date":"2020-03-21","sha1":"bc9946e65ad58f1f753056c38d0834079e4e2f7c","md5":"9d7b55b27eb4be1c18ba9fe0445a34bb","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":9,"end_line":16,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988","start_line":7,"end_line":7}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/request_tbl.c","type":"file","name":"request_tbl.c","base_name":"request_tbl","extension":".c","size":1878,"date":"2020-03-21","sha1":"e2da7a1a7703230d083559301b9edaa7cd411073","md5":"97537fb449f7b901ce9fafc97ec888f6","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":4,"end_line":11,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988","start_line":2,"end_line":2}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/requests.c","type":"file","name":"requests.c","base_name":"requests","extension":".c","size":2006,"date":"2020-03-21","sha1":"0d75e977e71d73a3a39c9e56b569aca70302ffd2","md5":"b2c805f38f0c6600d321e41abceaa61e","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":6,"end_line":13,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988, 1989","start_line":4,"end_line":4}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/ss.h","type":"file","name":"ss.h","base_name":"ss","extension":".h","size":3166,"date":"2020-03-21","sha1":"43678fbf1d0d499e0832e6c51842f99c1b02f0f1","md5":"737d88b9e215a7980e74920afe31f562","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":4,"end_line":11,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988","start_line":2,"end_line":2}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://scriptingnewsarchive.userland.com/1999/12/13","start_line":18,"end_line":18}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/ss.pc.in","type":"file","name":"ss.pc.in","base_name":"ss.pc","extension":".in","size":287,"date":"2020-03-21","sha1":"ae183b8a90cd3f057b786ec6f69a798f62017920","md5":"955e89101524e519355750cc7c50e2c1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/ss_err.et","type":"file","name":"ss_err.et","base_name":"ss_err","extension":".et","size":622,"date":"2020-03-21","sha1":"27224fcb1148ddc09d960456b2a4a57affb5b5af","md5":"854b018a524fbe1c56451876d9c07594","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/ss_internal.h","type":"file","name":"ss_internal.h","base_name":"ss_internal","extension":".h","size":3368,"date":"2020-03-21","sha1":"d14278533965fe70e886b6ab590c04c5b8f81c6c","md5":"22ccc9b0aa5df9d21f97e0ffc7fedb6b","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":4,"end_line":11,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988","start_line":2,"end_line":2}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/std_rqs.ct","type":"file","name":"std_rqs.ct","base_name":"std_rqs","extension":".ct","size":929,"date":"2020-03-21","sha1":"bc985aa97ba4c07490a36a16315f6deef9675967","md5":"640612a567149b14379af64d9e58c751","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/test_cmd.ct","type":"file","name":"test_cmd.ct","base_name":"test_cmd","extension":".ct","size":83,"date":"2020-03-21","sha1":"c58f3a995583368b6861825f973d5eebcff6b573","md5":"1ce522203fdc5db333d7e45c551b3d24","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/test_script","type":"file","name":"test_script","base_name":"test_script","extension":"","size":79,"date":"2020-03-21","sha1":"f1db1f3e2e87c56ce96a77950e1dab09fe49c41f","md5":"1a6b6bb641a4c57a101bf7a1c9b4af2b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/test_script_expected","type":"file","name":"test_script_expected","base_name":"test_script_expected","extension":"","size":451,"date":"2020-03-21","sha1":"601e9c929cc02aa83c4767053c178f9646a9e559","md5":"0c9372d498ee2b2f2ae4e4bf222cd62c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/ss/test_ss.c","type":"file","name":"test_ss.c","base_name":"test_ss","extension":".c","size":3056,"date":"2020-03-21","sha1":"ce78a38fd0abccbf5fe7c9639403b117f620f191","md5":"d6fcb9bb103774dd0961ac0a89fa0d2c","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,"licenses":[{"key":"mit-old-style-no-advert","score":100.0,"name":"MIT Old Style no advertising","short_name":"MIT Old Style no advertising","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_.28no_advertising_without_permission.29","text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-old-style-no-advert","spdx_license_key":"NTP","spdx_url":"https://spdx.org/licenses/NTP","start_line":6,"end_line":13,"matched_rule":{"identifier":"mit-old-style-no-advert_4.RULE","license_expression":"mit-old-style-no-advert","licenses":["mit-old-style-no-advert"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":83,"matched_length":83,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["mit-old-style-no-advert"],"copyrights":[{"value":"Copyright 1987, 1988","start_line":4,"end_line":4}],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support","type":"directory","name":"support","base_name":"support","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":26,"dirs_count":0,"size_count":188976,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/Android.bp","type":"file","name":"Android.bp","base_name":"Android","extension":".bp","size":1385,"date":"2020-03-21","sha1":"4018f0b08056db15556c9c6b1b5cd44c3337b104","md5":"fb4304f434df760418fb6d5fbdbdbd4e","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2017 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/argv_parse.c","type":"file","name":"argv_parse.c","base_name":"argv_parse","extension":".c","size":3773,"date":"2020-03-21","sha1":"419504fbb62f592b248690b457396ea20faaefc2","md5":"9f1c0e9cff13da80c7fb350411995cd7","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,"licenses":[{"key":"isc","score":95.0,"name":"ISC License","short_name":"ISC License","category":"Permissive","is_exception":false,"owner":"ISC - Internet Systems Consortium","homepage_url":"https://www.isc.org/software/license","text_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_with_legal_disclaimer_2","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:isc","spdx_license_key":"ISC","spdx_url":"https://spdx.org/licenses/ISC","start_line":14,"end_line":26,"matched_rule":{"identifier":"isc_16.RULE","license_expression":"isc","licenses":["isc"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":131,"matched_length":131,"match_coverage":100.0,"rule_relevance":95.0}}],"license_expressions":["isc"],"copyrights":[{"value":"Copyright 1999 by Theodore Ts'o","start_line":12,"end_line":12}],"holders":[{"value":"Theodore Ts'o","start_line":12,"end_line":12}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/argv_parse.h","type":"file","name":"argv_parse.h","base_name":"argv_parse","extension":".h","size":2038,"date":"2020-03-21","sha1":"98787633ff15138246a77322660b0dccca5b4905","md5":"54326253c48c5a4304b66bad5fa82321","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,"licenses":[{"key":"isc","score":95.0,"name":"ISC License","short_name":"ISC License","category":"Permissive","is_exception":false,"owner":"ISC - Internet Systems Consortium","homepage_url":"https://www.isc.org/software/license","text_url":"http://fedoraproject.org/wiki/Licensing:MIT#Old_Style_with_legal_disclaimer_2","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:isc","spdx_license_key":"ISC","spdx_url":"https://spdx.org/licenses/ISC","start_line":25,"end_line":37,"matched_rule":{"identifier":"isc_16.RULE","license_expression":"isc","licenses":["isc"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":131,"matched_length":131,"match_coverage":100.0,"rule_relevance":95.0}}],"license_expressions":["isc"],"copyrights":[{"value":"Copyright 1999 by Theodore Ts'o","start_line":23,"end_line":23}],"holders":[{"value":"Theodore Ts'o","start_line":23,"end_line":23}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/common.h","type":"file","name":"common.h","base_name":"common","extension":".h","size":779,"date":"2020-03-21","sha1":"4fc9f3a782a74cb229a235b6a7462b44faf9bad9","md5":"d6a7955ba37aca42c7209b6aba6ba639","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/cstring.c","type":"file","name":"cstring.c","base_name":"cstring","extension":".c","size":2800,"date":"2020-03-21","sha1":"c1bf5d5eeab312608cbba91766e6ee8787522b13","md5":"732fb388f58e1c89dd86d78628bc19fd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/cstring.h","type":"file","name":"cstring.h","base_name":"cstring","extension":".h","size":171,"date":"2020-03-21","sha1":"7aec0aa96e0843d5152ae634bc4d602fbbb866f5","md5":"031fe7611a6e11f4695e26647af84b0f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/dict.c","type":"file","name":"dict.c","base_name":"dict","extension":".c","size":36473,"date":"2020-03-21","sha1":"12c3e3ae69e4a0ae4c2b3fb9fe5d12cbd34cfa6c","md5":"a5fc7e52f3c569ad2985ca49c5bbae13","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,"licenses":[{"key":"other-permissive","score":100.0,"name":"Other Permissive Licenses","short_name":"Other Permissive Licenses","category":"Permissive","is_exception":false,"owner":"nexB","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:other-permissive","spdx_license_key":null,"spdx_url":"","start_line":7,"end_line":15,"matched_rule":{"identifier":"other-permissive_92.RULE","license_expression":"other-permissive","licenses":["other-permissive"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":94,"matched_length":94,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["other-permissive"],"copyrights":[{"value":"Copyright (c) 1997 Kaz Kylheku ","start_line":3,"end_line":3}],"holders":[{"value":"Kaz Kylheku","start_line":3,"end_line":3}],"authors":[],"packages":[],"emails":[{"email":"kaz@ashi.footprints.net","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/dict.h","type":"file","name":"dict.h","base_name":"dict","extension":".h","size":4624,"date":"2020-03-21","sha1":"0f99603368345b82318e0fb186421cbaa3d8c3a2","md5":"5a60f0adfc6b145f74d7a87144bd723a","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,"licenses":[{"key":"other-permissive","score":100.0,"name":"Other Permissive Licenses","short_name":"Other Permissive Licenses","category":"Permissive","is_exception":false,"owner":"nexB","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:other-permissive","spdx_license_key":null,"spdx_url":"","start_line":7,"end_line":15,"matched_rule":{"identifier":"other-permissive_92.RULE","license_expression":"other-permissive","licenses":["other-permissive"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":94,"matched_length":94,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["other-permissive"],"copyrights":[{"value":"Copyright (c) 1997 Kaz Kylheku ","start_line":3,"end_line":3}],"holders":[{"value":"Kaz Kylheku","start_line":3,"end_line":3}],"authors":[],"packages":[],"emails":[{"email":"kaz@ashi.footprints.net","start_line":3,"end_line":3}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/dqblk_v2.h","type":"file","name":"dqblk_v2.h","base_name":"dqblk_v2","extension":".h","size":822,"date":"2020-03-21","sha1":"074f2754bacfcfe665dfa9b1b448b1fb00895fee","md5":"2bc3a5c0cd53dc457962f61eb4a6cabd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"jack@suse.cz","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":6407,"date":"2020-03-21","sha1":"20b4b72e18286808cd14e97ad827f2bf7e6391d8","md5":"9c191e45d1a4d4a431a34f5f759519e4","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/mkquota.c","type":"file","name":"mkquota.c","base_name":"mkquota","extension":".c","size":16979,"date":"2020-03-21","sha1":"f42336f82526e107658b74f7306e44ed88a36888","md5":"dcd440e850965c886f505b937fe5f0e9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"adityakali@google.com","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/nls-enable.h","type":"file","name":"nls-enable.h","base_name":"nls-enable","extension":".h","size":497,"date":"2020-03-21","sha1":"d8b9aa4707c6eb771f8b7658ff63a2dca0fae05d","md5":"69e819e57290faabd9cf427709e086bd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/parse_qtype.c","type":"file","name":"parse_qtype.c","base_name":"parse_qtype","extension":".c","size":1760,"date":"2020-03-21","sha1":"a34efbb4e65519dc250f333660d950cc243ca2be","md5":"9030ea34d4a1ce9a960c46cbee9246d4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/plausible.c","type":"file","name":"plausible.c","base_name":"plausible","extension":".c","size":6743,"date":"2020-03-21","sha1":"81ffad9c0b7b2404a870727d065bff04f491155f","md5":"03735fbb79b40259b84d0dad1bfdc953","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":10,"end_line":11,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 2014, Oracle, Inc.","start_line":4,"end_line":4},{"value":"Copyright 1995, 1996, 1997, 1998, 1999, 2000 by Theodore Ts'o","start_line":7,"end_line":7}],"holders":[{"value":"Oracle, Inc.","start_line":4,"end_line":4},{"value":"Theodore Ts'o","start_line":7,"end_line":7}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/plausible.h","type":"file","name":"plausible.h","base_name":"plausible","extension":".h","size":633,"date":"2020-03-21","sha1":"4e90b91d0b0630c3e5c5454827465a8832fb6296","md5":"d10c0c09447640fd13ca6718ce6f8ff8","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright 2014 by Oracle, Inc.","start_line":5,"end_line":5}],"holders":[{"value":"Oracle, Inc.","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/prof_err.et","type":"file","name":"prof_err.et","base_name":"prof_err","extension":".et","size":2282,"date":"2020-03-21","sha1":"13672305db970a2db0dcf120bf6f631415dc574c","md5":"82a5ad5ff568dfbb6c51fc08f7f0cd4a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/profile.c","type":"file","name":"profile.c","base_name":"profile","extension":".c","size":42552,"date":"2020-03-21","sha1":"2b74c1465e8078344cf49cc440da6674f44c2765","md5":"db38341c69bc763238df31af7a57045f","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":17,"end_line":19,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}},{"key":"mit-with-modification-obligations","score":100.0,"name":"MIT With Modification Obligations","short_name":"MIT With Modification Obligations","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-with-modification-obligations","spdx_license_key":null,"spdx_url":"","start_line":26,"end_line":47,"matched_rule":{"identifier":"mit-with-modification-obligations_1.RULE","license_expression":"mit-with-modification-obligations","licenses":["mit-with-modification-obligations"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":192,"matched_length":192,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0","mit-with-modification-obligations"],"copyrights":[{"value":"Copyright (c) 2005, 2006 by Theodore Ts'o","start_line":15,"end_line":15},{"value":"Copyright (c) 1985-2005 by the Massachusetts Institute of Technology","start_line":22,"end_line":22}],"holders":[{"value":"Theodore Ts'o","start_line":15,"end_line":15},{"value":"the Massachusetts Institute of Technology","start_line":22,"end_line":22}],"authors":[{"value":"Theodore Ts'o","start_line":4,"end_line":8}],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/profile.h","type":"file","name":"profile.h","base_name":"profile","extension":".h","size":3338,"date":"2020-03-21","sha1":"a7266a0e2fe1be73198b3a7fbae8989d9ac4e11c","md5":"c9bac7e74f03b52b09d71bb62821370f","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}},{"key":"mit-with-modification-obligations","score":100.0,"name":"MIT With Modification Obligations","short_name":"MIT With Modification Obligations","category":"Permissive","is_exception":false,"owner":"MIT","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:mit-with-modification-obligations","spdx_license_key":null,"spdx_url":"","start_line":15,"end_line":36,"matched_rule":{"identifier":"mit-with-modification-obligations_1.RULE","license_expression":"mit-with-modification-obligations","licenses":["mit-with-modification-obligations"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":192,"matched_length":192,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-1.0-plus","mit-with-modification-obligations"],"copyrights":[{"value":"Copyright (c) 2005 by Theodore Ts'o","start_line":4,"end_line":4},{"value":"Copyright (c) 1985-2005 by the Massachusetts Institute of Technology","start_line":11,"end_line":11}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4},{"value":"the Massachusetts Institute of Technology","start_line":11,"end_line":11}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/profile_helpers.c","type":"file","name":"profile_helpers.c","base_name":"profile_helpers","extension":".c","size":6726,"date":"2020-03-21","sha1":"080e032d039d02859bed6ff07a00b1c06d81436f","md5":"bb2292ead5a0873d141533646fec2e55","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":15,"end_line":17,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2006 by Theodore Ts'o","start_line":13,"end_line":13}],"holders":[{"value":"Theodore Ts'o","start_line":13,"end_line":13}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/profile_helpers.h","type":"file","name":"profile_helpers.h","base_name":"profile_helpers","extension":".h","size":680,"date":"2020-03-21","sha1":"7b9f2d2720e9f2880c71660f9ff3f94d2bec98b6","md5":"02b7a31e4085e95005f71cbbe9d71f49","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2006 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/quotaio.c","type":"file","name":"quotaio.c","base_name":"quotaio","extension":".c","size":9106,"date":"2020-03-21","sha1":"b145f3a5409f79650b563e834f682d89c0da02ec","md5":"f737b0d5aba0755d5f1028953bb8c8e0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"jack@suse.cz","start_line":4,"end_line":4},{"email":"adityakali@google.com","start_line":5,"end_line":5}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/quotaio.h","type":"file","name":"quotaio.h","base_name":"quotaio","extension":".h","size":8202,"date":"2020-03-21","sha1":"29227fc5dd79d68a4d569f50d2ad58c1eb05e74a","md5":"088c3c5e1cbfba20863a90ee0a7accd9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"adityakali@google.com","start_line":27,"end_line":27},{"email":"jack@suse.cz","start_line":30,"end_line":30}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/quotaio_tree.c","type":"file","name":"quotaio_tree.c","base_name":"quotaio_tree","extension":".c","size":17230,"date":"2020-03-21","sha1":"ff2e5e643c289c61be7217ab7d381e1bd0296623","md5":"9e555f3aa6001367e275d0c55d5edcc2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"jack@suse.cz","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/quotaio_tree.h","type":"file","name":"quotaio_tree.h","base_name":"quotaio_tree","extension":".h","size":2177,"date":"2020-03-21","sha1":"a282d1e918d447ffed7bc6c95a1f43b812c1d4e4","md5":"8b02ad7bac05221de0aba958e19a3c68","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/quotaio_v2.c","type":"file","name":"quotaio_v2.c","base_name":"quotaio_v2","extension":".c","size":9036,"date":"2020-03-21","sha1":"b0e652244e6c3e7d0e9809aa05395fb7b1aa3093","md5":"a71b3b1561bb0cbfba597c8b44a0e60d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"jack@suse.cz","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/support/quotaio_v2.h","type":"file","name":"quotaio_v2.h","base_name":"quotaio_v2","extension":".h","size":1763,"date":"2020-03-21","sha1":"f61de0d690e5e0ae682834f3232c4d10f3e4078e","md5":"c74fd669b97408f3b5c02f25ebf39898","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid","type":"directory","name":"uuid","base_name":"uuid","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":30,"dirs_count":0,"size_count":88329,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/Android.bp","type":"file","name":"Android.bp","base_name":"Android","extension":".bp","size":947,"date":"2020-03-21","sha1":"313a6ed910f4fb6e0b2c226a68d30ccf62d81a91","md5":"7a9a863e3ed2dd3116b78aa84e89b8f7","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2017 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/clear.c","type":"file","name":"clear.c","base_name":"clear","extension":".c","size":1696,"date":"2020-03-21","sha1":"e4360cc86877f7699d67bcb78e4810532b07b41b","md5":"944df525572025423a39449ff04267a9","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":7,"end_line":31,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/compare.c","type":"file","name":"compare.c","base_name":"compare","extension":".c","size":2189,"date":"2020-03-21","sha1":"562f11a3cd11eb1c16269c5e16f65b3daa69ffa2","md5":"2fb0977fcb73effff8f6c225a773fcb6","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":9,"end_line":33,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1996, 1997 Theodore Ts'o","start_line":6,"end_line":6}],"holders":[{"value":"Theodore Ts'o","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/configure.in","type":"file","name":"configure.in","base_name":"configure","extension":".in","size":248,"date":"2020-03-21","sha1":"c3f04b9316f99400f969fea4cb2ff8b12dcfc1f5","md5":"28626da6ac6c94769a8c1af959ea0700","mime_type":"text/x-m4","file_type":"M4 macro processor script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/copy.c","type":"file","name":"copy.c","base_name":"copy","extension":".c","size":1795,"date":"2020-03-21","sha1":"33ed56b6e009da0531aa363f198d8125e84e3bc9","md5":"dc2525f0d5d4dbb1385ae8ece379e7ee","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":7,"end_line":31,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/COPYING","type":"file","name":"COPYING","base_name":"COPYING","extension":"","size":1391,"date":"2020-03-21","sha1":"e5c9f3867b9251dcd2d97a4d1dffaa38afe6625d","md5":"58dcd8452651fc8b07d1f65ce07ca8af","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":1,"end_line":25,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"1-hash","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/gen_uuid.c","type":"file","name":"gen_uuid.c","base_name":"gen_uuid","extension":".c","size":15884,"date":"2020-03-21","sha1":"097a73e1e4129ea4ec8b15a4454c2fdceda5a6d1","md5":"4e77ce7ef87eeb161d01db15c1af07e9","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":7,"end_line":31,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1996, 1997, 1998, 1999 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.codeguru.com/cpp/i-n/network/networkinformation/article.php/c5451","start_line":221,"end_line":221}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/gen_uuid_nt.c","type":"file","name":"gen_uuid_nt.c","base_name":"gen_uuid_nt","extension":".c","size":1647,"date":"2020-03-21","sha1":"a6ad687e097c7de35c8482f37bebd1154110403a","md5":"0cb9aef0850f5460452c05bdf92c9f72","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Andrey Shedel (andreys@ns.cr.cyco.com)","start_line":4,"end_line":4}],"packages":[],"emails":[{"email":"andreys@ns.cr.cyco.com","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/isnull.c","type":"file","name":"isnull.c","base_name":"isnull","extension":".c","size":1842,"date":"2020-03-21","sha1":"a9acbb14ef1102ffbb8614f5298f32972c989535","md5":"c92676c43f74c6b47d8532429c1cf67a","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":7,"end_line":31,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":6828,"date":"2020-03-21","sha1":"3782ca4ddd7f16ff970f983d8d9a6f1918fd69b3","md5":"1a1cd3d2ae37010453b9a5fe0c63423e","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/pack.c","type":"file","name":"pack.c","base_name":"pack","extension":".c","size":2265,"date":"2020-03-21","sha1":"52c35f2b16b52712c20e0f86a7b89316970ae91e","md5":"1518ed011626de6be88b54b23aa994ee","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":7,"end_line":31,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/parse.c","type":"file","name":"parse.c","base_name":"parse","extension":".c","size":2441,"date":"2020-03-21","sha1":"3cbae6f6921d2f48b6707094ebbde717b7553aed","md5":"db16dc1c05bc2ce8244e67ad3231b9cd","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":7,"end_line":31,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/tst_uuid.c","type":"file","name":"tst_uuid.c","base_name":"tst_uuid","extension":".c","size":5886,"date":"2020-03-21","sha1":"8955277e1abc3b73fb48768a4ce26424ea145d00","md5":"2cb8f11167ac734918539d7f2dd95e11","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":7,"end_line":31,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1996, 1997, 1998 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/unpack.c","type":"file","name":"unpack.c","base_name":"unpack","extension":".c","size":2109,"date":"2020-03-21","sha1":"ed400aa830808fcdb7a9dea883ded3d7561d36e9","md5":"ac0fd9fe47c61f4ce2014335222eb579","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":7,"end_line":31,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/unparse.c","type":"file","name":"unparse.c","base_name":"unparse","extension":".c","size":2546,"date":"2020-03-21","sha1":"200806050a85356288087a3ae6dd71a337ee7390","md5":"b79783cf8b8dbfca5cdfb3432d949ed7","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":7,"end_line":31,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/uuid.3.in","type":"file","name":"uuid.3.in","base_name":"uuid.3","extension":".in","size":2846,"date":"2020-03-21","sha1":"90814edcb11fc9ae35a4ef959016ae8c4a294063","md5":"c6685775553753024e837eb2fa3704de","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":4,"end_line":28,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright 1999 Andreas Dilger (adilger@enel.ucalgary.ca)","start_line":1,"end_line":1}],"holders":[{"value":"Andreas Dilger","start_line":1,"end_line":1}],"authors":[{"value":"the Open Software Foundation","start_line":40,"end_line":42}],"packages":[],"emails":[{"email":"adilger@enel.ucalgary.ca","start_line":1,"end_line":1}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":55,"end_line":55}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/uuid.h.in","type":"file","name":"uuid.h.in","base_name":"uuid.h","extension":".in","size":3258,"date":"2020-03-21","sha1":"5a5b9389d3f3f63962380bfb933d4e75c5e995bc","md5":"300b89d8dbcb69b11bc970cfd7fc6a42","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":7,"end_line":31,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1996, 1997, 1998 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/uuid.pc.in","type":"file","name":"uuid.pc.in","base_name":"uuid.pc","extension":".in","size":247,"date":"2020-03-21","sha1":"0def5e732ae0546d70d49c3a0a0faf7bd9632361","md5":"0ee0a6c52d8ae35649d53fa959722263","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/uuid_clear.3.in","type":"file","name":"uuid_clear.3.in","base_name":"uuid_clear.3","extension":".in","size":2292,"date":"2020-03-21","sha1":"fec506f10c733df1f7d27b908970364f9616cedb","md5":"0f225b713245a17cc54af941dbd0be8d","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"TypeScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":4,"end_line":28,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright 1999 Andreas Dilger (adilger@enel.ucalgary.ca)","start_line":1,"end_line":1}],"holders":[{"value":"Andreas Dilger","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[{"email":"adilger@enel.ucalgary.ca","start_line":1,"end_line":1}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":50,"end_line":50}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/uuid_compare.3.in","type":"file","name":"uuid_compare.3.in","base_name":"uuid_compare.3","extension":".in","size":2489,"date":"2020-03-21","sha1":"ddd24e5d83b896ddf321ebcf74eb3c1b8cfc34f5","md5":"72dba23b59bf5f2847ea65a9e8558fec","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"TypeScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":4,"end_line":28,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright 1999 Andreas Dilger (adilger@enel.ucalgary.ca)","start_line":1,"end_line":1}],"holders":[{"value":"Andreas Dilger","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[{"email":"adilger@enel.ucalgary.ca","start_line":1,"end_line":1}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":56,"end_line":56}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/uuid_copy.3.in","type":"file","name":"uuid_copy.3.in","base_name":"uuid_copy.3","extension":".in","size":2337,"date":"2020-03-21","sha1":"fba95f076f2658c3d217ac22b8180648e27c3605","md5":"6b445d38ef248d45ef5ded89d333b61c","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"TypeScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":4,"end_line":28,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright 1999 Andreas Dilger (adilger@enel.ucalgary.ca)","start_line":1,"end_line":1}],"holders":[{"value":"Andreas Dilger","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[{"email":"adilger@enel.ucalgary.ca","start_line":1,"end_line":1}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":52,"end_line":52}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/uuid_generate.3.in","type":"file","name":"uuid_generate.3.in","base_name":"uuid_generate.3","extension":".in","size":4122,"date":"2020-03-21","sha1":"a2d69fb404fde7ac6c5a83fb19c45dd4cdef468b","md5":"3d3b100b72f04184c9d68dcbd90be1ba","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"TypeScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":4,"end_line":28,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright 1999 Andreas Dilger (adilger@enel.ucalgary.ca)","start_line":1,"end_line":1}],"holders":[{"value":"Andreas Dilger","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[{"email":"adilger@enel.ucalgary.ca","start_line":1,"end_line":1}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":92,"end_line":92}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/uuid_is_null.3.in","type":"file","name":"uuid_is_null.3.in","base_name":"uuid_is_null.3","extension":".in","size":2402,"date":"2020-03-21","sha1":"24ab42e86e68151a93dcdd3fa9645ac9f26796ce","md5":"6fb64043f46d78760f5a2eafea4a8d8c","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"TypeScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":4,"end_line":28,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright 1999 Andreas Dilger (adilger@enel.ucalgary.ca)","start_line":1,"end_line":1}],"holders":[{"value":"Andreas Dilger","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[{"email":"adilger@enel.ucalgary.ca","start_line":1,"end_line":1}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":51,"end_line":51}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/uuid_parse.3.in","type":"file","name":"uuid_parse.3.in","base_name":"uuid_parse.3","extension":".in","size":2708,"date":"2020-03-21","sha1":"298b65cefc6b716a0a91d1b7767ef6b155db0b4f","md5":"de0e066a3a450e1bdfa830ead16eaaf5","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"TypeScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":4,"end_line":28,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright 1999 Andreas Dilger (adilger@enel.ucalgary.ca)","start_line":1,"end_line":1}],"holders":[{"value":"Andreas Dilger","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[{"email":"adilger@enel.ucalgary.ca","start_line":1,"end_line":1}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":60,"end_line":60}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/uuid_time.3.in","type":"file","name":"uuid_time.3.in","base_name":"uuid_time.3","extension":".in","size":2936,"date":"2020-03-21","sha1":"f787b5fb26170fb34f24d5554957a328ec79ad2e","md5":"5e34145b5c1b54c9b5cf02f1d1b23d6e","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"TypeScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":4,"end_line":28,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright 1999 Andreas Dilger (adilger@enel.ucalgary.ca)","start_line":1,"end_line":1}],"holders":[{"value":"Andreas Dilger","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[{"email":"adilger@enel.ucalgary.ca","start_line":1,"end_line":1}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":63,"end_line":63}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/uuid_time.c","type":"file","name":"uuid_time.c","base_name":"uuid_time","extension":".c","size":4363,"date":"2020-03-21","sha1":"2ff2f6c31138a6939237ee243ef387ca52292511","md5":"e2e6c4a96f286eedf01bd2a57eee0566","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":9,"end_line":33,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1998, 1999 Theodore Ts'o","start_line":6,"end_line":6}],"holders":[{"value":"Theodore Ts'o","start_line":6,"end_line":6}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/uuid_types.h.in","type":"file","name":"uuid_types.h.in","base_name":"uuid_types.h","extension":".in","size":1178,"date":"2020-03-21","sha1":"3a93a8fafb28ab96c17d3c689c0d02babc003136","md5":"2d2386375a72d2feb0d952d1e8f6c542","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/uuid_unparse.3.in","type":"file","name":"uuid_unparse.3.in","base_name":"uuid_unparse.3","extension":".in","size":2917,"date":"2020-03-21","sha1":"dd7db6b7159b6dfba425fed380b486d111b1489d","md5":"aea373ca6559984ad0a37c319d1e17de","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"TypeScript","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":4,"end_line":28,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright 1999 Andreas Dilger (adilger@enel.ucalgary.ca)","start_line":1,"end_line":1}],"holders":[{"value":"Andreas Dilger","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[{"email":"adilger@enel.ucalgary.ca","start_line":1,"end_line":1}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":68,"end_line":68}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/uuidd.h","type":"file","name":"uuidd.h","base_name":"uuidd","extension":".h","size":2189,"date":"2020-03-21","sha1":"918bc2582109f05edd7febaf6792777322d55ac9","md5":"2d0cc0dd293de6ff4ef9083f21bb9eb0","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":7,"end_line":31,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 2007 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/lib/uuid/uuidP.h","type":"file","name":"uuidP.h","base_name":"uuidP","extension":".h","size":2331,"date":"2020-03-21","sha1":"2d1a50d3523f4a29ff3a666e6094e2bc8dd71ec2","md5":"c3e9d1a6c98e3cf4a06c5d4d09638789","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,"licenses":[{"key":"bsd-new","score":100.0,"name":"BSD-3-Clause","short_name":"BSD-3-Clause","category":"Permissive","is_exception":false,"owner":"Regents of the University of California","homepage_url":"http://www.opensource.org/licenses/BSD-3-Clause","text_url":"http://www.opensource.org/licenses/BSD-3-Clause","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:bsd-new","spdx_license_key":"BSD-3-Clause","spdx_url":"https://spdx.org/licenses/BSD-3-Clause","start_line":7,"end_line":31,"matched_rule":{"identifier":"bsd-new_117.RULE","license_expression":"bsd-new","licenses":["bsd-new"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":210,"matched_length":210,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["bsd-new"],"copyrights":[{"value":"Copyright (c) 1996, 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc","type":"directory","name":"misc","base_name":"misc","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":69,"dirs_count":0,"size_count":869790,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/Android.bp","type":"file","name":"Android.bp","base_name":"Android","extension":".bp","size":7042,"date":"2020-03-21","sha1":"98c58370693a91b67dbe11d880632e8dbac1a3e9","md5":"e943341b752cedce70452cec6ec8e1d7","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2017 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/badblocks.8.in","type":"file","name":"badblocks.8.in","base_name":"badblocks.8","extension":".in","size":6619,"date":"2020-03-21","sha1":"8ea5166df19987506f54b470185a3644283f0a50","md5":"ab7ae3ff8765c5e0af723461605883fa","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Remy Card . Current","start_line":223,"end_line":229},{"value":"David Beattie ","start_line":223,"end_line":229}],"packages":[],"emails":[{"email":"Remy.Card@linux.org","start_line":225,"end_line":225},{"email":"tytso@alum.mit.edu","start_line":226,"end_line":226},{"email":"dbeattie@softhome.net","start_line":227,"end_line":227}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":231,"end_line":231}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/badblocks.c","type":"file","name":"badblocks.c","base_name":"badblocks","extension":".c","size":33720,"date":"2020-03-21","sha1":"3305ec61abd14abfcb0fc2e49acfa599e4df014b","md5":"69f6a055b52289fc869c2d8c67bd0ded","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":14,"end_line":16,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1992, 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6},{"value":"Copyright 1995, 1996, 1997, 1998, 1999 by Theodore Ts'o","start_line":8,"end_line":9},{"value":"Copyright 1999 by David Beattie","start_line":8,"end_line":9},{"value":"copyrighted by Linus Torvalds ","start_line":12,"end_line":12}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6},{"value":"Theodore Ts'o","start_line":8,"end_line":9},{"value":"David Beattie","start_line":8,"end_line":9},{"value":"Linus Torvalds","start_line":12,"end_line":12}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4},{"email":"Linus.Torvalds@cs.helsinki.fi","start_line":12,"end_line":12}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/base_device.c","type":"file","name":"base_device.c","base_name":"base_device","extension":".c","size":3497,"date":"2020-03-21","sha1":"5b986945038b1d273f3645dd9477077be1391893","md5":"dee60bc59e5312e7e7fbc042e839a824","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":16,"end_line":18,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2000 Theodore Ts'o","start_line":14,"end_line":14}],"holders":[{"value":"Theodore Ts'o","start_line":14,"end_line":14}],"authors":[{"value":"Theodore Ts'o, ","start_line":12,"end_line":12}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":12,"end_line":12}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/base_device.tst","type":"file","name":"base_device.tst","base_name":"base_device","extension":".tst","size":554,"date":"2020-03-21","sha1":"17bf1dc6d289f69e838dfb1638b3601a8759e2d1","md5":"d862e7e1c81b072a0fdbe826a0e7798f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/blkid.8.in","type":"file","name":"blkid.8.in","base_name":"blkid.8","extension":".in","size":4190,"date":"2020-03-21","sha1":"8ee2917056332e65d63344635d489929afd62ddd","md5":"57a6bc598077762b5b35cf074c2c8fad","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":5,"end_line":5,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 2000 Andreas Dilger (adilger@turbolinux.com)","start_line":1,"end_line":1}],"holders":[{"value":"Andreas Dilger","start_line":1,"end_line":1}],"authors":[{"value":"Andreas Dilger","start_line":156,"end_line":160}],"packages":[],"emails":[{"email":"adilger@turbolinux.com","start_line":1,"end_line":1}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":162,"end_line":162}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/blkid.c","type":"file","name":"blkid.c","base_name":"blkid","extension":".c","size":9495,"date":"2020-03-21","sha1":"09044ac7810c8ff92ee94a6855c473bf3b1ddfe0","md5":"f47aee15c60d9c8d7236d90d153d9e68","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,"licenses":[{"key":"lgpl-2.1-plus","score":100.0,"name":"GNU Lesser General Public License 2.1 or later","short_name":"LGPL 2.1 or later","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.1-plus","spdx_license_key":"LGPL-2.1-or-later","spdx_url":"https://spdx.org/licenses/LGPL-2.1-or-later","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.1-plus_81.RULE","license_expression":"lgpl-2.1-plus","licenses":["lgpl-2.1-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":19,"matched_length":19,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.1-plus"],"copyrights":[{"value":"Copyright (c) 2001 Andreas Dilger","start_line":4,"end_line":4}],"holders":[{"value":"Andreas Dilger","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/chattr.1.in","type":"file","name":"chattr.1.in","base_name":"chattr.1","extension":".in","size":8427,"date":"2020-03-21","sha1":"3e3dd68d42f72b48b853ece63a15d0cc9d4f940a","md5":"82d060027e99d6ffa0e6ebdd02bccd4e","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Remy Card ","start_line":223,"end_line":231},{"value":"Theodore Ts'o ","start_line":223,"end_line":231}],"packages":[],"emails":[{"email":"Remy.Card@linux.org","start_line":225,"end_line":225},{"email":"tytso@alum.mit.edu","start_line":226,"end_line":226}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":240,"end_line":240}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/chattr.c","type":"file","name":"chattr.c","base_name":"chattr","extension":".c","size":7255,"date":"2020-03-21","sha1":"7d9fc8a6e29eab493102c78666d639aaf1227f9a","md5":"6693f6ffa4ac45398cc3fe56e291894b","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,"licenses":[{"key":"gpl-1.0-plus","score":77.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":8,"end_line":9,"matched_rule":{"identifier":"gpl-1.0-plus_20.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":14,"matched_length":14,"match_coverage":100.0,"rule_relevance":77}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/check_fuzzer.c","type":"file","name":"check_fuzzer.c","base_name":"check_fuzzer","extension":".c","size":1266,"date":"2020-03-21","sha1":"e549428f995fc1fd568a13362d3e17b3d62e4abe","md5":"3eced31af4f29c7b567f4b200f813d5b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/create_inode.c","type":"file","name":"create_inode.c","base_name":"create_inode","extension":".c","size":25676,"date":"2020-03-21","sha1":"1233544581c9716bd7cec8d207a7bdb1f8c62ad0","md5":"5417a185be398b547a5904412789a1bb","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2014 Robert Yang ","start_line":4,"end_line":4}],"holders":[{"value":"Robert Yang","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"liezhi.yang@windriver.com","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/create_inode.h","type":"file","name":"create_inode.h","base_name":"create_inode","extension":".h","size":1663,"date":"2020-03-21","sha1":"636ce0456f499414eb2a64260a7c8e7f7fe8e93f","md5":"7c4453322083a1b2a05f834a32c4f007","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/dumpe2fs.8.in","type":"file","name":"dumpe2fs.8.in","base_name":"dumpe2fs.8","extension":".in","size":3194,"date":"2020-03-21","sha1":"2ae6f0a401867de2b3bcad560a1c8ea553c6ccd6","md5":"5ac975bece93cfda3db563cc8244d4e0","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1993, 1994, 1995 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[{"value":"Remy Card ","start_line":101,"end_line":106},{"value":"Theodore Ts'o ","start_line":101,"end_line":106}],"packages":[],"emails":[{"email":"Remy.Card@linux.org","start_line":103,"end_line":103},{"email":"tytso@alum.mit.edu","start_line":104,"end_line":104}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":108,"end_line":108}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/dumpe2fs.c","type":"file","name":"dumpe2fs.c","base_name":"dumpe2fs","extension":".c","size":19667,"date":"2020-03-21","sha1":"c065d5a2620e531caa35f303f6fc7a422701e5f5","md5":"bd02f9448009fb1f0df2d5995bbb5e5b","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":11,"end_line":13,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1992, 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":5,"end_line":7},{"value":"Copyright 1995, 1996, 1997 by Theodore Ts'o","start_line":9,"end_line":9}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":5,"end_line":7},{"value":"Theodore Ts'o","start_line":9,"end_line":9}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":5,"end_line":5}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e2freefrag.8.in","type":"file","name":"e2freefrag.8.in","base_name":"e2freefrag.8","extension":".in","size":2510,"date":"2020-03-21","sha1":"def2ad9faea5f3bcedd451b7c753f638318e0f42","md5":"810c4b823fd3bf343c574e605049a644","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Rupesh Thakare","start_line":90,"end_line":93},{"value":"Andreas Dilger , and Kalpak Shah","start_line":90,"end_line":93}],"packages":[],"emails":[{"email":"adilger@sun.com","start_line":92,"end_line":92}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e2freefrag.c","type":"file","name":"e2freefrag.c","base_name":"e2freefrag","extension":".c","size":11034,"date":"2020-03-21","sha1":"bf6a7cf552d0c976e48f79ce9e23803eaa0aed36","md5":"be06e6845e6d89e9408b45d23bad14e8","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,"licenses":[{"key":"lgpl-2.0","score":90.48,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":9,"end_line":12,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":19,"match_coverage":90.48,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2009 Sun Microsystems, Inc.","start_line":4,"end_line":4}],"holders":[{"value":"Sun Microsystems, Inc.","start_line":4,"end_line":4}],"authors":[{"value":"Rupesh Thakare Andreas Dilger ","start_line":6,"end_line":7}],"packages":[],"emails":[{"email":"rupesh@sun.com","start_line":6,"end_line":6},{"email":"adilger@sun.com","start_line":7,"end_line":7}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e2freefrag.h","type":"file","name":"e2freefrag.h","base_name":"e2freefrag","extension":".h","size":668,"date":"2020-03-21","sha1":"17fb9bc6818df0f083682e311129cbf28dd796fa","md5":"3cdf7dc12878fe970b645cf98c0d70af","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e2fuzz.c","type":"file","name":"e2fuzz.c","base_name":"e2fuzz","extension":".c","size":8432,"date":"2020-03-21","sha1":"b3869b24f322ad471ed7bac7f7091041231994b1","md5":"3aa1a8dc93b6292441d1e6d4d0888824","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,"licenses":[{"key":"lgpl-2.0","score":100.0,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":21,"matched_length":21,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2014 Oracle","start_line":4,"end_line":4}],"holders":[{"value":"Oracle","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e2fuzz.sh","type":"file","name":"e2fuzz.sh","base_name":"e2fuzz","extension":".sh","size":7823,"date":"2020-03-21","sha1":"bb75278e75297ddc58f22be5f99846f5f43bd2f9","md5":"5d496accea086f1cb451681191f68e2b","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 2014 Oracle","start_line":4,"end_line":4}],"holders":[{"value":"Oracle","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e2image.8.in","type":"file","name":"e2image.8.in","base_name":"e2image.8","extension":".in","size":9978,"date":"2020-03-21","sha1":"95f437274f016aaaee0c594941643ff0b8831bc8","md5":"b9a2ebbbc7bea48d593a768ea7d2f549","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 2001 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[{"value":"Theodore Ts'o (tytso@mit.edu)","start_line":307,"end_line":311}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":309,"end_line":309}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":313,"end_line":313}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e2image.c","type":"file","name":"e2image.c","base_name":"e2image","extension":".c","size":43155,"date":"2020-03-21","sha1":"8e82829fdec5ef395883baa83442cddd6b40c71b","md5":"50013e4729c7cec8b797ce3edaf1b6a5","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright 2000, 2001 by Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e2initrd_helper.c","type":"file","name":"e2initrd_helper.c","base_name":"e2initrd_helper","extension":".c","size":6836,"date":"2020-03-21","sha1":"8ff035a48df10f845864014025d7e7af4eda4aa1","md5":"797eebfb7de63f1b5ab9e139ded531ec","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright 2004 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e2label.8.in","type":"file","name":"e2label.8.in","base_name":"e2label.8","extension":".in","size":1235,"date":"2020-03-21","sha1":"00ad450367c0f0668042d14fba41a5a281ce9bb5","md5":"8593015f88a6003c6cd675b4a9fccb40","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1993, 1994, 1995 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[{"value":"Theodore Ts'o (tytso@mit.edu)","start_line":43,"end_line":47}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":45,"end_line":45}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":49,"end_line":49}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e2label.c","type":"file","name":"e2label.c","base_name":"e2label","extension":".c","size":2631,"date":"2020-03-21","sha1":"767dfd94836e1cc2a975f39745a4ce0897250c43","md5":"d05fb18f4cf0afe4a8a5f7da7a7065fa","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":9,"end_line":10,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1997, 1998 by Theodore Ts'o","start_line":6,"end_line":6}],"holders":[{"value":"Theodore Ts'o","start_line":6,"end_line":6}],"authors":[{"value":"Andries Brouwer (aeb@cwi.nl)","start_line":4,"end_line":4}],"packages":[],"emails":[{"email":"aeb@cwi.nl","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e2mmpstatus.8.in","type":"file","name":"e2mmpstatus.8.in","base_name":"e2mmpstatus.8","extension":".in","size":1892,"date":"2020-03-21","sha1":"89accc439a9611739c1402542fae75aa1652f9d8","md5":"2ac55a333fde325a6c85211ad55664d5","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":2,"end_line":2,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e2undo.8.in","type":"file","name":"e2undo.8.in","base_name":"e2undo.8","extension":".in","size":1975,"date":"2020-03-21","sha1":"1bb2584fbcad09e2928e6c73f5deb3f650da8d7d","md5":"a30ab45d8d45cf527b802fdebce6016a","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 2008 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[{"value":"Aneesh Kumar K.V. (aneesh.kumar@linux.vnet.ibm.com)","start_line":74,"end_line":78}],"packages":[],"emails":[{"email":"aneesh.kumar@linux.vnet.ibm.com","start_line":76,"end_line":76}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":80,"end_line":80}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e2undo.c","type":"file","name":"e2undo.c","base_name":"e2undo","extension":".c","size":17950,"date":"2020-03-21","sha1":"80e8223485f5aa7b8698612450f23a15812ece75","md5":"328ec67e7439ff1d54df13b04464cf84","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright IBM Corporation, 2007","start_line":4,"end_line":5}],"holders":[{"value":"IBM Corporation","start_line":4,"end_line":5}],"authors":[{"value":"Aneesh Kumar","start_line":4,"end_line":5}],"packages":[],"emails":[{"email":"aneesh.kumar@linux.vnet.ibm.com","start_line":5,"end_line":5}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e4crypt.8.in","type":"file","name":"e4crypt.8.in","base_name":"e4crypt.8","extension":".in","size":2749,"date":"2020-03-21","sha1":"82dbd1300d0ac097459b4c7eda56500d47c2461a","md5":"66ac0267871da10e7f7e549c5cfd7b1c","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Michael Halcrow , Ildar Muslukhov , and Theodore Ts'o ","start_line":66,"end_line":69}],"packages":[],"emails":[{"email":"mhalcrow@google.com","start_line":67,"end_line":67},{"email":"muslukhovi@gmail.com","start_line":68,"end_line":68},{"email":"tytso@mit.edu","start_line":68,"end_line":68}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e4crypt.c","type":"file","name":"e4crypt.c","base_name":"e4crypt","extension":".c","size":22392,"date":"2020-03-21","sha1":"2e3555566cdfc9f71e420acf8e38d86f1d1a135c","md5":"0f888e02861126a8a34720f3904aa676","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 2014 Google, Inc.","start_line":4,"end_line":5}],"holders":[{"value":"Google, Inc.","start_line":4,"end_line":5}],"authors":[{"value":"Michael Halcrow , Ildar Muslukhov ","start_line":7,"end_line":8}],"packages":[],"emails":[{"email":"mhalcrow@google.com","start_line":7,"end_line":7},{"email":"ildarm@google.com","start_line":8,"end_line":8}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e4defrag.8.in","type":"file","name":"e4defrag.8.in","base_name":"e4defrag.8","extension":".in","size":2512,"date":"2020-03-21","sha1":"2f2cddd0504352e517c72c9bc1e55103f3950f10","md5":"8be99b2ce4beb84c60db63a1c089d5ff","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"GAS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Akira Fujita and Takashi Sato ","start_line":83,"end_line":87}],"packages":[],"emails":[{"email":"a-fujita@rs.jp.nec.com","start_line":85,"end_line":85},{"email":"t-sato@yk.jp.nec.com","start_line":86,"end_line":86}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/e4defrag.c","type":"file","name":"e4defrag.c","base_name":"e4defrag","extension":".c","size":50215,"date":"2020-03-21","sha1":"2d964cc2bc2979893a3ba52fdfcb4bd5d6a2b600","md5":"0301b605e001c9a2cfff77921f5734a3","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright (c) 2009 NEC Software Tohoku, Ltd.","start_line":4,"end_line":4}],"holders":[{"value":"NEC Software Tohoku, Ltd.","start_line":4,"end_line":4}],"authors":[{"value":"Akira Fujita Takashi Sato ","start_line":6,"end_line":7}],"packages":[],"emails":[{"email":"a-fujita@rs.jp.nec.com","start_line":6,"end_line":6},{"email":"t-sato@yk.jp.nec.com","start_line":7,"end_line":7}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/ext4.5.in","type":"file","name":"ext4.5.in","base_name":"ext4.5","extension":".in","size":29598,"date":"2020-03-21","sha1":"1b3d2e0fdc50ff70e22f52485bd213ec9e33e4f6","md5":"8f4e3719457122f34b4da004f3e340c8","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1993, 1994, 1995 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":55,"end_line":55}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/filefrag.8.in","type":"file","name":"filefrag.8.in","base_name":"filefrag.8","extension":".in","size":1453,"date":"2020-03-21","sha1":"3d894c046a8b875cafa8e052680e4ff14e4b5d70","md5":"34eef6319d554c86415f4e205f161d48","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Theodore Ts'o ","start_line":60,"end_line":62}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":62,"end_line":62}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/filefrag.c","type":"file","name":"filefrag.c","base_name":"filefrag","extension":".c","size":15329,"date":"2020-03-21","sha1":"93f23260cfeeede0c2df1a35bc12169b981c0c89","md5":"3ffdd99f6e85430e4521c1eed8cf0f7a","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright 2003 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/findfs.8.in","type":"file","name":"findfs.8.in","base_name":"findfs.8","extension":".in","size":835,"date":"2020-03-21","sha1":"dc77b5ebc11fa8e759fc56f84fe9025e1a613ac7","md5":"de72095ccec86faf4ef7a03e54cf440d","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1993, 1994, 1995 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[{"value":"Theodore Ts'o (tytso@mit.edu)","start_line":24,"end_line":28}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":26,"end_line":26}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":30,"end_line":30}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/findsuper.c","type":"file","name":"findsuper.c","base_name":"findsuper","extension":".c","size":8354,"date":"2020-03-21","sha1":"3d1c0c8102a2a4290ae7d1cb3799e7831047e223","md5":"797767392c28b984bf9334d8fe8a6768","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":54,"end_line":56,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Portions Copyright 1998-2000, Theodore Ts'o","start_line":8,"end_line":8}],"holders":[{"value":"Theodore Ts'o","start_line":8,"end_line":8}],"authors":[{"value":"Andreas Dilger ","start_line":42,"end_line":45}],"packages":[],"emails":[{"email":"ssd@nevets.oau.org","start_line":39,"end_line":39},{"email":"ssd@mae.engr.ucf.edu","start_line":40,"end_line":40},{"email":"adilger@turbolinux.com","start_line":42,"end_line":42},{"email":"dwguest@win.tue.nl","start_line":61,"end_line":61},{"email":"aeb@cwi.nl","start_line":61,"end_line":61}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/fsck.8.in","type":"file","name":"fsck.8.in","base_name":"fsck.8","extension":".in","size":11447,"date":"2020-03-21","sha1":"6dd2418146410ac3410151069ad56cd91b49bf0f","md5":"01d94570ddc020013824ccb5505841bf","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1993, 1994, 1995 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":348,"end_line":348}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/fsck.c","type":"file","name":"fsck.c","base_name":"fsck","extension":".c","size":28411,"date":"2020-03-21","sha1":"870fcdf766cd6af1ed84080782828b90d6b38afc","md5":"eec5569c257a23b4e68e0265e887b955","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":22,"end_line":24,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by Theodore Ts'o","start_line":19,"end_line":20}],"holders":[{"value":"Theodore Ts'o","start_line":19,"end_line":20}],"authors":[{"value":"Theodore Ts'o, ","start_line":9,"end_line":9}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":9,"end_line":9},{"email":"miquels@drinkel.ow.org","start_line":11,"end_line":11}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/fsck.h","type":"file","name":"fsck.h","base_name":"fsck","extension":".h","size":1166,"date":"2020-03-21","sha1":"bb4efc947b156deb4e7996687d54c33444de8a99","md5":"0c550f43297f4b84199a268275a48a3d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/fsmap.h","type":"file","name":"fsmap.h","base_name":"fsmap","extension":".h","size":3185,"date":"2020-03-21","sha1":"b79cec9cc9c39a54ff1640df0d82f10661db4b31","md5":"5a8202cd2301018c0456144aca4d779d","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,"licenses":[{"key":"gpl-1.0-plus","score":100.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":18,"matched_rule":{"identifier":"gpl_139.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":99,"matched_length":99,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2017 Oracle","start_line":2,"end_line":3}],"holders":[{"value":"Oracle","start_line":2,"end_line":3}],"authors":[{"value":"Darrick J. Wong ","start_line":5,"end_line":5}],"packages":[],"emails":[{"email":"darrick.wong@oracle.com","start_line":5,"end_line":5}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/fuse2fs.1.in","type":"file","name":"fuse2fs.1.in","base_name":"fuse2fs.1","extension":".in","size":1489,"date":"2020-03-21","sha1":"d902f7bd63f0c0f37e0262548756f99659372592","md5":"124edd169fec42c9c5644c52d40b03f6","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1993, 1994, 1995 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":71,"end_line":71}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/fuse2fs.c","type":"file","name":"fuse2fs.c","base_name":"fuse2fs","extension":".c","size":94098,"date":"2020-03-21","sha1":"ad63569fe20a4e54cb24dc6a8b49456e5e6aa349","md5":"c02e16669c47a717d606251b1e87fa3d","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2014 Oracle","start_line":4,"end_line":4}],"holders":[{"value":"Oracle","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/ismounted.c","type":"file","name":"ismounted.c","base_name":"ismounted","extension":".c","size":4652,"date":"2020-03-21","sha1":"b3d16636bea72cee7df8858dcb2a968cf4674aa8","md5":"a4edb35b0e7497b55bdf70c826ac1947","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1995,1996,1997,1998,1999,2000,2008 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/logsave.8.in","type":"file","name":"logsave.8.in","base_name":"logsave.8","extension":".in","size":1623,"date":"2020-03-21","sha1":"5b1baa7207d7ef3d32714c7434d43f21b717170f","md5":"b03055925f6b9ddf17ae0af7d25a0db2","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 2003 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":59,"end_line":59}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/logsave.c","type":"file","name":"logsave.c","base_name":"logsave","extension":".c","size":5987,"date":"2020-03-21","sha1":"2ddb43bf0e68c217bebf6bfa08ac6476220fc653","md5":"8ad4404d7b79d364942b1b1b5ff7e46f","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":8,"end_line":9,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2003 Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/lsattr.1.in","type":"file","name":"lsattr.1.in","base_name":"lsattr.1","extension":".in","size":1193,"date":"2020-03-21","sha1":"548a719e7f9a4c8969c521c10cb063cf1fdc6436","md5":"e3295b77be8224d02cc07ae0afe0fd3b","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Remy Card ","start_line":41,"end_line":46},{"value":"Theodore Ts'o ","start_line":41,"end_line":46}],"packages":[],"emails":[{"email":"Remy.Card@linux.org","start_line":43,"end_line":43},{"email":"tytso@alum.mit.edu","start_line":44,"end_line":44}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":50,"end_line":50}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/lsattr.c","type":"file","name":"lsattr.c","base_name":"lsattr","extension":".c","size":4716,"date":"2020-03-21","sha1":"9d0a511e9c3ec03ebafd602c89b271c32ab10ed3","md5":"f41624b1326180cfaff72dbafff2be3d","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,"licenses":[{"key":"gpl-1.0-plus","score":77.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":8,"end_line":9,"matched_rule":{"identifier":"gpl-1.0-plus_20.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":14,"matched_length":14,"match_coverage":100.0,"rule_relevance":77}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":37032,"date":"2020-03-21","sha1":"823c3aa1d13b0a052985721cc7091435dfbaff71","md5":"01bcabb0d360536f65b656ceb6232eb6","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/mk_hugefiles.c","type":"file","name":"mk_hugefiles.c","base_name":"mk_hugefiles","extension":".c","size":15049,"date":"2020-03-21","sha1":"b19db867a5a753e71587146c3ca0324472255fd0","md5":"243c7a5d2d34f6a50bfbf65d2e70356a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/mke2fs-hurd.conf","type":"file","name":"mke2fs-hurd.conf","base_name":"mke2fs-hurd","extension":".conf","size":707,"date":"2020-03-21","sha1":"a105362a5ceb6f02888a3a059dcd1f15444dcef5","md5":"b765ccab735a84a5388e6133ba4aecd2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/mke2fs.8.in","type":"file","name":"mke2fs.8.in","base_name":"mke2fs.8","extension":".in","size":25333,"date":"2020-03-21","sha1":"60da968f635481ad064fe5ec73dcb3b4e54705ee","md5":"8e93143d1d605ee5de3fde5a0acd2c93","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1993, 1994, 1995 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[{"value":"Theodore Ts'o ","start_line":842,"end_line":847}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":845,"end_line":845}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":849,"end_line":849}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/mke2fs.c","type":"file","name":"mke2fs.c","base_name":"mke2fs","extension":".c","size":89806,"date":"2020-03-21","sha1":"42c83d4815c9366aa43aa569e0a0d42222c36b42","md5":"6a4665fb6cb1eb814f183721af807ed5","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"https://ext4.wiki.kernel.org/","start_line":2495,"end_line":2495}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/mke2fs.conf.5.in","type":"file","name":"mke2fs.conf.5.in","base_name":"mke2fs.conf.5","extension":".in","size":16697,"date":"2020-03-21","sha1":"7407cf86e5903ac6c369e0bc7f0de6ce93ce158a","md5":"34649fae104fa13b1c4a394e7fcba893","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 2006 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/mke2fs.conf.in","type":"file","name":"mke2fs.conf.in","base_name":"mke2fs.conf","extension":".in","size":812,"date":"2020-03-21","sha1":"42b81300f7946a9c0fe32072a6fe05848fcaf430","md5":"72b349d890a9b5cca06c7804cd0c8d1d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/mke2fs.h","type":"file","name":"mke2fs.h","base_name":"mke2fs","extension":".h","size":785,"date":"2020-03-21","sha1":"a079a0ec9d3f4e1448b5d9b0746a658e8089be03","md5":"b659c5ff296e27a57fa30792f4c7f727","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/mklost+found.8.in","type":"file","name":"mklost+found.8.in","base_name":"mklost+found.8","extension":".in","size":1345,"date":"2020-03-21","sha1":"0417384b8a3715ecc535f742a31618fb967e9928","md5":"8d9d12d37060a1c11664f2304c4f5ebe","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1993, 1994, 1995 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[{"value":"Remy Card ","start_line":31,"end_line":36},{"value":"Theodore Ts'o ","start_line":31,"end_line":36}],"packages":[],"emails":[{"email":"Remy.Card@linux.org","start_line":33,"end_line":33},{"email":"tytso@alum.mit.edu","start_line":34,"end_line":34}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":40,"end_line":40}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/mklost+found.c","type":"file","name":"mklost+found.c","base_name":"mklost+found","extension":".c","size":1756,"date":"2020-03-21","sha1":"571cca866ca61c739b8b352f9ecb0db9bba68c01","md5":"59d967003d8dea1e6e2af9b96bc50ba9","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,"licenses":[{"key":"gpl-1.0-plus","score":77.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl-1.0-plus_20.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":14,"matched_length":14,"match_coverage":100.0,"rule_relevance":77}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1992, 1993 Remy Card ","start_line":5,"end_line":5}],"holders":[{"value":"Remy Card","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":5,"end_line":5}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/partinfo.c","type":"file","name":"partinfo.c","base_name":"partinfo","extension":".c","size":1751,"date":"2020-03-21","sha1":"287a7d0c7123e04b841400e877aa5ebc230a9146","md5":"4586df5030cb2acec7deb33fcf2bfbda","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Alain Knaff, ","start_line":4,"end_line":4},{"value":"Theodore Ts'o, ","start_line":6,"end_line":6}],"packages":[],"emails":[{"email":"alknaff@innet.lu","start_line":4,"end_line":4},{"email":"tytso@mit.edu","start_line":6,"end_line":6}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/profile-to-c.awk","type":"file","name":"profile-to-c.awk","base_name":"profile-to-c","extension":".awk","size":140,"date":"2020-03-21","sha1":"3bd96296324f8bb279e62999ca1b195922c8d56c","md5":"43ec9ba3ce5772f063a2cc24f3d02fea","mime_type":"text/x-awk","file_type":"awk script, ASCII text executable","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/tune2fs.8.in","type":"file","name":"tune2fs.8.in","base_name":"tune2fs.8","extension":".in","size":24123,"date":"2020-03-21","sha1":"7d3e42af85f22b79bd71f399920b100a8eb86a57","md5":"bef64a43c585691a63643f2fd410308c","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Remy Card ","start_line":765,"end_line":774},{"value":"Theodore Ts'o ","start_line":765,"end_line":774},{"value":"Theodore Ts'o ","start_line":765,"end_line":774},{"value":"Christian Kuhtz . Time-dependent","start_line":765,"end_line":774},{"value":"Uwe Ohse ","start_line":765,"end_line":774}],"packages":[],"emails":[{"email":"Remy.Card@linux.org","start_line":767,"end_line":767},{"email":"tytso@alum.mit.edu","start_line":768,"end_line":768},{"email":"tytso@mit.edu","start_line":770,"end_line":770},{"email":"chk@data-hh.Hanse.DE","start_line":771,"end_line":771},{"email":"uwe@tirka.gun.de","start_line":772,"end_line":772}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":776,"end_line":776}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/tune2fs.c","type":"file","name":"tune2fs.c","base_name":"tune2fs","extension":".c","size":87145,"date":"2020-03-21","sha1":"d4d1a040b5cf44b3f81d534e65a48b25bb74c152","md5":"1de66d7d52ac9241b03c33965fa566f1","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":10,"end_line":12,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1992, 1993, 1994 Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6},{"value":"Copyright 1995, 1996, 1997, 1998, 1999, 2000 by Theodore Ts'o","start_line":8,"end_line":8}],"holders":[{"value":"Remy Card Laboratoire MASI, Institut Blaise Pascal Universite Pierre et Marie Curie","start_line":4,"end_line":6},{"value":"Theodore Ts'o","start_line":8,"end_line":8}],"authors":[],"packages":[],"emails":[{"email":"card@masi.ibp.fr","start_line":4,"end_line":4},{"email":"marcel@duteca.et.tudelft.nl","start_line":21,"end_line":21},{"email":"franky@duteca.et.tudelft.nl","start_line":22,"end_line":22},{"email":"uwe@tirka.gun.de","start_line":25,"end_line":25}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/tune2fs.h","type":"file","name":"tune2fs.h","base_name":"tune2fs","extension":".h","size":456,"date":"2020-03-21","sha1":"ff5cc9d967ac1d4144569ad568ad0f31e68d0363","md5":"0f6e0bbea1e7f2858d26ded7ed2170d1","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":4,"end_line":6,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/util.c","type":"file","name":"util.c","base_name":"util","extension":".c","size":6635,"date":"2020-03-21","sha1":"be8b8c12697ed72a2a7ee3419316513dbf876042","md5":"2cf035eb5779df885d4df473ab622d49","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1995, 1996, 1997, 1998, 1999, 2000 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/util.h","type":"file","name":"util.h","base_name":"util","extension":".h","size":852,"date":"2020-03-21","sha1":"1ad0ef46260c5a17e3ddb91e6efc4d018885407e","md5":"59530c44521a9771e5bb50a3f514dfd2","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright 2000 by Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/uuidd.8.in","type":"file","name":"uuidd.8.in","base_name":"uuidd.8","extension":".in","size":2049,"date":"2020-03-21","sha1":"9c9d54088a6154d91831d3ca8b9ca0da8a9fb4dc","md5":"6868810b726131bf1666a2b680467ebf","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":3,"end_line":3,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 2007 by Theodore Ts'o","start_line":2,"end_line":2}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2}],"authors":[{"value":"Theodore Ts'o ","start_line":87,"end_line":92}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":90,"end_line":90}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":94,"end_line":94}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/uuidd.c","type":"file","name":"uuidd.c","base_name":"uuidd","extension":".c","size":13221,"date":"2020-03-21","sha1":"5192fee19a63ff2422dc1b3a69d0a6cd486eac49","md5":"b7830bc6e5e2528974abada5d6d0b7ef","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2007 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/uuidd.rc","type":"file","name":"uuidd.rc","base_name":"uuidd","extension":".rc","size":1136,"date":"2020-03-21","sha1":"54e2a3cf3383ea786d3d2b9c146d46590967278f","md5":"9f5e7a824dc40cc2b840f648f038a1bc","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[{"value":"Theodore Ts'o ","start_line":12,"end_line":12}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":12,"end_line":12}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/uuidgen.1.in","type":"file","name":"uuidgen.1.in","base_name":"uuidgen.1","extension":".in","size":1784,"date":"2020-03-21","sha1":"b179c1bf31ab7aa4c451c007ec93f2f63ceb5a69","md5":"47a21f245936f7dd99d278e5f5fefd5c","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":5,"end_line":5,"matched_rule":{"identifier":"gpl-1.0-plus_15.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1999 Andreas Dilger (adilger@enel.ucalgary.ca)","start_line":1,"end_line":1}],"holders":[{"value":"Andreas Dilger","start_line":1,"end_line":1}],"authors":[{"value":"Andreas Dilger","start_line":55,"end_line":59}],"packages":[],"emails":[{"email":"adilger@enel.ucalgary.ca","start_line":1,"end_line":1}],"urls":[{"url":"http://e2fsprogs.sourceforge.net/","start_line":61,"end_line":61}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/misc/uuidgen.c","type":"file","name":"uuidgen.c","base_name":"uuidgen","extension":".c","size":1388,"date":"2020-03-21","sha1":"c239f13a567a80fc7fd48b662263eaeccb4a5a68","md5":"840a22b417f04d6907d26278d8514b54","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1999, Andreas Dilger and Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Andreas Dilger and Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po","type":"directory","name":"po","base_name":"po","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":55,"dirs_count":0,"size_count":8632360,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/at-expand.pl","type":"file","name":"at-expand.pl","base_name":"at-expand","extension":".pl","size":5558,"date":"2020-03-21","sha1":"cb3db514da04f6aa30b296bd11871ae9214f8623","md5":"8b93c35cdac80de5eb20953e881acb13","mime_type":"text/x-perl","file_type":"Perl script, ASCII text executable","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/boldquot.sed","type":"file","name":"boldquot.sed","base_name":"boldquot","extension":".sed","size":217,"date":"2020-03-21","sha1":"062e8aaba51d25b7fd72c99a9a40e57a64133696","md5":"9f72ef7fe3e7c7330c158be85dc1bd4c","mime_type":"text/plain","file_type":"UTF-8 Unicode text, with escape sequences","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/ca.gmo","type":"file","name":"ca.gmo","base_name":"ca","extension":".gmo","size":140005,"date":"2020-03-21","sha1":"767b58862bc538dc7d6b3f399b283582368a9aea","md5":"79ccf5d48141b86775bffac5fbad2571","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 1254 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":1260,"end_line":1260},{"email":"mecatxis@mecatxis.cat","start_line":1260,"end_line":1260},{"email":"ca@dodds.net","start_line":1260,"end_line":1260}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":49,"end_line":49}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/ca.po","type":"file","name":"ca.po","base_name":"ca","extension":".po","size":259907,"date":"2020-03-21","sha1":"10b373a02ee6be0bc03e8e9581921e10aa6f23e7","md5":"62426c4f69be0b3636d03fd0d8eca63c","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":3,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 2007, 2008 Theodore Tso","start_line":2,"end_line":5}],"holders":[{"value":"Theodore Tso","start_line":2,"end_line":5}],"authors":[],"packages":[],"emails":[{"email":"david.planella@gmail.com","start_line":4,"end_line":4},{"email":"mecatxis@mecatxis.cat","start_line":5,"end_line":5},{"email":"tytso@alum.mit.edu","start_line":72,"end_line":72},{"email":"ca@dodds.net","start_line":76,"end_line":76}],"urls":[{"url":"http://en.wikipedia.org/wiki/Extent_","start_line":387,"end_line":387},{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":6119,"end_line":6119}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/cs.gmo","type":"file","name":"cs.gmo","base_name":"cs","extension":".gmo","size":183772,"date":"2020-03-21","sha1":"64802e2d68c90f3320e8a21b77250163aa57c0af","md5":"09dbb0697649825392a3fe7d7577d1ba","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 1580 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":1581,"end_line":1581},{"email":"petr.pisar@atlas.cz","start_line":1581,"end_line":1581},{"email":"translation-team-cs@lists.sourceforge.net","start_line":1581,"end_line":1581}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":60,"end_line":60}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/cs.po","type":"file","name":"cs.po","base_name":"cs","extension":".po","size":276744,"date":"2020-03-21","sha1":"a0ac88f029f8201b3e49a8eebd65d989dfe21d9c","md5":"3b7e4262ebd2b0cac0d2bd09a3fb24a2","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":3,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 2008 Theodore Tso","start_line":2,"end_line":6}],"holders":[{"value":"Theodore Tso","start_line":2,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"mitr@volny.cz","start_line":4,"end_line":4},{"email":"petr.pisar@atlas.cz","start_line":5,"end_line":5},{"email":"tytso@alum.mit.edu","start_line":84,"end_line":84},{"email":"translation-team-cs@lists.sourceforge.net","start_line":88,"end_line":88}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":5976,"end_line":5976},{"url":"https://ext4.wiki.kernel.org/index.php/Quota","start_line":8623,"end_line":8623}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/da.gmo","type":"file","name":"da.gmo","base_name":"da","extension":".gmo","size":141662,"date":"2020-03-21","sha1":"daef7dad15a4abcd44820a969623d079520e78f3","md5":"1b59e716f0003f26104a4511eb57007a","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 1366 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":1366,"end_line":1366},{"email":"joedalton2@yahoo.dk","start_line":1366,"end_line":1366},{"email":"dansk@dansk-gruppen.dk","start_line":1366,"end_line":1366}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":43,"end_line":43}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/da.po","type":"file","name":"da.po","base_name":"da","extension":".po","size":234907,"date":"2020-03-21","sha1":"0c54c4e69d5783b501ce30dcb1e2f7a02432d0dc","md5":"78c953617f96662809a203930d74bd9e","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":5,"end_line":5,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 by Theodore Ts'o","start_line":2,"end_line":7}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":7}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":6,"end_line":6},{"email":"joedalton2@yahoo.dk","start_line":7,"end_line":7},{"email":"tytso@alum.mit.edu","start_line":74,"end_line":74},{"email":"dansk@dansk-gruppen.dk","start_line":78,"end_line":78}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":5844,"end_line":5844}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/de.gmo","type":"file","name":"de.gmo","base_name":"de","extension":".gmo","size":178516,"date":"2020-03-21","sha1":"1b2e13892b468c5bcbf48694c8a945391ca41b67","md5":"81498acc65262f58993821b77c4e521f","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 1517 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":1518,"end_line":1518},{"email":"pth@suse.de","start_line":1518,"end_line":1518},{"email":"translation-team-de@lists.sourceforge.net","start_line":1518,"end_line":1518}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":55,"end_line":55}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/de.po","type":"file","name":"de.po","base_name":"de","extension":".po","size":276690,"date":"2020-03-21","sha1":"71be90b9c4dedcba275070e1e0d6f6499f88ccf2","md5":"0d46a3e7a4eee4241548d5bcc77d729c","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text, with very long lines","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":3,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 1996 Theodore Tso","start_line":2,"end_line":3}],"holders":[{"value":"Theodore Tso","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[{"email":"olke@users.sourceforge.net","start_line":6,"end_line":6},{"email":"marc@marclanger.de","start_line":7,"end_line":7},{"email":"pth@suse.de","start_line":8,"end_line":8},{"email":"mario.blaettermann@gmail.com","start_line":9,"end_line":9},{"email":"tytso@alum.mit.edu","start_line":82,"end_line":82},{"email":"translation-team-de@lists.sourceforge.net","start_line":86,"end_line":86}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":6067,"end_line":6067}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/e2fsprogs.pot","type":"file","name":"e2fsprogs.pot","base_name":"e2fsprogs","extension":".pot","size":176964,"date":"2020-03-21","sha1":"fdcfacabffd0d8eeeb8f498f67e913dbbffa7f03","md5":"eed14d9f704123eaf9910d3e52844b52","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":5,"end_line":5,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 by Theodore Ts'o","start_line":2,"end_line":6}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":6,"end_line":6},{"email":"tytso@alum.mit.edu","start_line":81,"end_line":81},{"email":"LL@li.org","start_line":85,"end_line":85}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":5685,"end_line":5685}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/en@boldquot.header","type":"file","name":"en@boldquot.header","base_name":"en@boldquot","extension":".header","size":1337,"date":"2020-03-21","sha1":"a3bdad8e8a70840710219749a9bd0786f5de5487","md5":"140858226cbabd8977f21e2f29168bb1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html","start_line":5,"end_line":5}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/en@quot.header","type":"file","name":"en@quot.header","base_name":"en@quot","extension":".header","size":1203,"date":"2020-03-21","sha1":"d863e8547486ef608b6ee9277ba02c48b72c7a5b","md5":"4fab037eca87181f2066bda633c7aca7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html","start_line":5,"end_line":5}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/eo.gmo","type":"file","name":"eo.gmo","base_name":"eo","extension":".gmo","size":88457,"date":"2020-03-21","sha1":"251f3502bc2c46cc7ec65a86c8b9e3c0fd26d9f1","md5":"b1e876a10411481329c683416189e09f","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 919 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":923,"end_line":923},{"email":"benno@vertaalt.nl","start_line":923,"end_line":923},{"email":"translation-team-eo@lists.sourceforge.net","start_line":923,"end_line":923}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/eo.po","type":"file","name":"eo.po","base_name":"eo","extension":".po","size":220845,"date":"2020-03-21","sha1":"ef1357d1a203117531deacc7cf8c1d1ea5e4ab6d","md5":"10d745390a29bb32131aad25da8d415d","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":3,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 2014 Theodore Tso","start_line":2,"end_line":3}],"holders":[{"value":"Theodore Tso","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[{"email":"benno@vertaalt.nl","start_line":8,"end_line":8},{"email":"tytso@alum.mit.edu","start_line":75,"end_line":75},{"email":"translation-team-eo@lists.sourceforge.net","start_line":79,"end_line":79}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":5843,"end_line":5843}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/es.gmo","type":"file","name":"es.gmo","base_name":"es","extension":".gmo","size":189231,"date":"2020-03-21","sha1":"1f3adcf10eba0db4443cdf3e21010558b53a7274","md5":"b7c8137e251183fd84665ce29d61646b","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 1580 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":1581,"end_line":1581},{"email":"aceballos@gmail.com","start_line":1581,"end_line":1581},{"email":"es@tp.org.es","start_line":1581,"end_line":1581}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":60,"end_line":60}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/es.po","type":"file","name":"es.po","base_name":"es","extension":".po","size":281838,"date":"2020-03-21","sha1":"25a91825b7c2edb52e355e283f6cfcd40643f0a6","md5":"d2821fdcae39617b1d5bb4252502ce57","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":3,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 2014 Theodore Tso","start_line":2,"end_line":3}],"holders":[{"value":"Theodore Tso","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[{"email":"max@upn.mx","start_line":5,"end_line":5},{"email":"benno@vertaalt.nl","start_line":6,"end_line":6},{"email":"aceballos@gmail.com","start_line":7,"end_line":7},{"email":"tytso@alum.mit.edu","start_line":99,"end_line":99},{"email":"es@tp.org.es","start_line":103,"end_line":103}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":6011,"end_line":6011}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/fi.gmo","type":"file","name":"fi.gmo","base_name":"fi","extension":".gmo","size":21505,"date":"2020-03-21","sha1":"ba281251b05c90f952f15069e86a3841f1948407","md5":"3238505f3d686e976fa7e1775220a871","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 242 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":247,"end_line":247},{"email":"lanurmi@iki.fi","start_line":247,"end_line":247},{"email":"translation-team-fi@lists.sourceforge.net","start_line":247,"end_line":247}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/fi.po","type":"file","name":"fi.po","base_name":"fi","extension":".po","size":187588,"date":"2020-03-21","sha1":"db73711a606c6be50ec2bfb47bf6d941bab9baeb","md5":"b732db5afdba610ce2d1ea1bc08fda77","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":3,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 2016 Theodore Tso","start_line":2,"end_line":4}],"holders":[{"value":"Theodore Tso","start_line":2,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"lanurmi@iki.fi","start_line":4,"end_line":4},{"email":"tytso@alum.mit.edu","start_line":71,"end_line":71},{"email":"translation-team-fi@lists.sourceforge.net","start_line":75,"end_line":75}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":5682,"end_line":5682}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/fr.gmo","type":"file","name":"fr.gmo","base_name":"fr","extension":".gmo","size":182759,"date":"2020-03-21","sha1":"b3de32338446189d9012f0dcfa18d5d27f1dc6f6","md5":"a516e191af0ac30108024d9615a37838","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 1565 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":1566,"end_line":1566},{"email":"samuel.thibault@ens-lyon.org","start_line":1566,"end_line":1566},{"email":"traduc@traduc.org","start_line":1566,"end_line":1566}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":60,"end_line":60}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/fr.po","type":"file","name":"fr.po","base_name":"fr","extension":".po","size":263492,"date":"2020-03-21","sha1":"8caf963f6a1816576248f8acedd377bdad275c71","md5":"7ad0307420f0b19fd7ac467abb4076f2","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, ISO-8859 text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":3,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 2008 Theodore Tso","start_line":2,"end_line":6},{"value":"Copyright (c) 1996 Free Software Foundation, Inc. Michel Robitaille ","start_line":2,"end_line":6}],"holders":[{"value":"Theodore Tso","start_line":2,"end_line":6},{"value":"Free Software Foundation, Inc. Michel Robitaille","start_line":2,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"robitail@IRO.UMontreal.CA","start_line":5,"end_line":5},{"email":"samuel.thibault@ens-lyon.org","start_line":6,"end_line":6},{"email":"tytso@alum.mit.edu","start_line":80,"end_line":80},{"email":"traduc@traduc.org","start_line":84,"end_line":84}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":5967,"end_line":5967}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/hu.gmo","type":"file","name":"hu.gmo","base_name":"hu","extension":".gmo","size":175960,"date":"2020-03-21","sha1":"2a6b34df003f1274de2bdb253af1c46e4c24de54","md5":"2e1c7f55791a238474520ee6cb8cd832","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 1517 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":1518,"end_line":1518},{"email":"urbalazs@gmail.com","start_line":1519,"end_line":1519},{"email":"translation-team-hu@lists.sourceforge.net","start_line":1519,"end_line":1519}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":55,"end_line":55}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/hu.po","type":"file","name":"hu.po","base_name":"hu","extension":".po","size":262387,"date":"2020-03-21","sha1":"7e37ccbc6d7a7c57f7dc746fd873d86a16ed5b51","md5":"6e3060655a3bf9d4b99436476f47bf8e","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":3,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001","start_line":2,"end_line":9}],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":5,"end_line":5},{"email":"urbalazs@gmail.com","start_line":7,"end_line":7},{"email":"tytso@alum.mit.edu","start_line":73,"end_line":73},{"email":"translation-team-hu@lists.sourceforge.net","start_line":77,"end_line":77}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":6103,"end_line":6103},{"url":"https://ext4.wiki.kernel.org/index.php/","start_line":6108,"end_line":6108}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/id.gmo","type":"file","name":"id.gmo","base_name":"id","extension":".gmo","size":80548,"date":"2020-03-21","sha1":"5af9c105f81c2ca6deb2be648716d1fb5288516b","md5":"6339e59d7c4faf3a0071a35d43fd1e3b","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 817 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":805,"end_line":805},{"email":"arif_endro@yahoo.com","start_line":805,"end_line":805},{"email":"translation-team-id@lists.sourceforge.net","start_line":805,"end_line":805}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/id.po","type":"file","name":"id.po","base_name":"id","extension":".po","size":233856,"date":"2020-03-21","sha1":"7ce5c0b454c27477435010a774e69578726d2032","md5":"ff6c89292ddad68d71111280efef7ff3","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"other-permissive","score":97.44,"name":"Other Permissive Licenses","short_name":"Other Permissive Licenses","category":"Permissive","is_exception":false,"owner":"nexB","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:other-permissive","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":7,"matched_rule":{"identifier":"other-permissive_91.RULE","license_expression":"other-permissive","licenses":["other-permissive"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":38,"matched_length":38,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["other-permissive"],"copyrights":[{"value":"Copyright (c) 2008 Theodore Tso","start_line":2,"end_line":4}],"holders":[{"value":"Theodore Tso","start_line":2,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"arif_endro@yahoo.com","start_line":8,"end_line":8},{"email":"tytso@alum.mit.edu","start_line":75,"end_line":75},{"email":"translation-team-id@lists.sourceforge.net","start_line":79,"end_line":79}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":6009,"end_line":6009}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/insert-header.sin","type":"file","name":"insert-header.sin","base_name":"insert-header","extension":".sin","size":672,"date":"2020-03-21","sha1":"b056528528249afdf45cc1cec4245578840724ab","md5":"b8d349a13678a4e0e18c8ee06c1bebea","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/it.gmo","type":"file","name":"it.gmo","base_name":"it","extension":".gmo","size":56323,"date":"2020-03-21","sha1":"8a45e06e3fa812d77e85ca89988bcc8144c5be95","md5":"3f17ccf1350fb44683c7e81aeac1efa7","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 608 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":605,"end_line":605},{"email":"milo@milo.name","start_line":605,"end_line":605},{"email":"tp@lists.linux.it","start_line":605,"end_line":605}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/it.po","type":"file","name":"it.po","base_name":"it","extension":".po","size":227943,"date":"2020-03-21","sha1":"bf1f42640c1125ac4ab8a0efb64dc4deb2e172aa","md5":"16fd0bc2ade5f01d35c8db0bb5e759de","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":3,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 2004, 2013 2014 Theodore Tso","start_line":2,"end_line":6}],"holders":[{"value":"Theodore Tso","start_line":2,"end_line":6}],"authors":[],"packages":[],"emails":[{"email":"lupin85@email.it","start_line":4,"end_line":4},{"email":"m.colombo@ed.ac.uk","start_line":5,"end_line":5},{"email":"milo@milo.name","start_line":6,"end_line":6},{"email":"tytso@alum.mit.edu","start_line":73,"end_line":73},{"email":"tp@lists.linux.it","start_line":77,"end_line":77}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":6015,"end_line":6015}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/LINGUAS","type":"file","name":"LINGUAS","base_name":"LINGUAS","extension":"","size":66,"date":"2020-03-21","sha1":"6e795dfef8909dadc441e2f706277ec7bf6d7efe","md5":"c7f69dadb2fe8f4d3f1ef939f1c44770","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/Makefile.in.in","type":"file","name":"Makefile.in.in","base_name":"Makefile.in","extension":".in","size":12648,"date":"2020-03-21","sha1":"41e6745a31b6a55430c903e110ba6fb34e2e2bc6","md5":"307994d913a4a7dc3e79412943b62555","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"other-permissive","score":100.0,"name":"Other Permissive Licenses","short_name":"Other Permissive Licenses","category":"Permissive","is_exception":false,"owner":"nexB","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:other-permissive","spdx_license_key":null,"spdx_url":"","start_line":4,"end_line":9,"matched_rule":{"identifier":"other-permissive_56.RULE","license_expression":"other-permissive","licenses":["other-permissive"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":62,"matched_length":62,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["other-permissive"],"copyrights":[{"value":"Copyright (c) 1995-1997, 2000-2004 by Ulrich Drepper ","start_line":2,"end_line":2}],"holders":[{"value":"Ulrich Drepper","start_line":2,"end_line":2}],"authors":[],"packages":[],"emails":[{"email":"drepper@gnu.ai.mit.edu","start_line":2,"end_line":2}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/Makevars","type":"file","name":"Makevars","base_name":"Makevars","extension":"","size":1826,"date":"2020-03-21","sha1":"e76e6c7d12c8f7c84491891d30a697feef2b6194","md5":"3fb58f3b62a22bb66c39af92f8889094","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":37,"end_line":37}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/ms.gmo","type":"file","name":"ms.gmo","base_name":"ms","extension":".gmo","size":18347,"date":"2020-03-21","sha1":"efd32ddf6287996634bf0dd1536e7132b3b30b4c","md5":"1ecb5edf1444cf5ba67d52e8e5150eca","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 243 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":236,"end_line":236},{"email":"sharuzzaman@gmail.com","start_line":236,"end_line":236},{"email":"translation-team-ms@lists.sourceforge.net","start_line":236,"end_line":236}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/ms.po","type":"file","name":"ms.po","base_name":"ms","extension":".po","size":209350,"date":"2020-03-21","sha1":"0238e60dd03384d0a01ea6529116ffe83f95d0a0","md5":"c20b80458c3719b538b18a8c3c3dd1df","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":3,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 2008, 2009, 2015, 2018, 2019, 2020 Theodore Tso","start_line":2,"end_line":4}],"holders":[{"value":"Theodore Tso","start_line":2,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"sharuzzaman@gmail.com","start_line":4,"end_line":4},{"email":"tytso@alum.mit.edu","start_line":78,"end_line":78},{"email":"translation-team-ms@lists.sourceforge.net","start_line":82,"end_line":82}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":5992,"end_line":5992}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/nl.gmo","type":"file","name":"nl.gmo","base_name":"nl","extension":".gmo","size":160685,"date":"2020-03-21","sha1":"13ad8724896789c839110c5105d51df81452e078","md5":"d153ae1489fd0f7d006f9c86b63f819e","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 1467 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":1468,"end_line":1468},{"email":"vertaling@coevern.nl","start_line":1468,"end_line":1468},{"email":"vertaling@vrijschrift.org","start_line":1468,"end_line":1468}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":50,"end_line":50}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/nl.po","type":"file","name":"nl.po","base_name":"nl","extension":".po","size":267101,"date":"2020-03-21","sha1":"18534c51e05e61513130f2eeff826613c82a2592","md5":"676c188e837dd4b26189b4bdf2082e2d","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":3,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 2019 Theodore Tso","start_line":2,"end_line":3}],"holders":[{"value":"Theodore Tso","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[{"email":"benno@vertaalt.nl","start_line":8,"end_line":8},{"email":"tytso@alum.mit.edu","start_line":97,"end_line":97},{"email":"vertaling@coevern.nl","start_line":100,"end_line":100},{"email":"vertaling@vrijschrift.org","start_line":101,"end_line":101}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":5964,"end_line":5964},{"url":"https://ext4.wiki.kernel.org/index.php/Quota","start_line":8590,"end_line":8590}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/pl.gmo","type":"file","name":"pl.gmo","base_name":"pl","extension":".gmo","size":180438,"date":"2020-03-21","sha1":"40602cf512a4361997a7dc58489696644450296a","md5":"fb1216387a6b9724b3f89e14bc739b4e","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 1580 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":1581,"end_line":1581},{"email":"qboosh@pld-linux.org","start_line":1581,"end_line":1581},{"email":"translation-team-pl@lists.sourceforge.net","start_line":1581,"end_line":1581}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":60,"end_line":60}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/pl.po","type":"file","name":"pl.po","base_name":"pl","extension":".po","size":258252,"date":"2020-03-21","sha1":"515fb0a20b3d332f42b6cf5865a1a52ef5ad1c38","md5":"05f2bcf78c5d91c79d2a8c9f01bfbb11","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":3,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Theodore Tso","start_line":2,"end_line":4}],"holders":[{"value":"Theodore Tso","start_line":2,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"qboosh@pld-linux.org","start_line":4,"end_line":4},{"email":"tytso@alum.mit.edu","start_line":78,"end_line":78},{"email":"translation-team-pl@lists.sourceforge.net","start_line":82,"end_line":82}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":5935,"end_line":5935}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/POTFILES.in","type":"file","name":"POTFILES.in","base_name":"POTFILES","extension":".in","size":1165,"date":"2020-03-21","sha1":"a8df6af9645b8d3e69fb4abb8f3e06a4c28f88c2","md5":"47093bee1584523c3dd891fc73d5ed79","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/pt.gmo","type":"file","name":"pt.gmo","base_name":"pt","extension":".gmo","size":179062,"date":"2020-03-21","sha1":"4b7fa3e20cce8ee15eafc56ced7f995cf7c2d323","md5":"6db85a6e4047708403ca4b3d93d0fccd","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 1580 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":1581,"end_line":1581},{"email":"palbuquerque73@gmail.com","start_line":1581,"end_line":1581},{"email":"translation-team-pt@lists.sourceforge.net","start_line":1581,"end_line":1581}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":60,"end_line":60}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/pt.po","type":"file","name":"pt.po","base_name":"pt","extension":".po","size":256930,"date":"2020-03-21","sha1":"e38dc3d7a02fbb94bbd5022d790c0e8753596db3","md5":"bfdac2e7f1e530a2d3e522fe01897829","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":5,"end_line":5,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 by Theodore Ts'o","start_line":2,"end_line":7}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":7}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":6,"end_line":6},{"email":"palbuquerque73@gmail.com","start_line":7,"end_line":7},{"email":"tytso@alum.mit.edu","start_line":81,"end_line":81},{"email":"translation-team-pt@lists.sourceforge.net","start_line":85,"end_line":85}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":5917,"end_line":5917}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/quot.sed","type":"file","name":"quot.sed","base_name":"quot","extension":".sed","size":153,"date":"2020-03-21","sha1":"7ec5417fc239ef3a2aad760c755d5c84b0d1e333","md5":"f652c7cf9496049a47b091513f120a45","mime_type":"text/plain","file_type":"UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/remove-potcdate.sin","type":"file","name":"remove-potcdate.sin","base_name":"remove-potcdate","extension":".sin","size":432,"date":"2020-03-21","sha1":"ef998ba108174635906a01ba30fe1ba105728bb8","md5":"ae2ad0156895c4461ca32fe0524ef902","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/Rules-quot","type":"file","name":"Rules-quot","base_name":"Rules-quot","extension":"","size":1790,"date":"2020-03-21","sha1":"6d1f6a58ea4636cecbdbadab4bbdc6a731871103","md5":"6bd69c891f952c0bdc2ac549a06349b2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"en@quot.po","start_line":7,"end_line":7},{"email":"en@boldquot.po","start_line":9,"end_line":9}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/sr.gmo","type":"file","name":"sr.gmo","base_name":"sr","extension":".gmo","size":225599,"date":"2020-03-21","sha1":"51901a6ad2c5daaa1f7be1dd2d46029d8e4d9265","md5":"e8bd2dffff749ab285af4d030330e316","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 1517 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":1518,"end_line":1518},{"email":"miroslavnikolic@rocketmail.com","start_line":1519,"end_line":1519}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":55,"end_line":55}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/sr.po","type":"file","name":"sr.po","base_name":"sr","extension":".po","size":318602,"date":"2020-03-21","sha1":"6fa87c8b1520a4b7e4f67198d2129abf2e5439a7","md5":"6799b959c649c762b484cfc065c3dda3","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":2,"end_line":2,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"uskokovic@etf.bg.ac.yu","start_line":4,"end_line":4},{"email":"jakobyu@yahoo.com","start_line":5,"end_line":5},{"email":"miroslavnikolic@rocketmail.com","start_line":6,"end_line":6},{"email":"tytso@alum.mit.edu","start_line":72,"end_line":72}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":6128,"end_line":6128}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/sv.gmo","type":"file","name":"sv.gmo","base_name":"sv","extension":".gmo","size":175700,"date":"2020-03-21","sha1":"56e73d181ab2b7a1e4a92e94fbb222f7478f2d10","md5":"3bcc323444dc8bd8990574f6ed4c1a7b","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 1580 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":1581,"end_line":1581},{"email":"goeran@uddeborg.se","start_line":1582,"end_line":1582},{"email":"tp-sv@listor.tp-sv.se","start_line":1582,"end_line":1582}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":60,"end_line":60}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/sv.po","type":"file","name":"sv.po","base_name":"sv","extension":".po","size":254764,"date":"2020-03-21","sha1":"5f676a46c599dbf8cb0154b58fe1403193b37f56","md5":"1c096206984e020426e980e05fbf730d","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":3,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 2003, 2005, 2006, 2008, 2009, 2010, 2011, 2012, 2014, 2016, 2017, 2018, 2019 Theodore Tso","start_line":2,"end_line":3}],"holders":[{"value":"Theodore Tso","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[{"email":"goeran@uddeborg.se","start_line":5,"end_line":5},{"email":"tytso@alum.mit.edu","start_line":81,"end_line":81},{"email":"tp-sv@listor.tp-sv.se","start_line":85,"end_line":85}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":5940,"end_line":5940}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/tr.gmo","type":"file","name":"tr.gmo","base_name":"tr","extension":".gmo","size":69878,"date":"2020-03-21","sha1":"ced8cee007eb2fd0204f895405ebf0cc11fc974d","md5":"2c11585d8ae25ffac7dbdb9b6bb0df20","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 673 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":661,"end_line":661},{"email":"vlkngzr@gmail.com","start_line":661,"end_line":661},{"email":"gnu-tr-u12a@lists.sourceforge.net","start_line":661,"end_line":661},{"email":"gnu-tr@belgeler.org","start_line":1816,"end_line":1816}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/tr.po","type":"file","name":"tr.po","base_name":"tr","extension":".po","size":254339,"date":"2020-03-21","sha1":"66b5c3c409af1236954c37e227a0076a06d20943","md5":"8503a86c2640afe87e0ae41f98f1a805","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":3,"end_line":3,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 2007 Theodore Tso","start_line":2,"end_line":3}],"holders":[{"value":"Theodore Tso","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[{"email":"nilgun@buguner.name.tr","start_line":5,"end_line":5},{"email":"vlkngzr@gmail.com","start_line":6,"end_line":6},{"email":"tytso@alum.mit.edu","start_line":72,"end_line":72},{"email":"gnu-tr-u12a@lists.sourceforge.net","start_line":76,"end_line":76},{"email":"gnu-tr@belgeler.org","start_line":3134,"end_line":3134}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":6206,"end_line":6206}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/uk.gmo","type":"file","name":"uk.gmo","base_name":"uk","extension":".gmo","size":243338,"date":"2020-03-21","sha1":"d28dc5ede7559cc12a84b8cc3b1d034fdb99e772","md5":"38e5461e225ee6b2a9204f33ddf1f30d","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 1580 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":1581,"end_line":1581},{"email":"yurchor@ukr.net","start_line":1581,"end_line":1581},{"email":"trans-uk@lists.fedoraproject.org","start_line":1581,"end_line":1581}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":60,"end_line":60}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/uk.po","type":"file","name":"uk.po","base_name":"uk","extension":".po","size":328082,"date":"2020-03-21","sha1":"0600a2a7c14be21915a61b3fa707b9703d6a4175","md5":"70da24aad1f1fc93d99be66075df718a","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":4,"end_line":4,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2013 by Theodore Ts'o","start_line":2,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":4}],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":7,"end_line":7},{"email":"yurchor@ukr.net","start_line":8,"end_line":8},{"email":"tytso@alum.mit.edu","start_line":81,"end_line":81},{"email":"trans-uk@lists.fedoraproject.org","start_line":85,"end_line":85}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":5942,"end_line":5942},{"url":"https://ext4.wiki.kernel.org/index.php/Quota","start_line":8560,"end_line":8560}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/vi.gmo","type":"file","name":"vi.gmo","base_name":"vi","extension":".gmo","size":185097,"date":"2020-03-21","sha1":"829cd8edb7937b9d25350b62ab15da1a717feb1e","md5":"ebeacb751b6cbca318b5f8947289e90b","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 1548 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":1549,"end_line":1549},{"email":"vnwildman@gmail.com","start_line":1550,"end_line":1550},{"email":"translation-team-vi@lists.sourceforge.net","start_line":1550,"end_line":1550}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":60,"end_line":60},{"url":"http://translationproject.org/team/vi.html","start_line":1550,"end_line":1550}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/vi.po","type":"file","name":"vi.po","base_name":"vi","extension":".po","size":273995,"date":"2020-03-21","sha1":"5a7535a9e583e8f555bd6f31a6cd1372aed496c3","md5":"c58bc710133f00cabc96964103b40e38","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":5,"end_line":5,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[{"value":"Copyright (c) 2014 Theodore Tso","start_line":3,"end_line":7},{"value":"Copyright (c) 2014 Free Software Foundation, Inc.","start_line":3,"end_line":7}],"holders":[{"value":"Theodore Tso","start_line":3,"end_line":7},{"value":"Free Software Foundation, Inc.","start_line":3,"end_line":7}],"authors":[],"packages":[],"emails":[{"email":"clytie@riverland.net.au","start_line":6,"end_line":6},{"email":"vnwildman@gmail.com","start_line":7,"end_line":7},{"email":"tytso@alum.mit.edu","start_line":81,"end_line":81},{"email":"translation-team-vi@lists.sourceforge.net","start_line":85,"end_line":85}],"urls":[{"url":"http://translationproject.org/team/vi.html","start_line":92,"end_line":92},{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":5925,"end_line":5925},{"url":"https://ext4.wiki.kernel.org/index.php/Quota","start_line":8539,"end_line":8539}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/zh_CN.gmo","type":"file","name":"zh_CN.gmo","base_name":"zh_CN","extension":".gmo","size":153006,"date":"2020-03-21","sha1":"a6074f996a3f2e15c5c75f6a9052b2e4ad6d572f","md5":"941ca53feaa82687bf6391fbd39898fe","mime_type":"application/octet-stream","file_type":"GNU message catalog (little endian), revision 0.0, 1500 messages","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@alum.mit.edu","start_line":1501,"end_line":1501},{"email":"arthur200126@gmail.com","start_line":1501,"end_line":1501},{"email":"i18n-zh@googlegroups.com","start_line":1501,"end_line":1501}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":54,"end_line":54}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/po/zh_CN.po","type":"file","name":"zh_CN.po","base_name":"zh_CN","extension":".po","size":250829,"date":"2020-03-21","sha1":"699f698d492bbce612621a21aef2b15bbab04a62","md5":"1906e03cabde474e5a7a2f8374ccfc83","mime_type":"text/x-po","file_type":"GNU gettext message catalogue, UTF-8 Unicode text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"free-unknown","score":82.5,"name":"Free unknown license detected but not recognized","short_name":"Free unknown","category":"Unstated License","is_exception":false,"owner":"Unspecified","homepage_url":null,"text_url":"","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:free-unknown","spdx_license_key":null,"spdx_url":"","start_line":2,"end_line":2,"matched_rule":{"identifier":"free-unknown_79.RULE","license_expression":"free-unknown","licenses":["free-unknown"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":11,"matched_length":11,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["free-unknown"],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"drdarkraven@gmail.com","start_line":3,"end_line":3},{"email":"zwpwjwtz@126.com","start_line":4,"end_line":4},{"email":"arthur200126@gmail.com","start_line":5,"end_line":5},{"email":"073plan@gmail.com","start_line":6,"end_line":6},{"email":"tytso@alum.mit.edu","start_line":80,"end_line":80},{"email":"i18n-zh@googlegroups.com","start_line":84,"end_line":84}],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":5957,"end_line":5957},{"url":"https://ext4.wiki.kernel.org/index.php/Quota","start_line":8599,"end_line":8599}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/resize","type":"directory","name":"resize","base_name":"resize","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":13,"dirs_count":0,"size_count":144048,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/resize/Android.bp","type":"file","name":"Android.bp","base_name":"Android","extension":".bp","size":1107,"date":"2020-03-21","sha1":"716acd345c37b4d9cbf724fe3732a696afded298","md5":"eee3a2a0ead98ef6104ff0ca8bdf348f","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,"licenses":[],"license_expressions":[],"copyrights":[{"value":"Copyright 2017 The Android Open Source Project","start_line":1,"end_line":1}],"holders":[{"value":"The Android Open Source Project","start_line":1,"end_line":1}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/resize/extent.c","type":"file","name":"extent.c","base_name":"extent","extension":".c","size":5077,"date":"2020-03-21","sha1":"311282cfb22acdc9528542cd4f99dc2f3f691c7e","md5":"20568505c2998627e5519a014d1c39ef","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":13,"end_line":15,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1997, 1998 by Theodore Ts'o and PowerQuest, Inc.","start_line":8,"end_line":9},{"value":"Copyright (c) 1999, 2000 by Theodore Ts'o","start_line":11,"end_line":11}],"holders":[{"value":"Theodore Ts'o and PowerQuest, Inc.","start_line":8,"end_line":9},{"value":"Theodore Ts'o","start_line":11,"end_line":11}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/resize/main.c","type":"file","name":"main.c","base_name":"main","extension":".c","size":16181,"date":"2020-03-21","sha1":"da136dbc1447ce6a2d17a465e927438ff7390057","md5":"c6f30002d35c1815e09f4a20b0b23fdf","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":10,"end_line":11,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1997, 1998 by Theodore Ts'o and PowerQuest, Inc.","start_line":4,"end_line":5},{"value":"Copyright (c) 1999, 2000, 2001, 2002, 2003, 2004 by Theodore Ts'o","start_line":7,"end_line":7}],"holders":[{"value":"Theodore Ts'o and PowerQuest, Inc.","start_line":4,"end_line":5},{"value":"Theodore Ts'o","start_line":7,"end_line":7}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/resize/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":6227,"date":"2020-03-21","sha1":"dd6579c5f33e1373b60c7bef3fef09b6afcc8ebb","md5":"ad0a9ed62abfef2b91508e05c5edb7ae","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/resize/online.c","type":"file","name":"online.c","base_name":"online","extension":".c","size":8258,"date":"2020-03-21","sha1":"0d87431821289837b62d4517c14f4a3324313758","md5":"0a5753840d9cfa06f983b3edebf00eba","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2006 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/resize/resize2fs.8.in","type":"file","name":"resize2fs.8.in","base_name":"resize2fs.8","extension":".in","size":5558,"date":"2020-03-21","sha1":"dd96a226ac7cbe8c0b7e3659e98c60bcf805a309","md5":"ecf0557e115486bddf3cce15c266b1dc","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":33.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":174,"end_line":174,"matched_rule":{"identifier":"gpl_95.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":6,"matched_length":6,"match_coverage":100.0,"rule_relevance":33}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1997 by Theodore Ts'o","start_line":2,"end_line":2},{"value":".SH COPYRIGHT Resize2fs","start_line":164,"end_line":171},{"value":"Copyright 1998 by Theodore Ts'o and PowerQuest, Inc.","start_line":164,"end_line":171}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":2},{"value":"SH Resize2fs","start_line":164,"end_line":171},{"value":"Theodore Ts'o and PowerQuest, Inc.","start_line":164,"end_line":171}],"authors":[{"value":"Theodore Ts'o ","start_line":164,"end_line":171}],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":168,"end_line":168}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/resize/resize2fs.c","type":"file","name":"resize2fs.c","base_name":"resize2fs","extension":".c","size":87514,"date":"2020-03-21","sha1":"83f8a621f982e381539d6c8a888cf053737630ac","md5":"cd91164d4d50e639223ab029877b96db","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":9,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1997, 1998 by Theodore Ts'o and PowerQuest, Inc.","start_line":4,"end_line":5},{"value":"Copyright (c) 1999, 2000 by Theodore Ts'o","start_line":7,"end_line":7}],"holders":[{"value":"Theodore Ts'o and PowerQuest, Inc.","start_line":4,"end_line":5},{"value":"Theodore Ts'o","start_line":7,"end_line":7}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/resize/resize2fs.h","type":"file","name":"resize2fs.h","base_name":"resize2fs","extension":".h","size":4467,"date":"2020-03-21","sha1":"f059dabc477b43d19dc13df9ad63ca719873b831","md5":"74db0ede2461d041f8ed9cd35967df2c","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":10,"end_line":11,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1997, 1998 by Theodore Ts'o and PowerQuest, Inc.","start_line":4,"end_line":5},{"value":"Copyright (c) 1999, 2000 by Theodore Ts'o","start_line":7,"end_line":7}],"holders":[{"value":"Theodore Ts'o and PowerQuest, Inc.","start_line":4,"end_line":5},{"value":"Theodore Ts'o","start_line":7,"end_line":7}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/resize/resource_track.c","type":"file","name":"resource_track.c","base_name":"resource_track","extension":".c","size":3294,"date":"2020-03-21","sha1":"92e3c7e9b3533ce09e7c74709ac47dbf64021f38","md5":"5d0e8186050d65d61ce9c3aef7e12ef6","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":6,"end_line":8,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2013 by Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/resize/sim_progress.c","type":"file","name":"sim_progress.c","base_name":"sim_progress","extension":".c","size":2424,"date":"2020-03-21","sha1":"b8db01c509ad134f37417c1b27e36fe69b09cd99","md5":"1b375f051b0965a440ef7f289e900414","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":10,"end_line":11,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1997, 1998 by Theodore Ts'o and PowerQuest, Inc.","start_line":4,"end_line":5},{"value":"Copyright (c) 1999, 2000 by Theodore Ts'o","start_line":7,"end_line":7}],"holders":[{"value":"Theodore Ts'o and PowerQuest, Inc.","start_line":4,"end_line":5},{"value":"Theodore Ts'o","start_line":7,"end_line":7}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/resize/test-resize","type":"file","name":"test-resize","base_name":"test-resize","extension":"","size":498,"date":"2020-03-21","sha1":"d3d0ce6813982b2f232b48c62c3b122a9a92a2e0","md5":"79c09d48d2fc396b639535e1d3dfed55","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/resize/test_extent.c","type":"file","name":"test_extent.c","base_name":"test_extent","extension":".c","size":2524,"date":"2020-03-21","sha1":"e67b34af1f801ced0d5e517362507ca846bf3c7f","md5":"5d4f708ab186f9ede44a835b14a504ea","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":9,"end_line":11,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 1997, 1998 by Theodore Ts'o and PowerQuest, Inc.","start_line":4,"end_line":5},{"value":"Copyright (c) 1999, 2000 by Theodore Ts'o","start_line":7,"end_line":7}],"holders":[{"value":"Theodore Ts'o and PowerQuest, Inc.","start_line":4,"end_line":5},{"value":"Theodore Ts'o","start_line":7,"end_line":7}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/resize/test_extent.in","type":"file","name":"test_extent.in","base_name":"test_extent","extension":".in","size":919,"date":"2020-03-21","sha1":"1d0e9212657cd9ec87b2c7a87b9c12720532a504","md5":"c6e0c70e8fbf11721c7a185b8d9be571","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub","type":"directory","name":"scrub","base_name":"scrub","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":15,"dirs_count":0,"size_count":26954,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub/e2scrub.8.in","type":"file","name":"e2scrub.8.in","base_name":"e2scrub.8","extension":".in","size":2082,"date":"2020-03-21","sha1":"936dad1d103d2f5ca9164cf87ac18e083a1b1bde","md5":"f222505ad5a130ca2d71d5cda43ff778","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-2.0","score":90.91,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":69,"end_line":69,"matched_rule":{"identifier":"gpl-2.0_780.RULE","license_expression":"gpl-2.0","licenses":["gpl-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":false,"is_license_tag":true,"matcher":"3-seq","rule_length":11,"matched_length":10,"match_coverage":90.91,"rule_relevance":100.0}},{"key":"gpl-2.0-plus","score":90.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":69,"end_line":69,"matched_rule":{"identifier":"gpl-2.0-plus_bare_single_word.RULE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":false,"is_license_tag":true,"matcher":"2-aho","rule_length":1,"matched_length":1,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["gpl-2.0","gpl-2.0-plus"],"copyrights":[{"value":"Copyright co 2018 Oracle","start_line":66,"end_line":69}],"holders":[{"value":"co Oracle","start_line":66,"end_line":69}],"authors":[],"packages":[],"emails":[{"email":"darrick.wong@oracle.com","start_line":67,"end_line":67}],"urls":[{"url":"http://www.gnu.org/licenses/gpl-2.0.html","start_line":69,"end_line":69}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub/e2scrub.conf.in","type":"file","name":"e2scrub.conf.in","base_name":"e2scrub.conf","extension":".in","size":685,"date":"2020-03-21","sha1":"a819bfb5133883fab1988aad5e645288c8aa68a0","md5":"df38534cc670c70a91cf9b035845d244","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"e2scrub@host.domain.name","start_line":13,"end_line":13}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub/e2scrub.in","type":"file","name":"e2scrub.in","base_name":"e2scrub","extension":".in","size":7363,"date":"2020-03-21","sha1":"3eb67ba69efda4cb943284546a88aa5ffb95f7a1","md5":"64fbfe5b64b5ab4cffb00e89e66a2192","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"gpl-2.0-plus","score":98.23,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":7,"end_line":19,"matched_rule":{"identifier":"gpl-2.0-plus_25.RULE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":113,"matched_length":111,"match_coverage":98.23,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2018 Oracle","start_line":3,"end_line":3}],"holders":[{"value":"Oracle","start_line":3,"end_line":3}],"authors":[{"value":"Darrick J. Wong ","start_line":5,"end_line":5}],"packages":[],"emails":[{"email":"darrick.wong@oracle.com","start_line":5,"end_line":5}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub/e2scrub.rules.in","type":"file","name":"e2scrub.rules.in","base_name":"e2scrub.rules","extension":".in","size":171,"date":"2020-03-21","sha1":"da51644ef5d1ecf03a6d3b8d3804fd618b7646aa","md5":"1172955a6de564dd2812b9389da5987e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub/e2scrub@.service.in","type":"file","name":"e2scrub@.service.in","base_name":"e2scrub@.service","extension":".in","size":447,"date":"2020-03-21","sha1":"5be5bd7b8a39dc7b9e293b1bc7db91d45af50ea9","md5":"b6e21de883040976016fd0081c09ebcf","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub/e2scrub_all.8.in","type":"file","name":"e2scrub_all.8.in","base_name":"e2scrub_all.8","extension":".in","size":1452,"date":"2020-03-21","sha1":"25c236b8c58649653fccb9b407e480ee1026b4d2","md5":"b97151735e92113b31b534d4d0f4bfdf","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-2.0","score":90.91,"name":"GNU General Public License 2.0","short_name":"GPL 2.0","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/gpl-2.0.html","text_url":"http://www.gnu.org/licenses/gpl-2.0.txt","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0","spdx_license_key":"GPL-2.0-only","spdx_url":"https://spdx.org/licenses/GPL-2.0-only","start_line":47,"end_line":47,"matched_rule":{"identifier":"gpl-2.0_780.RULE","license_expression":"gpl-2.0","licenses":["gpl-2.0"],"is_license_text":false,"is_license_notice":false,"is_license_reference":false,"is_license_tag":true,"matcher":"3-seq","rule_length":11,"matched_length":10,"match_coverage":90.91,"rule_relevance":100.0}},{"key":"gpl-2.0-plus","score":90.0,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":47,"end_line":47,"matched_rule":{"identifier":"gpl-2.0-plus_bare_single_word.RULE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":false,"is_license_tag":true,"matcher":"2-aho","rule_length":1,"matched_length":1,"match_coverage":100.0,"rule_relevance":90.0}}],"license_expressions":["gpl-2.0","gpl-2.0-plus"],"copyrights":[{"value":"Copyright co 2018 Oracle","start_line":44,"end_line":47}],"holders":[{"value":"co Oracle","start_line":44,"end_line":47}],"authors":[],"packages":[],"emails":[{"email":"darrick.wong@oracle.com","start_line":45,"end_line":45}],"urls":[{"url":"http://www.gnu.org/licenses/gpl-2.0.html","start_line":47,"end_line":47}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub/e2scrub_all.cron.in","type":"file","name":"e2scrub_all.cron.in","base_name":"e2scrub_all.cron","extension":".in","size":186,"date":"2020-03-21","sha1":"4b57eda329a19066b64a49df34c61c8691f8ba45","md5":"4b032d7d011d1fcf289d005f1125e72b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub/e2scrub_all.in","type":"file","name":"e2scrub_all.in","base_name":"e2scrub_all","extension":".in","size":5435,"date":"2020-03-21","sha1":"d6d440290c1dfa97a05e71cf090b62849fd129ab","md5":"380a256e43637e33dae64fcc4655aeea","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"gpl-2.0-plus","score":98.23,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":7,"end_line":19,"matched_rule":{"identifier":"gpl-2.0-plus_25.RULE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":113,"matched_length":111,"match_coverage":98.23,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2018 Oracle","start_line":3,"end_line":3}],"holders":[{"value":"Oracle","start_line":3,"end_line":3}],"authors":[{"value":"Darrick J. Wong ","start_line":5,"end_line":5}],"packages":[],"emails":[{"email":"darrick.wong@oracle.com","start_line":5,"end_line":5}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub/e2scrub_all.service.in","type":"file","name":"e2scrub_all.service.in","base_name":"e2scrub_all.service","extension":".in","size":306,"date":"2020-03-21","sha1":"032987dbcdd03c31aa5eb501d2e358d8dad13bc5","md5":"c44ca155760b55e136ac710927edffea","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub/e2scrub_all.timer.in","type":"file","name":"e2scrub_all.timer.in","base_name":"e2scrub_all.timer","extension":".in","size":251,"date":"2020-03-21","sha1":"9d168d42a940fc384751fa62507c2b8cae9b06db","md5":"8974b51fc7181c1efaf93832f9039e69","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub/e2scrub_all_cron.in","type":"file","name":"e2scrub_all_cron.in","base_name":"e2scrub_all_cron","extension":".in","size":1996,"date":"2020-03-21","sha1":"04f03adf337ec087f3c7d8cc8858a0ab67ffe189","md5":"88d75db6a41f69cd562e76f3878dc13e","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[{"key":"gpl-2.0-plus","score":98.23,"name":"GNU General Public License 2.0 or later","short_name":"GPL 2.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-2.0-plus","spdx_license_key":"GPL-2.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-2.0-or-later","start_line":7,"end_line":19,"matched_rule":{"identifier":"gpl-2.0-plus_25.RULE","license_expression":"gpl-2.0-plus","licenses":["gpl-2.0-plus"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":113,"matched_length":111,"match_coverage":98.23,"rule_relevance":100}}],"license_expressions":["gpl-2.0-plus"],"copyrights":[{"value":"Copyright (c) 2018 Oracle","start_line":3,"end_line":3}],"holders":[{"value":"Oracle","start_line":3,"end_line":3}],"authors":[{"value":"Darrick J. Wong ","start_line":5,"end_line":5}],"packages":[],"emails":[{"email":"darrick.wong@oracle.com","start_line":5,"end_line":5}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub/e2scrub_fail.in","type":"file","name":"e2scrub_fail.in","base_name":"e2scrub_fail","extension":".in","size":822,"date":"2020-03-21","sha1":"35b06458b01d67d09fa978db077b2f1aaa192b62","md5":"7cadd12f72ba9663414849b5abe98649","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub/e2scrub_fail@.service.in","type":"file","name":"e2scrub_fail@.service.in","base_name":"e2scrub_fail@.service","extension":".in","size":221,"date":"2020-03-21","sha1":"798064c94110b8c93f36dd5293953fd3453a39ad","md5":"fbd0d9bb8cf84fb1745532f670aa4109","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub/e2scrub_reap.service.in","type":"file","name":"e2scrub_reap.service.in","base_name":"e2scrub_reap.service","extension":".in","size":559,"date":"2020-03-21","sha1":"51a96929910dd971034f463ffc4b4b3bf99a9dc3","md5":"224f092028f18af0d7028520a0305157","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/scrub/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":4978,"date":"2020-03-21","sha1":"1f9e6726e53f5e225160ac5be6a057bf943c3d25","md5":"fa1897c4ae6f6cafe1c0d543d6116b26","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests","type":"directory","name":"tests","base_name":"tests","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1261,"dirs_count":368,"size_count":22572267,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/filter.sed","type":"file","name":"filter.sed","base_name":"filter","extension":".sed","size":1554,"date":"2020-03-21","sha1":"643aa000c0ca7aaf3e655f0d1a63ab8ef50c1bf6","md5":"78500f7604754e21d6b2e1b10cd37255","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":2910,"date":"2020-03-21","sha1":"115eec42f64917fc1273a9054902c141e9be6166","md5":"624d440fad1f11bfe249f86b249860d5","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/mke2fs.conf.in","type":"file","name":"mke2fs.conf.in","base_name":"mke2fs.conf","extension":".in","size":786,"date":"2020-03-21","sha1":"45462868b6b5cb48bd21317a7d7e73a21c6aa038","md5":"24d2a061ede5b5249dff8ecf685a27a1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/README","type":"file","name":"README","base_name":"README","extension":"","size":3115,"date":"2020-03-21","sha1":"a9f58841fe82329d10c819bf033f4a926521db63","md5":"a289599282e02bd340fc03055464a82a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/run_e2fsck","type":"file","name":"run_e2fsck","base_name":"run_e2fsck","extension":"","size":2357,"date":"2020-03-21","sha1":"2e23ebfcf9f7a157107a8b778fa36973139eca7a","md5":"6e8585970ccabe18590c71d64ae0e282","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/run_mke2fs","type":"file","name":"run_mke2fs","base_name":"run_mke2fs","extension":"","size":744,"date":"2020-03-21","sha1":"38d127cf081ab7de327811cb8a0f4d16bfae1a81","md5":"da86b981b27a679d98c360913654910a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/test_config","type":"file","name":"test_config","base_name":"test_config","extension":"","size":1609,"date":"2020-03-21","sha1":"0e324a29d8b5550cb784ea3a98781e569a4b0701","md5":"5c5962fb7404280aee9395462f318b8b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/test_one.in","type":"file","name":"test_one.in","base_name":"test_one","extension":".in","size":1925,"date":"2020-03-21","sha1":"90e985859572b2c256647e827132fb8c55bf466a","md5":"42a849fb1ebbceab40ebfd0e8185688d","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/test_post","type":"file","name":"test_post","base_name":"test_post","extension":"","size":343,"date":"2020-03-21","sha1":"0943e5d54458f7bd5d77c6342ce7ff011dc9e4b6","md5":"6c7db08f8acd1fe7cc50b4cf43e06542","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/test_script.in","type":"file","name":"test_script.in","base_name":"test_script","extension":".in","size":933,"date":"2020-03-21","sha1":"7af9b8ac4b4109dbabc25ae3d3ee434ab657808a","md5":"fffbaec71f281f6bc72cd935dd721ebf","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_bad_ostype","type":"directory","name":"d_bad_ostype","base_name":"d_bad_ostype","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":658,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_bad_ostype/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":39,"date":"2020-03-21","sha1":"9aa57e05b09d74e032fe49c5a72bbfe1eb640ad7","md5":"d750006012c81a2b4c8c32b53daf927b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_bad_ostype/name","type":"file","name":"name","base_name":"name","extension":"","size":30,"date":"2020-03-21","sha1":"923b063b69d93d1af04b6c74cce898a25d4d4577","md5":"fbb7305a121125e0813926578557a3ac","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_bad_ostype/script","type":"file","name":"script","base_name":"script","extension":"","size":589,"date":"2020-03-21","sha1":"6786fd8fcefb767d04753aebbe0759dabe7dce85","md5":"b65ff07995ffc9fa13cc80372d6a88a6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_corrupt_journal_nr_users","type":"directory","name":"d_corrupt_journal_nr_users","base_name":"d_corrupt_journal_nr_users","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":12680,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_corrupt_journal_nr_users/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":3299,"date":"2020-03-21","sha1":"284b7b3f73298fe2f0f847db42d877761393b8f4","md5":"68a37012cd241285a7876acdcfaf63e6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_corrupt_journal_nr_users/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":8788,"date":"2020-03-21","sha1":"f16a69a4cf173c00be13eadae037e0ed37312b44","md5":"66d75cb24f70338aca920c469005a441","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"file\", last modified: Tue Aug 14 13:40:02 2018, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_corrupt_journal_nr_users/name","type":"file","name":"name","base_name":"name","extension":"","size":48,"date":"2020-03-21","sha1":"435179a0071f21b2e36a3e5e20cdd9c833fad98b","md5":"330d3a4c44e86e93de35a3bb147f88af","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_corrupt_journal_nr_users/script","type":"file","name":"script","base_name":"script","extension":"","size":545,"date":"2020-03-21","sha1":"d209b455ea4b228303ef497ee00d8d7c7063c9ea","md5":"bda2cfbc7dd7d7edb75aacce84dd2207","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_dumpe2fs_group_only","type":"directory","name":"d_dumpe2fs_group_only","base_name":"d_dumpe2fs_group_only","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":2923,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_dumpe2fs_group_only/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1886,"date":"2020-03-21","sha1":"829b40895e0389f6b15d510798cdb81f0ae1328d","md5":"16f83c1dee430ce190bc3d966d259252","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_dumpe2fs_group_only/name","type":"file","name":"name","base_name":"name","extension":"","size":25,"date":"2020-03-21","sha1":"e813683476e3a82ebfa23752ca2141ab5f1ac3f6","md5":"cb19076e241701e0b761e740cfcc7a8e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_dumpe2fs_group_only/script","type":"file","name":"script","base_name":"script","extension":"","size":1012,"date":"2020-03-21","sha1":"c3abb5abf5343f49739a9c97fae0cd46388db2d5","md5":"6ec7f1353c0a541d82f29aa223b2bc1a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_fallocate","type":"directory","name":"d_fallocate","base_name":"d_fallocate","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":7871,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_fallocate/expect.gz","type":"file","name":"expect.gz","base_name":"expect","extension":".gz","size":3770,"date":"2020-03-21","sha1":"e73fff3cd161a911f267b176b462bb20249004ac","md5":"500609cd07a891ad014a46fdd9511b4f","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Nov 04 08:41:28 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_fallocate/name","type":"file","name":"name","base_name":"name","extension":"","size":37,"date":"2020-03-21","sha1":"e5c6940aeb11960c5fc3de78f4f270a5df56424c","md5":"bfe08d6625ca77b2d7c1328bf066a22d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_fallocate/script","type":"file","name":"script","base_name":"script","extension":"","size":4064,"date":"2020-03-21","sha1":"19b700b632ded6e3b9e1bc5ae1163f3092b15401","md5":"ab8a396db9eb94d6b650881ecd44caf2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_fallocate_bigalloc","type":"directory","name":"d_fallocate_bigalloc","base_name":"d_fallocate_bigalloc","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":6812,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_fallocate_bigalloc/expect.gz","type":"file","name":"expect.gz","base_name":"expect","extension":".gz","size":2673,"date":"2020-03-21","sha1":"8ae055ca2662481710e54e4362f249c82b39868a","md5":"5f8c741e7d3498e1f4aae3461a5f02d2","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Nov 04 08:41:28 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_fallocate_bigalloc/name","type":"file","name":"name","base_name":"name","extension":"","size":51,"date":"2020-03-21","sha1":"230f1c18f77a06e750c78bddb048c653945f69dd","md5":"b88a70062d9aa0ec9c4506a0d685c088","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_fallocate_bigalloc/script","type":"file","name":"script","base_name":"script","extension":"","size":4088,"date":"2020-03-21","sha1":"67f2a87542bb96dd6320a2f945cc671604e3bc65","md5":"49058b969f7ac27667436460a1840491","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_fallocate_blkmap","type":"directory","name":"d_fallocate_blkmap","base_name":"d_fallocate_blkmap","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":5245,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_fallocate_blkmap/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":3391,"date":"2020-03-21","sha1":"8d3ab3a0c0da7eb08ee9e8ecb4c3a649c5507e13","md5":"5500449a6ecacf5667efe7757ac7aa05","mime_type":"text/plain","file_type":"ASCII text, with very long lines, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_fallocate_blkmap/name","type":"file","name":"name","base_name":"name","extension":"","size":54,"date":"2020-03-21","sha1":"2c18ea0381fc5ed15d92d7c7deef7418227fef01","md5":"8812b31495ea89953a10e8bc21318cf4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_fallocate_blkmap/script","type":"file","name":"script","base_name":"script","extension":"","size":1800,"date":"2020-03-21","sha1":"17400484ba548740b347b7f67c58e235e20e529d","md5":"4c2f882e68753ac411f06aec8e695426","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_inline_dump","type":"directory","name":"d_inline_dump","base_name":"d_inline_dump","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":7749,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_inline_dump/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":3559,"date":"2020-03-21","sha1":"49fc171d6aaaba4e88cc29682e356006829f1f04","md5":"1061ef6d78469787056de3fc3cfd6bfe","mime_type":"text/x-diff","file_type":"diff output, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_inline_dump/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2988,"date":"2020-03-21","sha1":"e1b1ed4dd0a9d74c5b23226d43ec4ec362ed40fe","md5":"b2109f8cbf36e6970e5713fcfdc2da54","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 22 20:17:41 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_inline_dump/name","type":"file","name":"name","base_name":"name","extension":"","size":30,"date":"2020-03-21","sha1":"46920289c17ebabf93df90fecb3959bef80497fe","md5":"e9df1d784fca83a8687c94c92acbe189","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_inline_dump/script","type":"file","name":"script","base_name":"script","extension":"","size":1172,"date":"2020-03-21","sha1":"9839d3fc53f9bdb3601d7e7d4029b9a4b1f9658c","md5":"ebe3addf50c46402f271ca87129086f8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_loaddump","type":"directory","name":"d_loaddump","base_name":"d_loaddump","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":2399,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_loaddump/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":602,"date":"2020-03-21","sha1":"58ea0eaa7945d40780878563fe9cdd9cdf675355","md5":"6ab39600b3883c3a269f4bea69d619ac","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_loaddump/name","type":"file","name":"name","base_name":"name","extension":"","size":23,"date":"2020-03-21","sha1":"90189d6ac903302f43a90cf98b13a4a1deeeb4d0","md5":"d8b8dc4fed261abdeb7215f893eecd91","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_loaddump/script","type":"file","name":"script","base_name":"script","extension":"","size":1774,"date":"2020-03-21","sha1":"ced17fecfc5cc3ee5d8d7ab89bb4ebe30856fdc6","md5":"c0fa74c914d46e5aab66d7c3004ef50f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_punch","type":"directory","name":"d_punch","base_name":"d_punch","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":10496,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_punch/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":7625,"date":"2020-03-21","sha1":"2b06a568b12ac0e792d0ba411d3bb1999895e04f","md5":"9a140903da26c4c245f3508d8d79ad98","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_punch/name","type":"file","name":"name","base_name":"name","extension":"","size":33,"date":"2020-03-21","sha1":"41433daa10da4fc9864cb5523268928434f13444","md5":"350704808267efab3e507544da8d8a80","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_punch/script","type":"file","name":"script","base_name":"script","extension":"","size":2838,"date":"2020-03-21","sha1":"8b433d8f8d6093c0bc583d5820b7a0475d48123e","md5":"fb0955b3c8139924efd5c36a4da8f62d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_punch_bigalloc","type":"directory","name":"d_punch_bigalloc","base_name":"d_punch_bigalloc","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":10430,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_punch_bigalloc/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":7524,"date":"2020-03-21","sha1":"4527267b08219152d5590d01856e8bc04e9e6f65","md5":"5d3512f457d8176aae6eed9c6b1c0ed1","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"https://ext4.wiki.kernel.org/index.php/Bigalloc","start_line":3,"end_line":3}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_punch_bigalloc/name","type":"file","name":"name","base_name":"name","extension":"","size":47,"date":"2020-03-21","sha1":"41fed89cb7c606385446f47b8a74a8285ea13501","md5":"64aebb6b570a0ab077fcfecb0cbca8bd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_punch_bigalloc/script","type":"file","name":"script","base_name":"script","extension":"","size":2859,"date":"2020-03-21","sha1":"1b01806e85a616275827936fcaa338107fdd071f","md5":"347452f3727961c79fa1bfd95664a7ca","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_special_files","type":"directory","name":"d_special_files","base_name":"d_special_files","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":5373,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_special_files/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":3000,"date":"2020-03-21","sha1":"ebe0927a367386663d5af31b50177b2f367dc9c5","md5":"24bcfa819b3039b67d1470010ee30abd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_special_files/name","type":"file","name":"name","base_name":"name","extension":"","size":32,"date":"2020-03-21","sha1":"7f82022bc8bc9fd8908c6ff29ecaba18b129191a","md5":"1e3b25a75d6b23a5c89da7c0c8619f60","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_special_files/script","type":"file","name":"script","base_name":"script","extension":"","size":2341,"date":"2020-03-21","sha1":"187fe61c322bbf361bdaf03dded3af4750775ca3","md5":"0ef52bf5c2aac459469c7d4d7b72e7d7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_xattr_edits","type":"directory","name":"d_xattr_edits","base_name":"d_xattr_edits","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":5203,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_xattr_edits/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1525,"date":"2020-03-21","sha1":"b3fddc7ba32e36e2743640fbb7b72320428b8ffd","md5":"afc1ea296bd344f8f6de54e34195d852","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_xattr_edits/name","type":"file","name":"name","base_name":"name","extension":"","size":36,"date":"2020-03-21","sha1":"500f8bd87a7c191ad873ca0b9468cae0c877e2a2","md5":"65ce378c51e879fd7b88fdbcbdcb32d6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_xattr_edits/script","type":"file","name":"script","base_name":"script","extension":"","size":3642,"date":"2020-03-21","sha1":"6fba6e45de63c76bed58475f4b9c7e2638e45b5e","md5":"4bdfa3ce5595e61f6a5e8334ff5bb2d0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_xattr_sorting","type":"directory","name":"d_xattr_sorting","base_name":"d_xattr_sorting","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":3681,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_xattr_sorting/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1397,"date":"2020-03-21","sha1":"c763937200277c918376dd672177510c32219076","md5":"6087cb13a12bb720f15a0fab6a2153dc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_xattr_sorting/name","type":"file","name":"name","base_name":"name","extension":"","size":36,"date":"2020-03-21","sha1":"d0552090b7485d476634a6113f1b95c7d7eddd93","md5":"3bb003973b91e6c75fcb7bbf56219fea","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/d_xattr_sorting/script","type":"file","name":"script","base_name":"script","extension":"","size":2248,"date":"2020-03-21","sha1":"3795906e41e1b99a1a5b1acc4c75b72ec42edf09","md5":"16b37c39942241a19493a61bbb2253ea","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/defaults","type":"directory","name":"defaults","base_name":"defaults","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":1135,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/defaults/e_script","type":"file","name":"e_script","base_name":"e_script","extension":"","size":1091,"date":"2020-03-21","sha1":"e058f2f9c73965e75bae61e344b83bf5ae3baf74","md5":"0a76890151ef1f5dae2edf0148fcc60d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/defaults/f_script","type":"file","name":"f_script","base_name":"f_script","extension":"","size":22,"date":"2020-03-21","sha1":"5836430c0d7c3f85487c213ad2c972299804c045","md5":"22177a6b832ee4a3d66492ce9a148da6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/defaults/j_script","type":"file","name":"j_script","base_name":"j_script","extension":"","size":22,"date":"2020-03-21","sha1":"5836430c0d7c3f85487c213ad2c972299804c045","md5":"22177a6b832ee4a3d66492ce9a148da6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/e_brel_bma","type":"directory","name":"e_brel_bma","base_name":"e_brel_bma","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":103,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/e_brel_bma/name","type":"file","name":"name","base_name":"name","extension":"","size":57,"date":"2020-03-21","sha1":"6223300825655b0e68724d68c5f3f4b7e8625efa","md5":"fb9544e96559230bdd8dbcd36b218c07","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/e_brel_bma/script","type":"file","name":"script","base_name":"script","extension":"","size":46,"date":"2020-03-21","sha1":"b260f1970a274d037d2387613046ae44c2dacf79","md5":"99b619d79d46f632cebc481062aaa9df","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/e_icount_normal","type":"directory","name":"e_icount_normal","base_name":"e_icount_normal","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":50,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/e_icount_normal/name","type":"file","name":"name","base_name":"name","extension":"","size":50,"date":"2020-03-21","sha1":"c63fc40e1b06e51a08cfc02d9cf8d6b02a88d7dd","md5":"b7ba8275c4c20c419dbafcd1bcdc5b8b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/e_icount_opt","type":"directory","name":"e_icount_opt","base_name":"e_icount_opt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":50,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/e_icount_opt/name","type":"file","name":"name","base_name":"name","extension":"","size":50,"date":"2020-03-21","sha1":"ed3a09eef1ea0c6562efbdefff736aa3c4955f59","md5":"c7101917f26dc577429dbdab8e92b515","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/e_irel_ima","type":"directory","name":"e_irel_ima","base_name":"e_irel_ima","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":103,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/e_irel_ima/name","type":"file","name":"name","base_name":"name","extension":"","size":57,"date":"2020-03-21","sha1":"cd65285ea790690e1dd82db5abb75c7496853f58","md5":"d6b044a07df8ba3a3b66cb4d5d3cdefd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/e_irel_ima/script","type":"file","name":"script","base_name":"script","extension":"","size":46,"date":"2020-03-21","sha1":"b260f1970a274d037d2387613046ae44c2dacf79","md5":"99b619d79d46f632cebc481062aaa9df","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_16384_block","type":"directory","name":"f_16384_block","base_name":"f_16384_block","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":10573,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_16384_block/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":280,"date":"2020-03-21","sha1":"d1bc56e96984408299327e6fe39804c1a2599bf5","md5":"66f3da88dfd03497d899ee2934897e06","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_16384_block/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":280,"date":"2020-03-21","sha1":"d1bc56e96984408299327e6fe39804c1a2599bf5","md5":"66f3da88dfd03497d899ee2934897e06","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_16384_block/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":9992,"date":"2020-03-21","sha1":"d746c9e074a2e11a5d8eee600b43ffac5f4098f2","md5":"8aef16533f3addb6d866682482a9b973","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Thu May 23 05:52:09 2002, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_16384_block/name","type":"file","name":"name","base_name":"name","extension":"","size":21,"date":"2020-03-21","sha1":"95eeedb10a1e1e081c4bc5a3d75594afaf918aef","md5":"0a48122537687b38cc71ac9886ac0d3f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_8192_block","type":"directory","name":"f_8192_block","base_name":"f_8192_block","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":10572,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_8192_block/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":280,"date":"2020-03-21","sha1":"d1bc56e96984408299327e6fe39804c1a2599bf5","md5":"66f3da88dfd03497d899ee2934897e06","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_8192_block/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":280,"date":"2020-03-21","sha1":"d1bc56e96984408299327e6fe39804c1a2599bf5","md5":"66f3da88dfd03497d899ee2934897e06","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_8192_block/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":9992,"date":"2020-03-21","sha1":"d746c9e074a2e11a5d8eee600b43ffac5f4098f2","md5":"8aef16533f3addb6d866682482a9b973","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Thu May 23 05:52:09 2002, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_8192_block/name","type":"file","name":"name","base_name":"name","extension":"","size":20,"date":"2020-03-21","sha1":"0e8197666811a402b3390d097e658c7e2f5790f0","md5":"16ae6072df789853bdb23ee8a6b090ca","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_bbitmap","type":"directory","name":"f_bad_bbitmap","base_name":"f_bad_bbitmap","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3391,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_bbitmap/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":530,"date":"2020-03-21","sha1":"a45e91621683d61e719f3f21e67de3a3a4cdc07d","md5":"a2321d36e1d4a364a61c5bdf7b127f05","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_bbitmap/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"0f0a2a0b561d42c462e0cffaa8197d100c2bb890","md5":"378cf72b847e8344aad118b1103e1657","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_bbitmap/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2546,"date":"2020-03-21","sha1":"3e378079fdc351bca2b012e9f75c9efe00e3865c","md5":"36ef2b0bf3db1258232d9e45ce3d1de9","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 06:03:09 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_bbitmap/name","type":"file","name":"name","base_name":"name","extension":"","size":37,"date":"2020-03-21","sha1":"f43ca524a6ed0d251dcd42d4552b83907fbd06f2","md5":"6e83faae94767ed809bac89ede5c54e6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_bmap_csum","type":"directory","name":"f_bad_bmap_csum","base_name":"f_bad_bmap_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3490,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_bmap_csum/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":622,"date":"2020-03-21","sha1":"0fe0b18fac4087b685f29a6038c5a9c0ca50927b","md5":"856c073da7a166adb32b4206799f3b18","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_bmap_csum/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"0f0a2a0b561d42c462e0cffaa8197d100c2bb890","md5":"378cf72b847e8344aad118b1103e1657","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_bmap_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2546,"date":"2020-03-21","sha1":"d726250121cd2bdbbb1edc3ee55358f64d293868","md5":"04a81be6082b56a83cd140aacffcbeaf","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 06:00:18 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_bmap_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":44,"date":"2020-03-21","sha1":"97d459627247b805da2eff840c37cf2a379e0f4e","md5":"473411b1138c46e6a2de4be802633081","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_disconnected_inode","type":"directory","name":"f_bad_disconnected_inode","base_name":"f_bad_disconnected_inode","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3145,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_disconnected_inode/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1344,"date":"2020-03-21","sha1":"d7a9da59a82a39d7b9a6e41b2eb66dccdd48e664","md5":"031407c5f6d85e5b2f09a6561da10ebb","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_disconnected_inode/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":276,"date":"2020-03-21","sha1":"8d1463ae2bcb31f2c7b54a97b65d672753d2c160","md5":"db7ccd4eb944a26b078a054f3d1b1156","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_disconnected_inode/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1490,"date":"2020-03-21","sha1":"7cf7c1c70fc131393b7fe52b07dc71de51db6465","md5":"d648f2603441fcefe0041138f3aec083","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Mon Jul 04 17:33:33 2005, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_disconnected_inode/name","type":"file","name":"name","base_name":"name","extension":"","size":35,"date":"2020-03-21","sha1":"c3f577cb0646c070711f674c74037351088e1c71","md5":"06b7078e13436f8d0083f4ee55ef927a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_gdt_csum","type":"directory","name":"f_bad_gdt_csum","base_name":"f_bad_gdt_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3280,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_gdt_csum/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":412,"date":"2020-03-21","sha1":"8768bb04396ade56e367a879b25a0d407d8ce850","md5":"27588af6b0f463db3ba5461e5dd4f28f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_gdt_csum/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"0f0a2a0b561d42c462e0cffaa8197d100c2bb890","md5":"378cf72b847e8344aad118b1103e1657","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_gdt_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2548,"date":"2020-03-21","sha1":"dabe7301d666743d24f336a1186a2399057bff18","md5":"683555514d39842b43a480176b25567a","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 06:00:31 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_gdt_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":42,"date":"2020-03-21","sha1":"94cd87571c0cd84bc5c089b4c4b6d17fc0431255","md5":"dcad65c63fae969561b8ddd5f606230f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_ibitmap","type":"directory","name":"f_bad_ibitmap","base_name":"f_bad_ibitmap","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3374,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_ibitmap/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":511,"date":"2020-03-21","sha1":"7005ac3aa8dc60a11c8f8f850bf60ff8620f3dbf","md5":"d71e1b1ba8a52d9cc3b6e93634e00aaf","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_ibitmap/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"0f0a2a0b561d42c462e0cffaa8197d100c2bb890","md5":"378cf72b847e8344aad118b1103e1657","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_ibitmap/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2548,"date":"2020-03-21","sha1":"871ba33dda26f066dfee73ef4023055f8d17d09c","md5":"a1e60edef6081d059fb04f9408ee4637","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 06:02:41 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_ibitmap/name","type":"file","name":"name","base_name":"name","extension":"","size":37,"date":"2020-03-21","sha1":"9d8b1e85518a9f0bf00f72117099141e877063c4","md5":"655b5551557cfb80894bf64166356c59","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_inode_csum","type":"directory","name":"f_bad_inode_csum","base_name":"f_bad_inode_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":8587,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_inode_csum/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":3657,"date":"2020-03-21","sha1":"88aded6baefea2703d44d07e7bec9058f5309732","md5":"90810efc204e018db89e0f2496021a05","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_inode_csum/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"098826314aa7056afddfdd501ba34c69f6c61095","md5":"9d1cc4770cdd48924eab82dbb105d770","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_inode_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":4613,"date":"2020-03-21","sha1":"037472ce7a6a83d48eb9c6b2e780fc6dbae6281b","md5":"0a1137dade9c1730297f57bf154fbffc","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 19:07:02 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_inode_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":39,"date":"2020-03-21","sha1":"14b10c222039d7519d8f5d5407732057500e7feb","md5":"fec0f5c02e2db747276edfd2773d6d42","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_local_jnl","type":"directory","name":"f_bad_local_jnl","base_name":"f_bad_local_jnl","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":8399875,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_local_jnl/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":493,"date":"2020-03-21","sha1":"0d5106f47d945823a329be650b45c681f3eb724c","md5":"e308a7bd59f24bc7ac548aa2b3db7ef4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_local_jnl/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"237ef385591bf502faae8c75ff9081841d553781","md5":"2b36726a82696fac70f822b1b5723cbf","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_local_jnl/image","type":"file","name":"image","base_name":"image","extension":"","size":8388608,"date":"2020-03-21","sha1":"b6eafce44590c29145ba9f69c922d1e2ce4ebe9d","md5":"53a3f41e373de9157ded015a38ed7bbd","mime_type":"application/octet-stream","file_type":"Linux rev 1.0 ext3 filesystem data, UUID=e6cb8a49-5fb1-4763-90bf-8b7226a597e6","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_local_jnl/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":10433,"date":"2020-03-21","sha1":"0fe0be705cd844f5cc57ff4ea50f7f188b4ef4ce","md5":"3a5b32d145c245d6c19b82bfaf761a1a","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Oct 05 16:11:18 2001, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bad_local_jnl/name","type":"file","name":"name","base_name":"name","extension":"","size":60,"date":"2020-03-21","sha1":"18286ef078065d6c4c11b98868c52e80404ad524","md5":"4936603456f1b151511695334d407bac","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badbblocks","type":"directory","name":"f_badbblocks","base_name":"f_badbblocks","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1623,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badbblocks/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":936,"date":"2020-03-21","sha1":"2bff583249616252850ecc8bd4b59fbbb58439a6","md5":"c1dc37e34ffb06bc7d69cdf9f89a1939","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badbblocks/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"4fd9d07abeb9eaca45b55419eeebf2a935943c0b","md5":"1915a7c0ae5fe5a0a00ea464903262b1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badbblocks/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":376,"date":"2020-03-21","sha1":"69d08f8f6ca7728994e76ffefbfcaf9c7fdab6e5","md5":"f3d68a20c86dc003ea6cd0258e52106c","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:55 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badbblocks/name","type":"file","name":"name","base_name":"name","extension":"","size":34,"date":"2020-03-21","sha1":"22df93f9473e4a1274996ab3f444e817782311ce","md5":"6a0a15339db925f4aad7dcaf80a9edd6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badcluster","type":"directory","name":"f_badcluster","base_name":"f_badcluster","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":10947,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badcluster/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":6963,"date":"2020-03-21","sha1":"1c9579eb264089aaa0e74a20d40f34cc50666c36","md5":"e3336d18aa13abf31883013151ecc246","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badcluster/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3149,"date":"2020-03-21","sha1":"4a7b1c631902f837badc9d75e425e5ed30a6c3f6","md5":"a15d85835497a84aae2aa44c9fe8273b","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sat Jul 26 20:18:50 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badcluster/name","type":"file","name":"name","base_name":"name","extension":"","size":48,"date":"2020-03-21","sha1":"3ca7dd7c29c754b49b4509a18c24ab9ce6b2ccc2","md5":"ac788b64b9ad9ed6f21c0461353fe7c4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badcluster/script","type":"file","name":"script","base_name":"script","extension":"","size":787,"date":"2020-03-21","sha1":"6dbb835ec12fb618b97ff9f9025eb2df09a41d30","md5":"f89c892193de724fbd5f17db23a1cd8a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_baddir","type":"directory","name":"f_baddir","base_name":"f_baddir","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":15840,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_baddir/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1294,"date":"2020-03-21","sha1":"54b620d3621d62cc406aabdbc9f6579c28d94d72","md5":"f5340959778b4f4f1466b1585282ca18","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_baddir/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"92cb58eefd3ebd94544ff5cb8538386981f2bb09","md5":"c323901d67b2d009954aac1486cbd01c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_baddir/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":14241,"date":"2020-03-21","sha1":"a3d44b389938b8e469d0ed682354ea0f878ca765","md5":"43c2dcf03f6f3936f955d4176002f357","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sat Nov 30 16:43:22 1996, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_baddir/name","type":"file","name":"name","base_name":"name","extension":"","size":28,"date":"2020-03-21","sha1":"a8cbc61dd9e1e33ae59c276ecf84fd65d94e40bb","md5":"07088615d54aefdb28caba2d313d2975","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_baddir2","type":"directory","name":"f_baddir2","base_name":"f_baddir2","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1297,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_baddir2/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":404,"date":"2020-03-21","sha1":"99c68598e394cca734cc3636bdca5a2046e54452","md5":"f7c102ec6cda91596e0274fa9daf545e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_baddir2/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"78e9e8c574061388a44709a122031457d52b438d","md5":"0c493ff2a67c6077f73494b5b3e4b81c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_baddir2/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":587,"date":"2020-03-21","sha1":"c2844a177970e0562f5b951d9111f6c27da93957","md5":"8d5caef4955373a880723fbfaac8cc3f","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Mon Jul 09 23:03:38 2007, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_baddir2/name","type":"file","name":"name","base_name":"name","extension":"","size":29,"date":"2020-03-21","sha1":"673b1c6ae1eca18369e2ea49a0d0678b6bd1a455","md5":"1b406041c801c1db887c19a5227ce7b0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_baddotdir","type":"directory","name":"f_baddotdir","base_name":"f_baddotdir","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2234,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_baddotdir/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1368,"date":"2020-03-21","sha1":"a32016ee7d5d4cf5c0101ffcc62c26e111dadbc5","md5":"48fd5f9571f9c25f5dbb35bcfba79571","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_baddotdir/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"59f5ee467c6819f7c3862bc73cef7e4e1d912c90","md5":"37dd29cc0fd43acc18c8bffa0709bde0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_baddotdir/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":564,"date":"2020-03-21","sha1":"d3d15bc489b3f7c989c4d3cc367a0846c661a407","md5":"c06348c3bb3b32209bf85e9099416fab","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Wed Jan 22 20:03:34 1997, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_baddotdir/name","type":"file","name":"name","base_name":"name","extension":"","size":25,"date":"2020-03-21","sha1":"a5abf9e2716d148f7e6c2f3f5e9323a955818c16","md5":"daba0af233565a5df188220b99fabcb3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badinode","type":"directory","name":"f_badinode","base_name":"f_badinode","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2426,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badinode/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":970,"date":"2020-03-21","sha1":"2a318b17be23b3d4282c44de227ca1f37071249a","md5":"e50f63eb71d63a8194e6e133caa5651e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badinode/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"35f11e8208b61a86207d167348ffe02c482eebc0","md5":"3bf6112cb3010e9062162aa8d7dc5a8d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badinode/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1155,"date":"2020-03-21","sha1":"58c9a7e0e14c929f7004f957dccf6c2f285fa1d5","md5":"e4410e245b164d2e6a9f768ff834e7df","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sat Jun 02 03:35:44 2001, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badinode/name","type":"file","name":"name","base_name":"name","extension":"","size":24,"date":"2020-03-21","sha1":"00902128daa208d8c899c8907ca229cbb0a7c2e6","md5":"08056d79a4909b3391595f1a2afd2b8c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badjour_indblks","type":"directory","name":"f_badjour_indblks","base_name":"f_badjour_indblks","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":8400299,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badjour_indblks/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":795,"date":"2020-03-21","sha1":"362f3fb87487a980bf74ab81abf6118cc91dc457","md5":"ac716e81eb7166278d530aaf1c592f02","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badjour_indblks/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"40fa252b311ee0fb12f1f472ad7186b5148829d1","md5":"1fc455f05173ed0a49b0f12863ac039a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badjour_indblks/image","type":"file","name":"image","base_name":"image","extension":"","size":8388608,"date":"2020-03-21","sha1":"27aae89afbf4c5c0d138d3d0fd72437da8236d4b","md5":"0f1abab7ef58ecba6befc9fbadd24356","mime_type":"application/octet-stream","file_type":"Linux rev 1.0 ext3 filesystem data, UUID=34a490cc-9d47-464a-a9aa-39c28b427e0f","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badjour_indblks/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":10569,"date":"2020-03-21","sha1":"5ce2a37748a9abc97d119e49c1e4511cd9faf027","md5":"6fe3b81a5a15549964515b4fd7080a15","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Thu Mar 08 15:38:41 2007, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badjour_indblks/name","type":"file","name":"name","base_name":"name","extension":"","size":46,"date":"2020-03-21","sha1":"ee8a3f529b79cd1621e257a9bf532700234aa9f2","md5":"8e3065a458929ca0a50c20458aea64be","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badjourblks","type":"directory","name":"f_badjourblks","base_name":"f_badjourblks","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":11580,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badjourblks/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":759,"date":"2020-03-21","sha1":"93f67a4c9dc7d32c875ffdcdce3e807fb99b5305","md5":"5c79cfb01aadfc31a5f264978d9dc359","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badjourblks/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"c87df25a72bd83cf3c37d0d4049eea4c3fc2120a","md5":"48f0eab772e540a31c8a16557587a272","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badjourblks/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":10481,"date":"2020-03-21","sha1":"a169b752350ac11b4f3dbd120d58c409cd6492e2","md5":"200d7d261ce6caa8af3518b5f7fe7810","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Mon Oct 04 15:54:55 2004, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badjourblks/name","type":"file","name":"name","base_name":"name","extension":"","size":59,"date":"2020-03-21","sha1":"676a9360c55dbcdc8633ac751e13346d4037a85f","md5":"74671e765c748d3fe87b59b889cbe356","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badorphan","type":"directory","name":"f_badorphan","base_name":"f_badorphan","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":82846,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badorphan/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":3721,"date":"2020-03-21","sha1":"ce25e0d18ce3b06ac7f43395380a99bfdc9039f9","md5":"faa3d8bbe12c6988b4178bb56e07e6e3","mime_type":"text/plain","file_type":"ASCII text, with very long lines","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badorphan/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":283,"date":"2020-03-21","sha1":"77c5056738ee28e1f2eb5461dcfd5171c2cca8aa","md5":"ed6d2e85c3a2a7de1f35b96fe146d005","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badorphan/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":78820,"date":"2020-03-21","sha1":"52760f523fec445ad3f3d4f8a3873609322ac356","md5":"29cb2e6aafb7cbdf6e4d64494143d6bb","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Mon May 14 12:26:03 2001, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badorphan/name","type":"file","name":"name","base_name":"name","extension":"","size":22,"date":"2020-03-21","sha1":"bbc3492d4cb1e2b244ee112557b2227e5ba8d454","md5":"934a8804715897f6c2072ddab075bc67","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badprimary","type":"directory","name":"f_badprimary","base_name":"f_badprimary","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1593,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badprimary/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":883,"date":"2020-03-21","sha1":"c6df1ef0da97a3f87cbe1c72e1fdab3eaa31a29c","md5":"c45fedd160044137e376a819602aacf4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badprimary/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"19efed15a058a4c516e5fe8dced24611cf6edf91","md5":"02f362a9515eec2cc3907c7087b91243","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badprimary/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":374,"date":"2020-03-21","sha1":"91d2c92801176e85358c00cda0ffc050c29c97c0","md5":"3b6bb5e138a0878e5d5c0a97e4ae07db","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 13:46:01 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badprimary/name","type":"file","name":"name","base_name":"name","extension":"","size":59,"date":"2020-03-21","sha1":"8535c1ba27bed06416e0d9d5ff74f2300cb37cef","md5":"580f9e9464dea922013c997131b85998","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badroot","type":"directory","name":"f_badroot","base_name":"f_badroot","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1568,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badroot/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":783,"date":"2020-03-21","sha1":"953c737af287d36fc239b15cd825b50130d8cc75","md5":"edb5b3f1a9f4baf1dd7bf243076f2165","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badroot/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"1d896fc855c949b2e74d5406c0ab3c75380ed9f6","md5":"2ccfd196887af7363cf9c3a2d81c9139","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badroot/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":479,"date":"2020-03-21","sha1":"c5df17db71e2fbfd61b0f5d15dc7e8c5f67bddf0","md5":"9ff122f9867e5e81c13a1968143192cb","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:55 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badroot/name","type":"file","name":"name","base_name":"name","extension":"","size":29,"date":"2020-03-21","sha1":"d3313f1ce47e189540441f74aa1e46a08fd592ac","md5":"2e8eb3318dfdebd5fb77d42cdd29343c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badsymlinks","type":"directory","name":"f_badsymlinks","base_name":"f_badsymlinks","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3603,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badsymlinks/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1539,"date":"2020-03-21","sha1":"49ee68a902f19985537a627dd27d78c632e6f060","md5":"b09fb0c6a5a322f227ea376406fd688d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badsymlinks/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"2a5f10a1918497950a00c280060b2cc22c22929f","md5":"9f5426a70b9751962d115fe19e1fbb67","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badsymlinks/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1767,"date":"2020-03-21","sha1":"63cf7bce878e8ada7c8c1820b04383af31d387e0","md5":"db2221110e749187fe3688c3179e8c49","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"sav\", last modified: Fri May 17 09:28:17 2002, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badsymlinks/name","type":"file","name":"name","base_name":"name","extension":"","size":19,"date":"2020-03-21","sha1":"27fa5b27b583515591ab3a863fefbfffedda72b1","md5":"2d516bf0d16be88c21be0a16217d08a8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badsymlinks2","type":"directory","name":"f_badsymlinks2","base_name":"f_badsymlinks2","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":20252,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badsymlinks2/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":2856,"date":"2020-03-21","sha1":"87d5c49cca42056f5f699dc556334e3733512d06","md5":"73216e47a707a64378b4e134c406f26b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badsymlinks2/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"7f8734b2650ac87fb2f6de76911eecc6e8a54283","md5":"4dc17cc30e391ed89bf9f4b40af7f2f9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badsymlinks2/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":14302,"date":"2020-03-21","sha1":"2debfee70b80de93202b7fa70d4dd52e88ecccdb","md5":"691b311b8071c5e9bc167e25068f54f0","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sat Mar 03 00:27:53 2018, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badsymlinks2/mkimage.sh","type":"file","name":"mkimage.sh","base_name":"mkimage","extension":".sh","size":2784,"date":"2020-03-21","sha1":"ad0fe6edc03268d956afb0dd44bc61424124d97b","md5":"ab960bc8eb27e8327ef2c36a8d24ee87","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badsymlinks2/name","type":"file","name":"name","base_name":"name","extension":"","size":33,"date":"2020-03-21","sha1":"5ab5965d5ca167b4b0be944cf2e03c00a2e8267d","md5":"4d2be63d707a7431795461d6b460ea8e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badtable","type":"directory","name":"f_badtable","base_name":"f_badtable","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2450,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badtable/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1148,"date":"2020-03-21","sha1":"7a80c1e1f814c9af02814b7b6c7b918f541b0497","md5":"2332a50710a0ddd119c16eea2073ac9d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badtable/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"abed1655c215ffcca5e2f2982ddb34f94f3179c0","md5":"a572590fe0279e6b051e24d1c6a5297e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badtable/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":987,"date":"2020-03-21","sha1":"1b64532018e8449b1bf45ecd83793326e93a7755","md5":"b37a99fe449df091a82c2803f07c7bc1","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:55 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_badtable/name","type":"file","name":"name","base_name":"name","extension":"","size":38,"date":"2020-03-21","sha1":"0d5c4177080e72b29ca46cae8a235399d1134df4","md5":"9162769e56ff9cf3f4ffdf16c4823be2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bb_in_bb","type":"directory","name":"f_bb_in_bb","base_name":"f_bb_in_bb","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3261,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bb_in_bb/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":523,"date":"2020-03-21","sha1":"3b730a69ecf99d1620e43d9f734019761935f0c6","md5":"5ec7d1670fbcf7236efeb50a3e3da466","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bb_in_bb/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"0f0a2a0b561d42c462e0cffaa8197d100c2bb890","md5":"378cf72b847e8344aad118b1103e1657","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bb_in_bb/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2414,"date":"2020-03-21","sha1":"7bcf881a35ccc101b9d611f2106889f9a9bb6fd5","md5":"55e844021746ec36bf7cb228fe380747","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Sep 10 22:57:03 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bb_in_bb/name","type":"file","name":"name","base_name":"name","extension":"","size":46,"date":"2020-03-21","sha1":"7e6421601300046867ee116a08cee2b0445f0856","md5":"2d0b61eb8c7629a045cb0ec24e5ebd03","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bbfile","type":"directory","name":"f_bbfile","base_name":"f_bbfile","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":7235,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bbfile/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1743,"date":"2020-03-21","sha1":"8734cb3efa0bd6aaa44eae0b2367c9b4d4586807","md5":"602703461b309492211f39c73439c0ef","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bbfile/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"3900a7fd94915e5626defb20be9035dafbe856c8","md5":"def55e5b9c607a55069091d33471d86a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bbfile/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":5195,"date":"2020-03-21","sha1":"1ccec50365e82f70409c42e5c9e815c25a0c6e2d","md5":"8361d204d0d7f529c11498d432f06711","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:56 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bbfile/name","type":"file","name":"name","base_name":"name","extension":"","size":20,"date":"2020-03-21","sha1":"0df6d583fbf7a3c485c922ddf975b028e3c72325","md5":"d860e2f20fc361ad1890a9f234a3c7d3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bbinode","type":"directory","name":"f_bbinode","base_name":"f_bbinode","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":4223,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bbinode/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1281,"date":"2020-03-21","sha1":"e90f43053b007f5f5927f2b0986c5dc5d4bb64ce","md5":"54e8dc1407f8c582e5fea3e854bf62fe","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bbinode/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":279,"date":"2020-03-21","sha1":"d331745d80935d160488e7e506994a1539737b1e","md5":"ddb1c9e84a563aed7d2a8ee38ff09b02","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bbinode/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2637,"date":"2020-03-21","sha1":"7fb555fc868cacf764d5f878aa233dfa63b60661","md5":"926b5bbaab53e1e63e6f6afdf7f03110","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Tue Oct 15 03:46:58 1996, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bbinode/name","type":"file","name":"name","base_name":"name","extension":"","size":26,"date":"2020-03-21","sha1":"95c8ad0b4a5b3525e5ec8fb58e12b4836f842d43","md5":"397ef606fd5d8bd40916782dfbf198cb","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_big_sparse","type":"directory","name":"f_big_sparse","base_name":"f_big_sparse","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1486,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_big_sparse/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":392,"date":"2020-03-21","sha1":"2e06ad47ef44af63d5c015cb9c5891f1f6415784","md5":"25cd8b9a5f06a91d54076369ea9af794","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_big_sparse/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"16bcedb66a850acbabd5b0d67f266898a6d85332","md5":"2e2dcca78b0158e2518c558bd46fdd1a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_big_sparse/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":801,"date":"2020-03-21","sha1":"4d66108ebe29f853cbd372a91728ce3284992992","md5":"386ab3699e070110498912b49f050030","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Wed May 22 00:31:27 2002, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_big_sparse/name","type":"file","name":"name","base_name":"name","extension":"","size":16,"date":"2020-03-21","sha1":"651a5def4e254c562b6eff9956892c7918924605","md5":"e95f90daf67d524caaa4c2434960b273","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bigalloc_badinode","type":"directory","name":"f_bigalloc_badinode","base_name":"f_bigalloc_badinode","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1210,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bigalloc_badinode/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":384,"date":"2020-03-21","sha1":"539db9940c65b89290519569ec1119488c46ff73","md5":"0007519f3a6d8fa04c8d49feecaabcd4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bigalloc_badinode/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"d4b618e9ec5b6260cca2dbf6571f941cc69de1d5","md5":"798cbfe79373b3d2c8d4896215d5a8a3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bigalloc_badinode/name","type":"file","name":"name","base_name":"name","extension":"","size":51,"date":"2020-03-21","sha1":"8aaf608ee636f46249af7ce757af9bc342842dfc","md5":"28f13d38eb15cd0bd1be45474d94803b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bigalloc_badinode/script","type":"file","name":"script","base_name":"script","extension":"","size":497,"date":"2020-03-21","sha1":"a84f9dcf8672b88062219fdfbd76a47f29ff0d6f","md5":"ac6daa8d90c6c8ceec6949438a18dbd8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bigalloc_orphan_list","type":"directory","name":"f_bigalloc_orphan_list","base_name":"f_bigalloc_orphan_list","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1363,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bigalloc_orphan_list/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":398,"date":"2020-03-21","sha1":"3b6e0cd1779f86156655b8703abfb3d58a06766b","md5":"6666879f4f2667be9fcdef2dafef5cdd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bigalloc_orphan_list/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"d4b618e9ec5b6260cca2dbf6571f941cc69de1d5","md5":"798cbfe79373b3d2c8d4896215d5a8a3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bigalloc_orphan_list/name","type":"file","name":"name","base_name":"name","extension":"","size":50,"date":"2020-03-21","sha1":"f95eda36390103a87fde6098e93d9588d3de0981","md5":"830bd6f74035c2c10f0312d021586973","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bigalloc_orphan_list/script","type":"file","name":"script","base_name":"script","extension":"","size":637,"date":"2020-03-21","sha1":"ee0a1d439bc6626c6ceb155488fe0538552fd82d","md5":"7c078db2acdd6cdde07e8efad21acd6b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bigalloc_symlink_with_xattr","type":"directory","name":"f_bigalloc_symlink_with_xattr","base_name":"f_bigalloc_symlink_with_xattr","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1026,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bigalloc_symlink_with_xattr/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":278,"date":"2020-03-21","sha1":"0f5a278c7a665d9cee9dfd018f297d9b275fb9e6","md5":"92a17ea7629c930f62a7a15d86de4e77","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bigalloc_symlink_with_xattr/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":663,"date":"2020-03-21","sha1":"fca7d7702229630362a153d915866b5ed0c80ad8","md5":"d43fa0bc700b844a4fe7474d07780d24","mime_type":"application/x-gzip","file_type":"gzip compressed data, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bigalloc_symlink_with_xattr/name","type":"file","name":"name","base_name":"name","extension":"","size":42,"date":"2020-03-21","sha1":"02c6b3241746c624e68a7b06ee2e32fc3dd092a2","md5":"c7a697cb002dc5321d21e2baba5f24e9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bigalloc_symlink_with_xattr/script","type":"file","name":"script","base_name":"script","extension":"","size":43,"date":"2020-03-21","sha1":"d6198035f9abae70d4d992fa350500ba3f59baca","md5":"fa544f8ae3d6262f4f705543ad583853","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bitmaps","type":"directory","name":"f_bitmaps","base_name":"f_bitmaps","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1527,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bitmaps/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":529,"date":"2020-03-21","sha1":"b3ed690bd284cbb56ae4d3ce3b24464dfbf98b4f","md5":"6afa60422ed28a308811e3e52b52ff46","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bitmaps/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"3c03053a593391e9ee57ad01e3e80566af4a0b5f","md5":"9d887786dffa89e00642254d76a8392c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bitmaps/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":687,"date":"2020-03-21","sha1":"aa0fecc630f7caba78c38378f8bdc768b9d10cd7","md5":"b17d0becae1003b21d20dfc2a844ab2b","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:56 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_bitmaps/name","type":"file","name":"name","base_name":"name","extension":"","size":34,"date":"2020-03-21","sha1":"658abbbddac3b1eb83bf588a982bf0850c41cc5e","md5":"c74fe06ac002132ed4d6d835ceef9243","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_boundscheck","type":"directory","name":"f_boundscheck","base_name":"f_boundscheck","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":4008,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_boundscheck/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1122,"date":"2020-03-21","sha1":"7fce416d3001539e29690ebb88b750d4d6b2792a","md5":"70ac006f89f39e68cdb1fa37cf99589f","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_boundscheck/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":1122,"date":"2020-03-21","sha1":"7fce416d3001539e29690ebb88b750d4d6b2792a","md5":"70ac006f89f39e68cdb1fa37cf99589f","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_boundscheck/image.bz2","type":"file","name":"image.bz2","base_name":"image","extension":".bz2","size":986,"date":"2020-03-21","sha1":"8d852b8f5d0c936c21aecd7ab8ed54f91476b62b","md5":"f1b27d9a8ea1ff720f21ccb9a66870d6","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_boundscheck/name","type":"file","name":"name","base_name":"name","extension":"","size":44,"date":"2020-03-21","sha1":"65f3b3e9e29aa6f9a3593cc1164b85f045fcdf37","md5":"df0cea28b358ad403f560afd918f13dc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_boundscheck/script","type":"file","name":"script","base_name":"script","extension":"","size":734,"date":"2020-03-21","sha1":"51ba7e20b3f1f607e3b9b973b3a34a36223e71fc","md5":"6c8d9acdffbbd7abaf9ffbf9f54ee0a8","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_clear_xattr","type":"directory","name":"f_clear_xattr","base_name":"f_clear_xattr","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2369,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_clear_xattr/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":967,"date":"2020-03-21","sha1":"1ef17945261f51211a2ce0d1b79d438c7a2d4b51","md5":"627617f588efaeb5608a2c11e431b2a8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_clear_xattr/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"4ad6097c00a0c4ff3e170ee5e80186416c8457d8","md5":"66ceb413edba1ffa0eab270da428e8e4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_clear_xattr/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1082,"date":"2020-03-21","sha1":"741c3f94a774d1f97870ac9cce1700b3a4c422b5","md5":"5a609c550875136a6c27ec169847383b","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Thu Jan 27 19:14:52 2005, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_clear_xattr/name","type":"file","name":"name","base_name":"name","extension":"","size":43,"date":"2020-03-21","sha1":"f7596f285483e773c3558700dc378aeac8220ba0","md5":"8d6a7df01e38b19f374a8a1bf5c3b785","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_cloneblock_alloc_error","type":"directory","name":"f_cloneblock_alloc_error","base_name":"f_cloneblock_alloc_error","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5189,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_cloneblock_alloc_error/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1418,"date":"2020-03-21","sha1":"958f9e7a564a846f59b697a0c8b2049b6a59004e","md5":"1b0b18dcc06a9036460e4155da09b99b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_cloneblock_alloc_error/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":279,"date":"2020-03-21","sha1":"db84f1425c0e297947eafbd9286592da2479996f","md5":"72b9cd08256c1481c191b7050ace027a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_cloneblock_alloc_error/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3441,"date":"2020-03-21","sha1":"a17d002590a44dc6a36b7b4928efb6915164368a","md5":"989cd03a4160ace85e02c06717166617","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Jan 21 03:43:40 2015, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_cloneblock_alloc_error/name","type":"file","name":"name","base_name":"name","extension":"","size":51,"date":"2020-03-21","sha1":"a5002630fc0ff03a3bede25a61cb3dac74b7444c","md5":"82ff93e3054ba98d524d1f0ead16e56f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_collapse_extent_tree","type":"directory","name":"f_collapse_extent_tree","base_name":"f_collapse_extent_tree","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":6103,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_collapse_extent_tree/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":600,"date":"2020-03-21","sha1":"fa5578d46e4304628d60d56321591dd788744f7d","md5":"271f3600186c4911a593f2a3043f29c3","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_collapse_extent_tree/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":398,"date":"2020-03-21","sha1":"27fbb3c314cbb1957cc8b8c5258284a6702fb974","md5":"87e4034dafdc866d2227a61cac1e7190","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_collapse_extent_tree/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2537,"date":"2020-03-21","sha1":"a9fecbfc504fbd7acbbfad0a25f4d1b3e748dabb","md5":"cb3919545c40e0566592168357f5631d","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Mon Nov 03 19:57:21 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_collapse_extent_tree/name","type":"file","name":"name","base_name":"name","extension":"","size":39,"date":"2020-03-21","sha1":"8fdbd7f23ba8495394dfe15ab75a36e6914e3b34","md5":"7551a37761695605fc3e8c91a740471f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_collapse_extent_tree/script","type":"file","name":"script","base_name":"script","extension":"","size":2529,"date":"2020-03-21","sha1":"f30e537001039c35a922826d82fb81061282e259","md5":"7f57bd15de95d004ce98c3743faf9cf9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_compress_extent_tree_level","type":"directory","name":"f_compress_extent_tree_level","base_name":"f_compress_extent_tree_level","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":6857,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_compress_extent_tree_level/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":950,"date":"2020-03-21","sha1":"16ca29b8a91a2760323d393e6bbb6796c1ced2a2","md5":"090b25fd2a66f45b638c554a47816a0b","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_compress_extent_tree_level/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":747,"date":"2020-03-21","sha1":"91d3341be1e8bf739a5bf5e0a9205305be20d181","md5":"33588795915cb820467feaaa87ad416c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_compress_extent_tree_level/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2581,"date":"2020-03-21","sha1":"62131a761d052bccfb88aa947742349ed42b01ec","md5":"1f313c04d738905bc6a49096bfe85565","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Mon Nov 03 20:16:44 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_compress_extent_tree_level/name","type":"file","name":"name","base_name":"name","extension":"","size":30,"date":"2020-03-21","sha1":"df3ea929d916739b25221c8aa5b7cc39fe8f97ca","md5":"c55463f2330607cea93b9742b4e7d268","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_compress_extent_tree_level/script","type":"file","name":"script","base_name":"script","extension":"","size":2549,"date":"2020-03-21","sha1":"dc9ae43eb70bbaef7af6ab81edadc5f46fabe976","md5":"97f998f45e02ae8afdd49c95a1a9b5b7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap","type":"directory","name":"f_convert_bmap","base_name":"f_convert_bmap","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":7524,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":983,"date":"2020-03-21","sha1":"2585fe0e278b752cbc32d08c3fd2b4f3354b5b31","md5":"3bf14de5a933443f65f34dcf11d39b18","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":400,"date":"2020-03-21","sha1":"1aaab88416db583550d3ec5df6850d92d31f4989","md5":"b127dbc5c599f8109c9fc59ead88a5c1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3548,"date":"2020-03-21","sha1":"5b587f416058c0697e99a570c8d9dd4a64436e01","md5":"f37f5bc62f4e1fa9adbb429e699e3334","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Mon Nov 03 21:49:56 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap/name","type":"file","name":"name","base_name":"name","extension":"","size":38,"date":"2020-03-21","sha1":"61779b1e89ecd867e37e6655ed266492da4458b0","md5":"3f9fbe81eba75ffccc7b18f572ee3a3d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap/script","type":"file","name":"script","base_name":"script","extension":"","size":2555,"date":"2020-03-21","sha1":"e38f129254c4a54efa882ab0a5ce51177755445a","md5":"e699077a6de0efb4be0c042268f22b05","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap_and_extent","type":"directory","name":"f_convert_bmap_and_extent","base_name":"f_convert_bmap_and_extent","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":8289,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap_and_extent/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1306,"date":"2020-03-21","sha1":"83546f77bb5553009fa261998ae3a7bfacc4aef2","md5":"d782ea87b581b529340a36369c3fbfcb","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap_and_extent/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":673,"date":"2020-03-21","sha1":"19992d0199d7eb6f67430427125502f388b45366","md5":"c9f534cc0dee07fa1512399bf3e80bf3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap_and_extent/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3657,"date":"2020-03-21","sha1":"f7794cec74dcc1b343e5d529263f4f6754313ca6","md5":"419e2d269394b0009573a37394784f14","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Fri Dec 19 21:12:11 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap_and_extent/name","type":"file","name":"name","base_name":"name","extension":"","size":34,"date":"2020-03-21","sha1":"13bb9140839c14c4dee6f71cd838f17389ee0fe7","md5":"d2a7edf035139afad6071a60c0b0de7d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap_and_extent/script","type":"file","name":"script","base_name":"script","extension":"","size":2619,"date":"2020-03-21","sha1":"c6542ae4cf22000e17c83bf1a5be4fb23ce01265","md5":"9df3409d3988b025ec4aec7cd5084f30","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap_sparse","type":"directory","name":"f_convert_bmap_sparse","base_name":"f_convert_bmap_sparse","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":9534,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap_sparse/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":817,"date":"2020-03-21","sha1":"010e1f08c1d6d83deba8d107c28e5ac328f91d2b","md5":"b5f96dc3e2984c5a5e1cf43854d88493","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap_sparse/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":510,"date":"2020-03-21","sha1":"3a394891ab99aae3d491c6194c89ba39fbf9ad8f","md5":"9e96f4c56a24994eeb7739185bf98a4e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap_sparse/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":5585,"date":"2020-03-21","sha1":"bfff872ced4cdca0d59d792fbcf1f0ea85101dd3","md5":"b3a9248f24a716ead0868e55a5ee26d1","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue May 23 18:51:15 2017, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap_sparse/name","type":"file","name":"name","base_name":"name","extension":"","size":45,"date":"2020-03-21","sha1":"33a5ec739d001a27073d316afeed48258ef3a6e7","md5":"124a8ee20df2e59f74d3ef39252c89ad","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_convert_bmap_sparse/script","type":"file","name":"script","base_name":"script","extension":"","size":2577,"date":"2020-03-21","sha1":"81cbb43614477db78714eb686cff4a69899898a0","md5":"1f86168bcfa82c83a08b8edaf04f3546","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_corrupt_dirent_tail","type":"directory","name":"f_corrupt_dirent_tail","base_name":"f_corrupt_dirent_tail","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3528,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_corrupt_dirent_tail/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":517,"date":"2020-03-21","sha1":"be0ede83c4afcad8c30617328af72df5e280fbd2","md5":"f2f233895000591799b2ff76e3fecbba","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_corrupt_dirent_tail/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"39cad92be86ce618ae7b0fa85aab1e4286ca29cd","md5":"7f0ac4e1e1a8ec89332c7216190afc22","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_corrupt_dirent_tail/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2685,"date":"2020-03-21","sha1":"784a6af7200f8366309bfb966c73727a9917bb0b","md5":"7d0da7a0e921a0a49ff82a2490f2a28f","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Jun 18 22:27:32 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_corrupt_dirent_tail/name","type":"file","name":"name","base_name":"name","extension":"","size":45,"date":"2020-03-21","sha1":"67db822628c54169b0b5101fbc0be3234abf9962","md5":"532c42bb8bb700238ec103acdcc919e1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_crashdisk","type":"directory","name":"f_crashdisk","base_name":"f_crashdisk","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1933,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_crashdisk/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":815,"date":"2020-03-21","sha1":"a834c5212e964785655f204e15d22cfcf9667350","md5":"cc2b4de0a15d2c3968e01e707f312592","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_crashdisk/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1044,"date":"2020-03-21","sha1":"6a98f088a5d8e383471ca443d7f3001050e2b253","md5":"e5223773c1cf0aeaf451735150c13f45","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sun May 19 20:09:45 1996, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_crashdisk/name","type":"file","name":"name","base_name":"name","extension":"","size":31,"date":"2020-03-21","sha1":"3ceac250ad27fb001cdc7a4cfbee76e018f7a1bc","md5":"c07ae291c7005f6e141c218e4eb2d8ab","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_crashdisk/script","type":"file","name":"script","base_name":"script","extension":"","size":43,"date":"2020-03-21","sha1":"d6198035f9abae70d4d992fa350500ba3f59baca","md5":"fa544f8ae3d6262f4f705543ad583853","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_create_symlinks","type":"directory","name":"f_create_symlinks","base_name":"f_create_symlinks","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":8965,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_create_symlinks/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":7408,"date":"2020-03-21","sha1":"4350efb7ba3de5451394568ec792fa8c564947f3","md5":"b3e13e798e6f1a1ec9e3e4fa2923b3d6","mime_type":"text/plain","file_type":"ASCII text, with very long lines","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_create_symlinks/name","type":"file","name":"name","base_name":"name","extension":"","size":46,"date":"2020-03-21","sha1":"c9e5da9b5a6161e6b58783b46fc8fa757c713f28","md5":"b4c54f13b36974acb73a4a20fabb2613","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_create_symlinks/script","type":"file","name":"script","base_name":"script","extension":"","size":1511,"date":"2020-03-21","sha1":"959ec2b244af5ec7fe2b7cf7af98e471def59812","md5":"4cc626be1533a6cbd98329e5482eb113","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_del_dup_quota","type":"directory","name":"f_del_dup_quota","base_name":"f_del_dup_quota","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":4509,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_del_dup_quota/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1698,"date":"2020-03-21","sha1":"5b23bf6f7c763f928b4ce0bab717369049ebed4e","md5":"acee0caabd5e29353571a8006daf9709","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_del_dup_quota/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":283,"date":"2020-03-21","sha1":"d27dbc0dcc37d8d109dadcf87275e593ef0ee00b","md5":"5f59ad1014fca193a1d82b061216d0cd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_del_dup_quota/image.bz2","type":"file","name":"image.bz2","base_name":"image","extension":".bz2","size":1472,"date":"2020-03-21","sha1":"1e081a78e78dae3ccdb0147ac0fc8cbab3efa972","md5":"00724472d5a7aca503b7c78d5d6c5c3e","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_del_dup_quota/name","type":"file","name":"name","base_name":"name","extension":"","size":58,"date":"2020-03-21","sha1":"25b7a5d7a60c9f9d4bbf5bf328766f287eadef26","md5":"ba7a029e138726cbfc48d92c21d156b7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_del_dup_quota/script","type":"file","name":"script","base_name":"script","extension":"","size":998,"date":"2020-03-21","sha1":"3841faf3d41b0dc1240958995c03f0209f7333de","md5":"d7c61aa75aad20820fc1ae946912094a","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_deleted_inode_bad_csum","type":"directory","name":"f_deleted_inode_bad_csum","base_name":"f_deleted_inode_bad_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3404,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_deleted_inode_bad_csum/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":400,"date":"2020-03-21","sha1":"7d5df922be00c9bd784829d7cffb83c939052218","md5":"d36cd616e3fe53d4f9bedff9b3a983cb","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_deleted_inode_bad_csum/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"b67a01e8f898b31877d6badd59a9a3bb9e5aa859","md5":"f85812dcc86188f86abe07fac17f7103","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_deleted_inode_bad_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2676,"date":"2020-03-21","sha1":"2f2f6d3fa03ed63343652e359381a651fe6bef2d","md5":"f94a5efa0e9429d5ef2b248e690c4b13","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Jul 30 07:55:35 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_deleted_inode_bad_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":50,"date":"2020-03-21","sha1":"fd730daafea3395988459e73398ec73956d5079e","md5":"5d5fb5570f3abd592d265029f44e3e31","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_desc_size_128","type":"directory","name":"f_desc_size_128","base_name":"f_desc_size_128","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":12134,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_desc_size_128/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":280,"date":"2020-03-21","sha1":"6241bddc46af3b48e3b8ed99ca285a29e921bdd0","md5":"c17105296c1cd7fd9cfe19853304a12e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_desc_size_128/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":280,"date":"2020-03-21","sha1":"6241bddc46af3b48e3b8ed99ca285a29e921bdd0","md5":"c17105296c1cd7fd9cfe19853304a12e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_desc_size_128/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":11547,"date":"2020-03-21","sha1":"da8bbf8578fa38cfb88385c698e8cfb1a472bbab","md5":"1d8fd7ddfecdc9b45ba99b5753050872","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Tue Dec 17 06:27:58 2013, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_desc_size_128/name","type":"file","name":"name","base_name":"name","extension":"","size":27,"date":"2020-03-21","sha1":"11b731f09cb6aa338ff538f31ad17e30948e88e0","md5":"42da369276731fe7cbb182061aedf5c3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_desc_size_bad","type":"directory","name":"f_desc_size_bad","base_name":"f_desc_size_bad","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":1183,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_desc_size_bad/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":460,"date":"2020-03-21","sha1":"9061b8f3b7903c4341f33107b34699db3e5f6763","md5":"aa64a5ca450f20c5f33816ee06bcb232","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_desc_size_bad/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":279,"date":"2020-03-21","sha1":"b9e5a90d2f590af12694a35da597c3d9486aa40c","md5":"c5e94ea2a9979483cc612140dfc10785","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_desc_size_bad/script","type":"file","name":"script","base_name":"script","extension":"","size":444,"date":"2020-03-21","sha1":"6817b885563c93d0865c75f61dc8f33fccade84f","md5":"05489f0c354d94bd8f19b31533121039","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_detect_junk","type":"directory","name":"f_detect_junk","base_name":"f_detect_junk","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":5206,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_detect_junk/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":850,"date":"2020-03-21","sha1":"0c6e9d702ba929b60748df5eaf1c0ef528d62f4b","md5":"989a8fb4ca0dd5dbbbe703ac2165a3a5","mime_type":"text/x-diff","file_type":"diff output, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_detect_junk/expect.nodebugfs","type":"file","name":"expect.nodebugfs","base_name":"expect","extension":".nodebugfs","size":779,"date":"2020-03-21","sha1":"06408d59f5ff692f7f2d357f6d50f24eb6a0c157","md5":"a5b4719c28eaaf70615573661b3f73a9","mime_type":"text/x-diff","file_type":"diff output, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_detect_junk/image.bz2","type":"file","name":"image.bz2","base_name":"image","extension":".bz2","size":2504,"date":"2020-03-21","sha1":"4616284e6cc06f2d740daee62227bbb1188bcae8","md5":"e76245851714b43055d65815ac05cd01","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_detect_junk/name","type":"file","name":"name","base_name":"name","extension":"","size":24,"date":"2020-03-21","sha1":"1ba1be4f5dc3828492addb22e1167190e79958f9","md5":"39c403c398c33e266c865708b32adaba","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_detect_junk/script","type":"file","name":"script","base_name":"script","extension":"","size":1049,"date":"2020-03-21","sha1":"622c73bdb472cc7f7d5dbaecbc55cfed6d87c382","md5":"d1d23f38f602be9b67fa0bbafc929061","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_detect_xfs","type":"directory","name":"f_detect_xfs","base_name":"f_detect_xfs","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":3242,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_detect_xfs/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1027,"date":"2020-03-21","sha1":"a806b894944a489007a2313cfc5d11fbf578f606","md5":"50d4f620782f932d6e77b64c80ea560c","mime_type":"text/x-diff","file_type":"diff output, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_detect_xfs/expect.nodebugfs","type":"file","name":"expect.nodebugfs","base_name":"expect","extension":".nodebugfs","size":897,"date":"2020-03-21","sha1":"f836483226d30af61896243c1372a6075086c949","md5":"5b6546f7c077589895b1b041b57c15d3","mime_type":"text/x-diff","file_type":"diff output, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_detect_xfs/image.bz2","type":"file","name":"image.bz2","base_name":"image","extension":".bz2","size":450,"date":"2020-03-21","sha1":"88c614574a171f7ac95e013ff4642e73de77187c","md5":"9ce690aa7d513b76641f1233910fd338","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_detect_xfs/name","type":"file","name":"name","base_name":"name","extension":"","size":22,"date":"2020-03-21","sha1":"6ecd0097f09b9dd33b027fd88d1de8b230c2d859","md5":"5ab8645be89b77e25ce4f914708cb0b2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_detect_xfs/script","type":"file","name":"script","base_name":"script","extension":"","size":846,"date":"2020-03-21","sha1":"8c1dd3680610b95b9e149c734c9351258a8a6077","md5":"3e3b7ebddcc9d2ed44c2f4ed3d9cad6d","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dir_bad_csum","type":"directory","name":"f_dir_bad_csum","base_name":"f_dir_bad_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5153,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dir_bad_csum/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1318,"date":"2020-03-21","sha1":"368828b6dddaec105738ef0ae3b622d68838de5c","md5":"3b8341763a60095b3410c8dd40635a2e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dir_bad_csum/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"89b713741c721d51c9e7981701926e08b1ed8b37","md5":"43dc1e59ee2d1e865367b7dd66c9d236","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dir_bad_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3499,"date":"2020-03-21","sha1":"985b011cbe563dfdf092c0b5e324ed892bcb7df4","md5":"428855e2cd91dd44735b7dde5252c452","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 04:45:09 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dir_bad_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":55,"date":"2020-03-21","sha1":"b6bff7d37673caeea7a052a541619f8d0a67b110","md5":"1a4d1e88bbee7dcea1cbc0c91507f140","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dir_bad_mode","type":"directory","name":"f_dir_bad_mode","base_name":"f_dir_bad_mode","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1305,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dir_bad_mode/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":404,"date":"2020-03-21","sha1":"7d0d3b3e01a3d0404b44fb29bb0ca854d6e1e811","md5":"b5b493beb66122b7441f54acdf340312","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dir_bad_mode/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"c73934b13d1afe2909a0ca9e1e7392b4876303d5","md5":"4b3f987f4b9c11c1d619e38cbba8dfc7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dir_bad_mode/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":592,"date":"2020-03-21","sha1":"3140a64e7fa33fc996da707222c254e48c2eed58","md5":"9fce7a2cb1df76b431e571f62f960c59","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sun Apr 01 23:03:59 2007, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dir_bad_mode/name","type":"file","name":"name","base_name":"name","extension":"","size":32,"date":"2020-03-21","sha1":"6a4ca0a7a2f2080445c0718878148c8226bd1e66","md5":"abad53ae7c9be974a50be10dcca65c56","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dirlink","type":"directory","name":"f_dirlink","base_name":"f_dirlink","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1238,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dirlink/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":450,"date":"2020-03-21","sha1":"8ceb5e936783b1a6b8d6875823cdf8b251722cd4","md5":"2b274a2afd8ddef3f4758bccfa2c1b68","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dirlink/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"1d896fc855c949b2e74d5406c0ab3c75380ed9f6","md5":"2ccfd196887af7363cf9c3a2d81c9139","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dirlink/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":490,"date":"2020-03-21","sha1":"e6fef7ce8facc4468f2075f27ae49aef97e58b7d","md5":"fb9cff921e07b03bf9b79c248c2dbe1d","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:56 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dirlink/name","type":"file","name":"name","base_name":"name","extension":"","size":21,"date":"2020-03-21","sha1":"e61fb7dc6c52e6e384ef30a2fae79e2d32f8ebb7","md5":"ac63e47210e1161fde3145f10a6ff2a5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup","type":"directory","name":"f_dup","base_name":"f_dup","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5492,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1432,"date":"2020-03-21","sha1":"71b483ed03d4545a41a8876c14d6646a895dccce","md5":"4cc4ac583649aacc2d1bf28f9401aa27","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"148bca5fafa7681503ff49df1ebf417f75cca5b2","md5":"f9dbe44434745c353d645fca4c0d592a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3744,"date":"2020-03-21","sha1":"a24aa9e9cbf4a5d81f5428eaf6b4946c48adc1f6","md5":"75a67818c3cafef2c6788664c568a52c","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:56 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup/name","type":"file","name":"name","base_name":"name","extension":"","size":38,"date":"2020-03-21","sha1":"572bfda1cf58f4292a18e9e20d26b4aa8224dc11","md5":"319d71e0b834d17ea50614955fb1e753","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup2","type":"directory","name":"f_dup2","base_name":"f_dup2","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":16658,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup2/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1751,"date":"2020-03-21","sha1":"184337574b4de4e17139295730bebcec36bbb44f","md5":"d924e178e56bf0d82951f882152ce304","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup2/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"a5bd1f58a7fa30353a56f9f707fa95479e72dcaf","md5":"c5277b5c5e4ff66d62ca68a7d775c5c0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup2/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":14589,"date":"2020-03-21","sha1":"1eec808a50043dd77c56f75d1c67ed01aef481a9","md5":"c92593a4a6c68982d9fac5f424c9cbde","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:56 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup2/name","type":"file","name":"name","base_name":"name","extension":"","size":40,"date":"2020-03-21","sha1":"20714bf1f519a41b855966d2065d42cbb1042bca","md5":"20b210a58c42724fed376e55ef2da65d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup3","type":"directory","name":"f_dup3","base_name":"f_dup3","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":17250,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup3/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1572,"date":"2020-03-21","sha1":"714f4e8d2cbce0b02013b778b1257bc6bd417ccc","md5":"f008b6b513dbfeaa369f48fa9c943dfc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup3/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"a225525fc2904ea27d9e05662e14d58efae68fcd","md5":"93365a832e0c0d415b42ff953b0b8265","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup3/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":15358,"date":"2020-03-21","sha1":"202a6408f45e3354995919fcc1a98aa85b46858a","md5":"f84f94a68e1f452aac1fd1e78a6ad604","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Jun 01 16:21:56 2001, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup3/name","type":"file","name":"name","base_name":"name","extension":"","size":42,"date":"2020-03-21","sha1":"466845818647ad73757c2f5977a8b7d0f6882cc2","md5":"b480b35f8d865ab2361e3af733342c69","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup4","type":"directory","name":"f_dup4","base_name":"f_dup4","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5871,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup4/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":4384,"date":"2020-03-21","sha1":"e0c17b7ee9cd45f2a8874d3a86ebf9b5c92467ce","md5":"24553230a1a0c92e1d58304e52d28aaf","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup4/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"d426f160cc5b572bb4ef83c1561c9c361c5b5e14","md5":"64a44d42e0727b2e0f44fb69bc87fdde","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup4/name","type":"file","name":"name","base_name":"name","extension":"","size":30,"date":"2020-03-21","sha1":"339cc1a2943f6004f10cd9781a1138e8d694112f","md5":"b859e6241c5fed4b9d4845d28a1a4cd2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup4/script","type":"file","name":"script","base_name":"script","extension":"","size":1180,"date":"2020-03-21","sha1":"03b3f330e5106493c42d6c8ddb00e4028cc31fc7","md5":"4a25da322e1e8df341d9989903f95699","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_ba","type":"directory","name":"f_dup_ba","base_name":"f_dup_ba","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":7680,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_ba/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":2695,"date":"2020-03-21","sha1":"4dc2ab55f2aee5c2b3f45d66baacc7596c85c8bb","md5":"6321303d951686cf479d7547f86351b1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_ba/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":279,"date":"2020-03-21","sha1":"d4f6c1c52ae8440d2fee8f03ca85fce443a2766b","md5":"047141de333527d498fd2dac8495bc44","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_ba/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":4668,"date":"2020-03-21","sha1":"f6a93969fded9a4289ddd56ec9eadd30998185c9","md5":"4a8c62fe92465fc84bb07724cd4f3ae3","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Mon Nov 28 03:52:38 2011, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_ba/name","type":"file","name":"name","base_name":"name","extension":"","size":38,"date":"2020-03-21","sha1":"f68de874cfc453209d3ce83024d266133d659d00","md5":"3e76b3bee992f2d40250652f60ef78f4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_de","type":"directory","name":"f_dup_de","base_name":"f_dup_de","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":0,"size_count":11880,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_de/expect-nohtree.1","type":"file","name":"expect-nohtree.1","base_name":"expect-nohtree","extension":".1","size":1015,"date":"2020-03-21","sha1":"2db1342111122e8a938008de072d9896aa266682","md5":"9c06b9c79ff4a5e8663ca2e3c8474f22","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_de/expect-nohtree.2","type":"file","name":"expect-nohtree.2","base_name":"expect-nohtree","extension":".2","size":280,"date":"2020-03-21","sha1":"b2d613fc3b89d92b2baecf43c620aa419693a09e","md5":"0dcf60cd8aca71b8547c5260be54c393","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_de/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":923,"date":"2020-03-21","sha1":"7473d317fbfee28107fabe25858c06acb3d4af77","md5":"1de5640baf50e74da07158bb1ebd4fed","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_de/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":280,"date":"2020-03-21","sha1":"b2d613fc3b89d92b2baecf43c620aa419693a09e","md5":"0dcf60cd8aca71b8547c5260be54c393","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_de/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":8970,"date":"2020-03-21","sha1":"359c3c515d10efb004446838ea0fe695231a676b","md5":"7303fff662efe985ce39451e4743f618","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sat Nov 11 20:17:04 2006, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_de/name","type":"file","name":"name","base_name":"name","extension":"","size":28,"date":"2020-03-21","sha1":"210700f41805049d08e43aa3dcea064f45dba619","md5":"77f1db3267221946119fbf96e88c0fb6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_de/script","type":"file","name":"script","base_name":"script","extension":"","size":384,"date":"2020-03-21","sha1":"d7bc18d8af314ad896fccedb3e937e2efd325479","md5":"e8ac0d8db466c079f39e0bd8d2da3eaf","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_de2","type":"directory","name":"f_dup_de2","base_name":"f_dup_de2","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5698,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_de2/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":508,"date":"2020-03-21","sha1":"c12f85c585b69bea81d0ecd88e2c73576647f5cf","md5":"3f953dc5d1636eb1f4ffe86138180f3a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_de2/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"283b9e7d0c165f0fd0d745bc2c0fa085d60c4816","md5":"351edb2838615c1106b573f5bf05dce2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_de2/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":4860,"date":"2020-03-21","sha1":"d63746187c74e5c2bf5dd2b7ae18f3e9b6f1ccc9","md5":"1ba9acd3435ad56b0a69189aaa399fa8","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Tue Nov 17 02:46:21 2009, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_de2/name","type":"file","name":"name","base_name":"name","extension":"","size":49,"date":"2020-03-21","sha1":"257baec316c163b8d04cf316023e1808438d1958","md5":"1882617ed1baac84188d71cb8785d2f2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_resize","type":"directory","name":"f_dup_resize","base_name":"f_dup_resize","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2094,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_resize/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1169,"date":"2020-03-21","sha1":"5ab62a9012c423e65a002f74ffae56ab72fec3c7","md5":"ca55fb047c55e72d4b2070c806f3c772","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_resize/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"7a1dedbcf4a4581672070472caa137eec995a14e","md5":"968f8ffea7e69a0e66b7584b10d6db91","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_resize/name","type":"file","name":"name","base_name":"name","extension":"","size":53,"date":"2020-03-21","sha1":"cec52173a0b778e202317f916e40a8b9592342b0","md5":"0d50415dbd2811d7ef4caf0d484b5885","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dup_resize/script","type":"file","name":"script","base_name":"script","extension":"","size":590,"date":"2020-03-21","sha1":"3e62babe5a702599c0b090f9ade6aa47281c31f0","md5":"d0ff78b6b95465957246ba7e6f5d4917","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dupdot","type":"directory","name":"f_dupdot","base_name":"f_dupdot","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1460,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dupdot/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":599,"date":"2020-03-21","sha1":"eda07878f766c42be75d207989d28a9627dfb1c1","md5":"b98cd189d3ec26ec1fd3eb3ae6c20545","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dupdot/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"fab7293813f9695519dc255e6255baa046a4591e","md5":"668fc3d18d335e21eb14da53cf1826f3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dupdot/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":553,"date":"2020-03-21","sha1":"ba9c9c6945eab42ed01e6001bc52376ff7cb4409","md5":"4579cdee07b57f9a58d7c5a7c4c665f6","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Thu Sep 16 14:13:48 1999, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dupdot/name","type":"file","name":"name","base_name":"name","extension":"","size":31,"date":"2020-03-21","sha1":"87af5073dd6273cd4dc4d470298c72f0c4f7b9f7","md5":"39bde39905074ed5014016be6b1d99f2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dupfsblks","type":"directory","name":"f_dupfsblks","base_name":"f_dupfsblks","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2919,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dupfsblks/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":2125,"date":"2020-03-21","sha1":"71b680863a73f96b65d3b89b1a5502c62bf0019b","md5":"6920fe51ab1308e8ab27b1b52603bfd8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dupfsblks/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"32c2f7dde15029bea8dac36d380458c43e46f35d","md5":"42f486bbf4f293a2ced1744fb0b5ede6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dupfsblks/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":464,"date":"2020-03-21","sha1":"d135e4f83d2e4eb7658f9dfba05688fd972d638a","md5":"98b90ecf4f466430909aa28649a2ccc0","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Thu Aug 05 07:20:56 1999, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dupfsblks/name","type":"file","name":"name","base_name":"name","extension":"","size":53,"date":"2020-03-21","sha1":"acdc36690bf7585b46863ab1a02e7dcad8ba36fd","md5":"3eb966ecbc9b88681e1476fd5660a079","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dupsuper","type":"directory","name":"f_dupsuper","base_name":"f_dupsuper","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":6446,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dupsuper/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":950,"date":"2020-03-21","sha1":"91e050af22862a4278806088a19bb2bcdd6a7434","md5":"47b048192c6243596f246ab229ddc1cb","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dupsuper/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"f928d120144ab993d355887ed6a3cae857f67bac","md5":"3791a8647ea43f9ee4e683219ea376c4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dupsuper/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":5158,"date":"2020-03-21","sha1":"6e940e11f97b0edd325710c9ec8ee018e4d2afa2","md5":"1529e546efde4cbee129273d1ecfb5bb","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:57 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_dupsuper/name","type":"file","name":"name","base_name":"name","extension":"","size":61,"date":"2020-03-21","sha1":"4b214d31c877d2b18d5920657f52ce0b7c9ae20c","md5":"3d0e82abad3d080218f7b2ebf224664b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_bad_csum","type":"directory","name":"f_ea_bad_csum","base_name":"f_ea_bad_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":4350,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_bad_csum/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":850,"date":"2020-03-21","sha1":"f4b17057452659578a139859ba95fc4cecbcd275","md5":"79781fd3de2e8981679a2c231eea8816","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_bad_csum/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"6922c05214e849b1faa5c65bdd1e007a634ac6ff","md5":"b39f7cb882bf9c74a9f1967978d07795","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_bad_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3176,"date":"2020-03-21","sha1":"72cac2fc47a965caf782273db2bbee4d39ec57fc","md5":"2656fbd426b747cff40cb225c42742ef","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 04:30:46 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_bad_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":43,"date":"2020-03-21","sha1":"dd44e26c98574d733173f14e6c7e531fda892e4d","md5":"9ab7b8ec34b242b0c4b52d1c85cdcbd2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_checks","type":"directory","name":"f_ea_checks","base_name":"f_ea_checks","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":4085,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_checks/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1470,"date":"2020-03-21","sha1":"70d2997ccb62299ded813792490c984214eb75ef","md5":"6aafaacf6fd50edecc37957f698f3cf0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_checks/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"5c312ec16e8211432fb99c17ca4225dc76f08cb1","md5":"338933fe93daa200c6b58e853ae0eefa","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_checks/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2306,"date":"2020-03-21","sha1":"f667b3ba846c6b9cea86f5d09e78795da7b24f78","md5":"fe914ee706fc8adfaab44e41c901ff75","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image.new\", last modified: Wed Nov 14 17:13:45 2007, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_checks/name","type":"file","name":"name","base_name":"name","extension":"","size":32,"date":"2020-03-21","sha1":"9dc8c731bf64db7714245981e1e560ea9fe869b7","md5":"836f7ad84906dced45c3ca9980c9dc0f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_inode","type":"directory","name":"f_ea_inode","base_name":"f_ea_inode","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":2569,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_inode/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":904,"date":"2020-03-21","sha1":"1f99c964f657f126787338552c5e2f0a3bebdd76","md5":"2cc58b98a5a6fb0a1d4bebc95ad74792","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_inode/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":276,"date":"2020-03-21","sha1":"49bbd71a9c6284577d7fc65f04a783785693a420","md5":"c4b0afd696be18b390afa9eff1b29539","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_inode/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1389,"date":"2020-03-21","sha1":"cbff172b9dce8e68ab1c45dea68f730a77e9956f","md5":"f1c7f5bb07560348c54f947314853b6b","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"sdb-image3\", last modified: Mon Jun 26 11:49:44 2017, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_inode_self_ref","type":"directory","name":"f_ea_inode_self_ref","base_name":"f_ea_inode_self_ref","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1514,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_inode_self_ref/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":536,"date":"2020-03-21","sha1":"1877da78c1decde32b9222805c9b32bcdc133110","md5":"e339371655b522ea42223911c92a5be7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_inode_self_ref/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"9c6d8c2059465955e07c1a40fb992cad7f64fecf","md5":"b7ca8b750db3c1ddb0b4b472a922e9d4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_inode_self_ref/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":661,"date":"2020-03-21","sha1":"4612b1e56b38bc325566295380d468175c0e2e72","md5":"c3288f1517dbbf850a7ae337394820b2","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Sat Apr 07 04:06:56 2018, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_inode_self_ref/name","type":"file","name":"name","base_name":"name","extension":"","size":40,"date":"2020-03-21","sha1":"dce4e982988e502986efcb288b538b24d4f579f8","md5":"23113d9de423ede4e1e24f5410df44ca","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_value_crash","type":"directory","name":"f_ea_value_crash","base_name":"f_ea_value_crash","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3514,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_value_crash/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":565,"date":"2020-03-21","sha1":"d1580422b66124ec19040d47c56340e48f052dee","md5":"81b36dda5ff8db2d1ab6a8e110aa360c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_value_crash/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"a73150b76ba15e530dbc0c05d68fc50e47e6eede","md5":"85705201087ec9db86138088f018853b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_value_crash/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2627,"date":"2020-03-21","sha1":"d127cd5e4c392bef2feec209dfb0b2d80ecfe0f3","md5":"c103e80d3d78fab8d025694e7182dba7","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Thu Sep 11 19:58:58 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ea_value_crash/name","type":"file","name":"name","base_name":"name","extension":"","size":44,"date":"2020-03-21","sha1":"3d9a8969bebed1d55d27bf5e7b925ac09751102c","md5":"e38e2086d22d4321432eb387b2c69dd1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_emptydir","type":"directory","name":"f_emptydir","base_name":"f_emptydir","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3622,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_emptydir/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":568,"date":"2020-03-21","sha1":"c35490a08d28febb05c51303ae455efb7eb550b5","md5":"6a7c240ca24ee434ce36ece10dfee379","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_emptydir/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"3938667eb86f52fcc1ec84d88e5fa38cbcad9895","md5":"15a0956f8ef277becfacc6e77db02b80","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_emptydir/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2710,"date":"2020-03-21","sha1":"9ff04d0336b522925b3252053c9e3a275e778c6c","md5":"dc18cdeb7bfdda7a6f469a6ceb9ec898","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jun 17 06:25:40 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_emptydir/name","type":"file","name":"name","base_name":"name","extension":"","size":62,"date":"2020-03-21","sha1":"57942a1fe53780528c6b2e30e71dfc41ac5cb9b8","md5":"ba6193680b36adeb5e8dc069619fe3c7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_encrypted_lpf","type":"directory","name":"f_encrypted_lpf","base_name":"f_encrypted_lpf","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2209,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_encrypted_lpf/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":778,"date":"2020-03-21","sha1":"ea0c1e8b8fb319284a0f58bbbf0893037ca53cb9","md5":"fd54f66b0005ab05692f377c898d56ee","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_encrypted_lpf/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"5b5bde9c470af76c4d7bd6e9578e6788d4d3aa83","md5":"d3e761d2cf8bce94b84a1284953080d3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_encrypted_lpf/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1123,"date":"2020-03-21","sha1":"1d5d252c1f84d0ebaaaf9affea426f454f23a71e","md5":"146711b05f8106fcfb07d2e55893d98b","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Thu Jul 16 17:35:48 2015, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_encrypted_lpf/name","type":"file","name":"name","base_name":"name","extension":"","size":31,"date":"2020-03-21","sha1":"e22c8daf02fe0a7eaff23dc750fec17f88221ada","md5":"e45947189f6e314cdc2d01ed397ed85b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_end-bitmap","type":"directory","name":"f_end-bitmap","base_name":"f_end-bitmap","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":4616,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_end-bitmap/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":549,"date":"2020-03-21","sha1":"384e132b168281fbf916cb792b1857ea7a3c96fc","md5":"846c794eee26db772d131fa63653c973","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_end-bitmap/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"648c9f3404b44b47275d8d0425bf3cc48e9185f0","md5":"5cd3e1f50528c05a1de2ae6746194654","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_end-bitmap/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3756,"date":"2020-03-21","sha1":"e98d0a57def00cc38b2b31e6f028161a1e0ca8c0","md5":"a2551290a507efaac5c83c0dd94718e4","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:57 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_end-bitmap/name","type":"file","name":"name","base_name":"name","extension":"","size":34,"date":"2020-03-21","sha1":"018b45d7aabda4fd123981e40ba4d4c5d2cf77d1","md5":"991039d5806e39862a9471ac6c931851","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_eofblocks","type":"directory","name":"f_eofblocks","base_name":"f_eofblocks","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2106,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_eofblocks/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":436,"date":"2020-03-21","sha1":"9cd016488de71671ec7afb7423c055e48a49e934","md5":"8cf4cbe67304b981a704f326ba3e1713","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_eofblocks/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"dfe74d9a3a18a771ec531a0ffae93b6d4c0de246","md5":"294412c3ad5fe5ea28d527711753c591","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_eofblocks/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1372,"date":"2020-03-21","sha1":"995c81152696ddde5b5d8100babf87af1953a413","md5":"91ca0cc7b6aad0b747d81922f771933c","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Mon May 28 23:37:39 2012, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_eofblocks/name","type":"file","name":"name","base_name":"name","extension":"","size":20,"date":"2020-03-21","sha1":"a3c704be3c1645b14177ccea8a39f8147b9e797b","md5":"e093aff7f31cc833ad9ab18ae883a27c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_expand","type":"directory","name":"f_expand","base_name":"f_expand","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":76833,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_expand/expect.1.gz","type":"file","name":"expect.1.gz","base_name":"expect.1","extension":".gz","size":13462,"date":"2020-03-21","sha1":"230b3719797ab7ad42a6cf19ddcce687a0283294","md5":"68359607d86e047fb5924a08a488fc69","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jan 17 02:25:20 2012, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_expand/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"13aca32fe701b4a98740dbd8bbe6395fb1812bdc","md5":"ab5b2ba408864808d960be5d4e92db16","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_expand/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":63068,"date":"2020-03-21","sha1":"151139e66b26b778e47a73dd8524799852878026","md5":"473582550eb7838d56bc3205a613f295","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"test.img\", last modified: Mon Sep 06 22:13:37 1999, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_expand/name","type":"file","name":"name","base_name":"name","extension":"","size":21,"date":"2020-03-21","sha1":"ee75f22eaa92c368fa001a4eb4f6d6170a91a121","md5":"c405a4aa80a1781eb78d0cd05d80f442","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_expandroot_create_lnf","type":"directory","name":"f_expandroot_create_lnf","base_name":"f_expandroot_create_lnf","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2343,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_expandroot_create_lnf/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":399,"date":"2020-03-21","sha1":"0f3166c66690d4f54527be71fccce6ebc58f8cb5","md5":"2304bb3d35bc0cdfb4793e0b38c6e92c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_expandroot_create_lnf/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"c0f0701de54b24e4d172550daa4ab13290f36182","md5":"bb9ffab7a9e90566b5e39e3bcdfbd3ce","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_expandroot_create_lnf/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1622,"date":"2020-03-21","sha1":"1a4209c405027b5159d41bf409a622f6f5f10609","md5":"fab8f78f6ddcc9d1fe346aae536ab393","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Thu Sep 11 18:34:11 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_expandroot_create_lnf/name","type":"file","name":"name","base_name":"name","extension":"","size":44,"date":"2020-03-21","sha1":"0ff4de3c1cc288d66a0e5d2ce37060d44a56bdba","md5":"538029ff376e8f4d408916a01f60dfc7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ext_journal","type":"directory","name":"f_ext_journal","base_name":"f_ext_journal","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":0,"size_count":95306,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ext_journal/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":314,"date":"2020-03-21","sha1":"37e0225fe37431a5e2c8e6e5f45519aefb9651da","md5":"60483da953b317f8277cc2ccb4a7f0c2","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ext_journal/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"4d8c86b8c81aef6e6e126ef5c4442c432044bf2e","md5":"9fa37ee1b3c2123a70ce7cde13f6d538","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ext_journal/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":49415,"date":"2020-03-21","sha1":"1bb8ed41b45e3ee637124ac8d63d27092baaeb16","md5":"23fbd68916c33de667d99de367e8d249","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Dec 14 14:03:05 2001, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ext_journal/journal.gz","type":"file","name":"journal.gz","base_name":"journal","extension":".gz","size":45113,"date":"2020-03-21","sha1":"3f97a80531a061916018d1882008402de2e5a5ee","md5":"0f255df0e9ad573752f75d1d1e1b493d","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"journal\", last modified: Fri Dec 14 14:03:11 2001, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ext_journal/name","type":"file","name":"name","base_name":"name","extension":"","size":29,"date":"2020-03-21","sha1":"dbbd62dc8815d43a1c0e420274b8f71e40401649","md5":"8ffeaf4d5981625f3c5a825a0324da9a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ext_journal/script","type":"file","name":"script","base_name":"script","extension":"","size":154,"date":"2020-03-21","sha1":"c43ca1c056a1b45ebb599896e1f1a13274a1163d","md5":"09c46b72d171c374f19f845dfe9170e9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ext_zero_len","type":"directory","name":"f_ext_zero_len","base_name":"f_ext_zero_len","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1296,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ext_zero_len/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":419,"date":"2020-03-21","sha1":"9ad0d64533527011649851479ae3574bcfcc101c","md5":"d1fb45126258e4af6a533f0cf01cddf6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ext_zero_len/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"f9bf9cae9cf7bd6197435008efcb0b4f1a526529","md5":"283d2417f5a56d33a6546e6112f33399","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ext_zero_len/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":576,"date":"2020-03-21","sha1":"5325634cb26e2a27769c71389d9877a24e10e201","md5":"cae0c251029090704e8f452aef389de0","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sun Mar 11 20:15:01 2012, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ext_zero_len/name","type":"file","name":"name","base_name":"name","extension":"","size":24,"date":"2020-03-21","sha1":"e72e92a64dcec443d5e0183c66581de1cd792ca0","md5":"695db3f2761b28b598a58cf684103ba7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_bad_node","type":"directory","name":"f_extent_bad_node","base_name":"f_extent_bad_node","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2293,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_bad_node/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":713,"date":"2020-03-21","sha1":"70a56127c62692d8c1ed9f9203610aeae2298b67","md5":"643f15dcefffcb2f426e77db2317222e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_bad_node/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"59ebcb49922f4ec2f36bad7a8d2f3858d419f202","md5":"bbc493bdca6a0c652c8095c6f0df5352","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_bad_node/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1254,"date":"2020-03-21","sha1":"bd111d229b8f65ebb714a76da66b1f54b26dc35f","md5":"802f6deb19729b0b0713993dfffa678c","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Dec 26 03:20:37 2008, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_bad_node/name","type":"file","name":"name","base_name":"name","extension":"","size":49,"date":"2020-03-21","sha1":"c2b7c311d537ea32ddc6b12d6364dd4b429b0d44","md5":"3a6e224e413ee35301d7f7fb2805f040","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_htree","type":"directory","name":"f_extent_htree","base_name":"f_extent_htree","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":0,"size_count":4139,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_htree/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":891,"date":"2020-03-21","sha1":"c843ba22b9710ec0f116935a9597333c6c7e99ca","md5":"9d6f7c222693061108c6de5d682a597a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_htree/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":280,"date":"2020-03-21","sha1":"3526c99b0f4a0aa330f7d1b41ba2bccf3cbb7ebc","md5":"3dedff7eb06aff00c05be6ae4e314859","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_htree/expect.pre.1","type":"file","name":"expect.pre.1","base_name":"expect.pre","extension":".1","size":891,"date":"2020-03-21","sha1":"e75fdf63336285612f235bdd086daf299043f3c3","md5":"a8d49a62f9635f77712338f1821b1362","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_htree/expect.pre.2","type":"file","name":"expect.pre.2","base_name":"expect.pre","extension":".2","size":280,"date":"2020-03-21","sha1":"7de4fc0344288cd5cc4775b97fb1ed6ed75fedbc","md5":"d1a4a646d34397666967a73b47a5550a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_htree/name","type":"file","name":"name","base_name":"name","extension":"","size":25,"date":"2020-03-21","sha1":"77e0bd25beb3a6615e568b005710df7a9ab30a8e","md5":"16c5c29835371bbea783cec28ce3829e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_htree/script","type":"file","name":"script","base_name":"script","extension":"","size":1772,"date":"2020-03-21","sha1":"3efed867212b879caaee59342796d6e296e67955","md5":"b4fe330884036903a875d3c5167f8dda","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_int_bad_csum","type":"directory","name":"f_extent_int_bad_csum","base_name":"f_extent_int_bad_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":7941,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_int_bad_csum/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":413,"date":"2020-03-21","sha1":"cd5a86b0686b3a59c5b4f33a9e8aa882c8150473","md5":"eeb72780a102fdabed61a8881e3603f0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_int_bad_csum/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"93490e38a8ec8143643c85352ffdf7ec3bc2e6e4","md5":"d2be1dbff534442bcbb435fb91040acb","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_int_bad_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":7202,"date":"2020-03-21","sha1":"44b9434f97fd1568c0db6af7b157bfb24035277b","md5":"421d51fa103ef2baa2e34773d7bd93db","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 03:57:27 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_int_bad_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":44,"date":"2020-03-21","sha1":"a102e0238e64aa946c0c8dcce4e6bf2dd3c2830f","md5":"7d83d8f8cee69c4d1e161651b636db21","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_int_bad_extent","type":"directory","name":"f_extent_int_bad_extent","base_name":"f_extent_int_bad_extent","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":8696,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_int_bad_extent/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1163,"date":"2020-03-21","sha1":"4b421901b6180c154f5286fb17b21b4686af9858","md5":"5575e384bcf69fa88061bf71d4f50448","mime_type":"text/plain","file_type":"ASCII text, with very long lines","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_int_bad_extent/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"cafc9a7e9303c57823b477122e4a0b7115a9cc61","md5":"3c1e68327f4132983b2ec9e7e6ae9490","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_int_bad_extent/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":7205,"date":"2020-03-21","sha1":"7518cd4058938ed8b83b60c3c94944b093a72504","md5":"a0e0889b182bd120aaa0b6b397a76ddd","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 03:57:15 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_int_bad_extent/name","type":"file","name":"name","base_name":"name","extension":"","size":46,"date":"2020-03-21","sha1":"023f8dd26a3bf761f579af2475e975d9f919121b","md5":"a4558939753c82b2ed00aeb88a328d97","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_int_bad_magic","type":"directory","name":"f_extent_int_bad_magic","base_name":"f_extent_int_bad_magic","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":10328,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_int_bad_magic/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":2790,"date":"2020-03-21","sha1":"42b174121d6982942f5015f7632ca92b21c3af84","md5":"eb212a482b4b40b8f750a375076b34f9","mime_type":"text/plain","file_type":"ASCII text, with very long lines","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_int_bad_magic/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"634fcf336bca1fb8fef8bc34fb156e3883736fa2","md5":"a4c2aa02416ae88bf0394ab63a3f0b9b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_int_bad_magic/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":7205,"date":"2020-03-21","sha1":"6b8ddb1aceaaeaf377ce0efc3af4436377ea5408","md5":"5556b51fd9526e2fa147c790c90f6a5c","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 03:56:55 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_int_bad_magic/name","type":"file","name":"name","base_name":"name","extension":"","size":52,"date":"2020-03-21","sha1":"45ff8358b317d4627513095b25faba153109b47b","md5":"d16c19e527489449d39f176114eaa547","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_interior_start_lblk","type":"directory","name":"f_extent_interior_start_lblk","base_name":"f_extent_interior_start_lblk","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1368,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_interior_start_lblk/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":444,"date":"2020-03-21","sha1":"ea9ca366c3120a1b79f3740fbd26f9057d77291e","md5":"e41068ebc3b9215228477d010f33f31f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_interior_start_lblk/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"b9fa989d972d669266098e5cc7ae477e3e2a7b8b","md5":"3190d5f7afd8d8b52813b411392402d1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_interior_start_lblk/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":603,"date":"2020-03-21","sha1":"b7545eace7d2586edc67c30f087dd2ee77c817fa","md5":"deac51daa799d9577d733fd354620e83","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Dec 21 02:45:03 2012, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_interior_start_lblk/name","type":"file","name":"name","base_name":"name","extension":"","size":44,"date":"2020-03-21","sha1":"6a23d3e1d2ad02547ca445571664e959829a1ed7","md5":"45b0b933e96c19cdcc44725162174e76","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_leaf_bad_csum","type":"directory","name":"f_extent_leaf_bad_csum","base_name":"f_extent_leaf_bad_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5738,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_leaf_bad_csum/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":411,"date":"2020-03-21","sha1":"3de2e13df6f7f3cb030bfbb3abaa493f34a3b53c","md5":"ea1c7c1b3ab362412801671b2d2f1ef4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_leaf_bad_csum/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"445ff0e8154a98aa3663710a925029049fcc4b06","md5":"5127bfd2eafc885c57a81f6c2bd03a09","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_leaf_bad_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":5005,"date":"2020-03-21","sha1":"5eae736d436b799ffd81d774cdff05f94ce700d4","md5":"13e405eab5d78639fec5eade4cf605b7","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 03:10:49 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_leaf_bad_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":40,"date":"2020-03-21","sha1":"0d8d62c4e3e0a6dd242f449456e9c4297e7d7f5b","md5":"3b15c4f78a38edbaa557a0d4161280f3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_leaf_bad_extent","type":"directory","name":"f_extent_leaf_bad_extent","base_name":"f_extent_leaf_bad_extent","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5985,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_leaf_bad_extent/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":653,"date":"2020-03-21","sha1":"7123cb9edbc4c94293ee1f671a39d732fd74f73e","md5":"f18b55b5b69c37aa311712bf7b82d695","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_leaf_bad_extent/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"ee3cbc6dee372951d69d6b20821389745d13b12e","md5":"2c0aef487d917582aefe6a8bc77516b4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_leaf_bad_extent/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":5008,"date":"2020-03-21","sha1":"2d53843c5b05a206a371de5588d5fd21516ee1ab","md5":"20f24ea0cb4d4ee0d817b676bb7bbbe4","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 03:20:32 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_leaf_bad_extent/name","type":"file","name":"name","base_name":"name","extension":"","size":42,"date":"2020-03-21","sha1":"8f7ab75c3a59fcbc6aa638a11ce8762c8d62f9db","md5":"3c115718290359853d4e19fe25e8bbd0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_leaf_bad_magic","type":"directory","name":"f_extent_leaf_bad_magic","base_name":"f_extent_leaf_bad_magic","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":6066,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_leaf_bad_magic/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":729,"date":"2020-03-21","sha1":"65c2826bd9dd9a96bae5512a2638fd373c71f271","md5":"b1bc62db51bf4e703203f92a29c8bf92","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_leaf_bad_magic/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"634fcf336bca1fb8fef8bc34fb156e3883736fa2","md5":"a4c2aa02416ae88bf0394ab63a3f0b9b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_leaf_bad_magic/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":5008,"date":"2020-03-21","sha1":"15494be5aef2ceaeb058b8ef349d7a3ec3829710","md5":"4eb64d3e7ecfba0e5f15cba75007012d","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 03:11:01 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_leaf_bad_magic/name","type":"file","name":"name","base_name":"name","extension":"","size":48,"date":"2020-03-21","sha1":"29fc61bee68fa98c379c9650bbd5e374519744de","md5":"59aef448b24aaa0413f9b17c80278510","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_oobounds","type":"directory","name":"f_extent_oobounds","base_name":"f_extent_oobounds","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":1871,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_oobounds/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":759,"date":"2020-03-21","sha1":"dbdc6cbb6adb3edc2dda5920bcd2896c522f9fbe","md5":"4cdbaa61f9774eabc907120223f26a6a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_oobounds/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"228245366bed24910cb32f0a7ba5733348db5d2b","md5":"73ff452d6825698e0880f8a5c5615207","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_oobounds/script","type":"file","name":"script","base_name":"script","extension":"","size":835,"date":"2020-03-21","sha1":"6dcd9a77b03141044df1333b7c2b7d5b5b114ed0","md5":"fe3efd7109c8b3bb4e9022ac592a999e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_too_deep","type":"directory","name":"f_extent_too_deep","base_name":"f_extent_too_deep","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":6433,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_too_deep/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":898,"date":"2020-03-21","sha1":"1a5217d0762c131dbd9034a1acd2ff5227c77097","md5":"f6f6f249d8ed0d95bf1466f15ed01b23","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_too_deep/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":398,"date":"2020-03-21","sha1":"27fbb3c314cbb1957cc8b8c5258284a6702fb974","md5":"87e4034dafdc866d2227a61cac1e7190","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_too_deep/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2592,"date":"2020-03-21","sha1":"8bf032b722d52c310867f73b4a0e2148e628d2bd","md5":"0bcb6cf37c9711ee77270acd9ff137ba","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Mon Nov 03 19:06:51 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_too_deep/name","type":"file","name":"name","base_name":"name","extension":"","size":42,"date":"2020-03-21","sha1":"2b27bdd4e6bb3beadc6ffede0782cc04c602ee13","md5":"ff4ba9f627d72feac15195759acaf2f0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extent_too_deep/script","type":"file","name":"script","base_name":"script","extension":"","size":2503,"date":"2020-03-21","sha1":"76e68ce1cb18980a6ce2be3ccad0d3411d5a52f4","md5":"c0e2b1f737076c0f0cce4f0d9cf4bb19","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extents","type":"directory","name":"f_extents","base_name":"f_extents","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":23366,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extents/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":2127,"date":"2020-03-21","sha1":"1e60683d05453d8b71f2ddd34ff2446bca82ff46","md5":"6491e2b0321d3cc6a5d4945d2525a9fa","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extents/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"cd5455e82a69b7e40158c7e3846cb7fa92f351f9","md5":"97ddee65287d84ebed04d3eb839bc67e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extents/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":20935,"date":"2020-03-21","sha1":"a222968b4103ee0f70e8fb6ec73d0d9f5fce6a8b","md5":"23e5c17c74521a985a7d7e48936130fe","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Thu May 24 07:01:12 2012, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extents/name","type":"file","name":"name","base_name":"name","extension":"","size":22,"date":"2020-03-21","sha1":"c71196e853ad9f09729dfd0386dc6aeee5836aee","md5":"82673bf82be0d5b1c7925ce0bffa7e4a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extents2","type":"directory","name":"f_extents2","base_name":"f_extents2","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":43237,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extents2/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":2265,"date":"2020-03-21","sha1":"7bf3243286dc1f38d67f879ede876d7dac7bb8b5","md5":"7e115ce7c215d0e8497785ee436c1dae","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extents2/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":279,"date":"2020-03-21","sha1":"0b907be31fcb53cdc557627520caf25d1de1f45f","md5":"d2a2e9f02a5aac3c1017d1e5182e8e16","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extents2/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":40632,"date":"2020-03-21","sha1":"0592c19c6e514c706f8e6dc7d9d0006b56883c6b","md5":"3917c09ed1b4abe5f10239185672fc60","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Tue Jun 03 00:29:16 2008, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extents2/name","type":"file","name":"name","base_name":"name","extension":"","size":61,"date":"2020-03-21","sha1":"477331ddb90005a3bb985c62040144be72e6d7af","md5":"3c356d2812d47d2841a60e5498e0bd97","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extra_journal","type":"directory","name":"f_extra_journal","base_name":"f_extra_journal","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5296,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extra_journal/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":640,"date":"2020-03-21","sha1":"394bdc82df76e83561d8a9323697b50e545f57a9","md5":"fd15e17c209f8d4acf7c0d0259ddf8d1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extra_journal/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":279,"date":"2020-03-21","sha1":"40fc0ee550651ddef72be1c9a473ba7dc0822d99","md5":"5c5babb1277081f7bc72d7920321b533","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extra_journal/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":4320,"date":"2020-03-21","sha1":"c911ca18e94f01c77ba769d6e48632c3c94452f3","md5":"bbe0864f7870fc3a77d6027ee1ceebc1","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Thu Mar 07 08:03:21 2002, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_extra_journal/name","type":"file","name":"name","base_name":"name","extension":"","size":57,"date":"2020-03-21","sha1":"a8ee152356233821deebb817892f1649d9d7ab1e","md5":"acc13bf845305573e0622dbc25c12b30","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_fast_symlink_extents","type":"directory","name":"f_fast_symlink_extents","base_name":"f_fast_symlink_extents","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1254,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_fast_symlink_extents/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":377,"date":"2020-03-21","sha1":"148f280fea5f0d708c4f82fbd6a2c14b956bffe6","md5":"6b71c8069b01e3dc6382b8f9d5bca3d1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_fast_symlink_extents/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"f3cfdb0a4c98dff37d82e48c2357095d64f90496","md5":"3da0004035536730e35454f3f4feea3a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_fast_symlink_extents/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":565,"date":"2020-03-21","sha1":"162b10359f1b383c8a9f6a9b4d3c1622b8929d97","md5":"f30323e4eec2e4d2c812b900be06a4e4","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Mon Mar 24 12:15:15 2008, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_fast_symlink_extents/name","type":"file","name":"name","base_name":"name","extension":"","size":35,"date":"2020-03-21","sha1":"1073c15ba0d4392059c51ff701cc55747a5c7718","md5":"f6e972f5d2fefc57e5e14d552a1b26f4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_file_acl_high","type":"directory","name":"f_file_acl_high","base_name":"f_file_acl_high","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1597,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_file_acl_high/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":398,"date":"2020-03-21","sha1":"ef3015757dfcddcb0b951f0a6b2202fca981e408","md5":"02b7d0c2a7cc111e4a8d3ff6d5696b64","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_file_acl_high/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"227dd91c4e11b67bd1e71588eb073deaa2bb7a9d","md5":"3468b3e62294ec020b443382cdeea986","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_file_acl_high/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":891,"date":"2020-03-21","sha1":"d07cce7110624cc2f3813a5f9636f5ea2e2abd68","md5":"842aa3da3c00e3e5c533dcbb753321f3","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Apr 24 01:29:20 2009, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_file_acl_high/name","type":"file","name":"name","base_name":"name","extension":"","size":31,"date":"2020-03-21","sha1":"81d471501c120d10b7bfae8b399cef3726ec42c9","md5":"84c919b5063e08d10048064f76f2f81e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_filetype","type":"directory","name":"f_filetype","base_name":"f_filetype","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2678,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_filetype/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1704,"date":"2020-03-21","sha1":"f56d85fea9a90ff728e3bfdcb0dd1d001b718f4e","md5":"ba8104cc68e24003bd529122f0f86d33","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_filetype/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"1056fc7c1596418c7df5a2c867a255efa2247597","md5":"79163a1ad4de986c7e9525e00536782b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_filetype/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":646,"date":"2020-03-21","sha1":"c57cf94f54da461e9da289c7c886db6f68a2f1ec","md5":"99a4a252bf40058d43f927141bbc2104","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Wed Nov 10 13:03:53 1999, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_filetype/name","type":"file","name":"name","base_name":"name","extension":"","size":51,"date":"2020-03-21","sha1":"48bb7f2b8f9f98c440d128de85a6c72364749639","md5":"6487d1f1e8bb5a014043dbf19c660bd0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_first_meta_bg_too_big","type":"directory","name":"f_first_meta_bg_too_big","base_name":"f_first_meta_bg_too_big","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1383,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_first_meta_bg_too_big/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":544,"date":"2020-03-21","sha1":"6425a4f67ee13108013aa2ac83c87cf2f74a687e","md5":"263abd366b095e5c83abeec17a7b7c79","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_first_meta_bg_too_big/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"ab0e0cdb25b716bc6e84d38e433547429b369fdf","md5":"091b912057d670e533b9806eca92476e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_first_meta_bg_too_big/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":533,"date":"2020-03-21","sha1":"01b632e48f0cde4fc50da202cc870f26ef4f5731","md5":"2aa889d51341c813591d6e49f920652b","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sat Aug 09 16:35:22 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_first_meta_bg_too_big/name","type":"file","name":"name","base_name":"name","extension":"","size":29,"date":"2020-03-21","sha1":"8674e0895ade03ea9000e5f5337d5061aeadca14","md5":"d0cd0b2fd06ca0a52fa36784b5a3bca2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_full_bg","type":"directory","name":"f_full_bg","base_name":"f_full_bg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2458,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_full_bg/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":280,"date":"2020-03-21","sha1":"a199ec95fe10be87c84a79a461ab79e44b614c1e","md5":"d3a715e986374f18cc07d8c0067469d7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_full_bg/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":280,"date":"2020-03-21","sha1":"a199ec95fe10be87c84a79a461ab79e44b614c1e","md5":"d3a715e986374f18cc07d8c0067469d7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_full_bg/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1860,"date":"2020-03-21","sha1":"c21a4ac2d2fe3d2e8735acc155892d19b56ae00b","md5":"2adea8c32cb0924e104d8fe6483ad29a","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sun Jul 22 19:50:05 2007, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_full_bg/name","type":"file","name":"name","base_name":"name","extension":"","size":38,"date":"2020-03-21","sha1":"81267aec12d3f501be2b367c3d14ae5f6dcae04d","md5":"0de57f01635fca45adfc68347b2cc3e9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_badnode","type":"directory","name":"f_h_badnode","base_name":"f_h_badnode","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":468622,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_badnode/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":859,"date":"2020-03-21","sha1":"a1472c77187e549d43368fa594956e487e8e714f","md5":"563601a65427f85ee06e63a2a178c46c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_badnode/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":289,"date":"2020-03-21","sha1":"f5aa1479dac264d72dcc9e181f7bbd051e36f58e","md5":"66efb4d7e24ff8d446d44b08ab8b7208","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_badnode/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":467331,"date":"2020-03-21","sha1":"11f324673fbfc108c4da83f45df2ab4ddc80982c","md5":"8dcea66212a64c253f068af2efaa1b77","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sat Nov 11 20:17:26 2006, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_badnode/name","type":"file","name":"name","base_name":"name","extension":"","size":36,"date":"2020-03-21","sha1":"512d231004575465cc48c43e75a5fc898b202366","md5":"692ea3a6b3a35f65dfc44432d1d14261","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_badnode/script","type":"file","name":"script","base_name":"script","extension":"","size":107,"date":"2020-03-21","sha1":"a2946843d18f60802e2202da1cb91fd6afb75b19","md5":"81d01d6031dab14866ed3b7176ab5e96","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_badroot","type":"directory","name":"f_h_badroot","base_name":"f_h_badroot","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":44927,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_badroot/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1346,"date":"2020-03-21","sha1":"11376e11b99038d0059b7fa6e971ca5daaff07d3","md5":"31281e0c1c5ae8e7ef14c8d5afe21514","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_badroot/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":288,"date":"2020-03-21","sha1":"b1df961736baf1812e4e0d3f8586327de3cdbbf3","md5":"5d7339d5da95ff0765b09a15d4520cb9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_badroot/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":43165,"date":"2020-03-21","sha1":"282fc3c846a23b896f6168d2a1682e6dfb20bdfc","md5":"e03b4c3afa372e2204ffc7766abd1951","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sat Nov 11 20:17:49 2006, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_badroot/name","type":"file","name":"name","base_name":"name","extension":"","size":21,"date":"2020-03-21","sha1":"f4d355cc3d8545d7a16f53c4b57952698d4fe97d","md5":"64fb6893385d4a6bba58b17c55847bd0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_badroot/script","type":"file","name":"script","base_name":"script","extension":"","size":107,"date":"2020-03-21","sha1":"a2946843d18f60802e2202da1cb91fd6afb75b19","md5":"81d01d6031dab14866ed3b7176ab5e96","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_normal","type":"directory","name":"f_h_normal","base_name":"f_h_normal","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":455564,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_normal/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":289,"date":"2020-03-21","sha1":"63c47097a282438ea401fc7c393590d4dc028460","md5":"84725db60c418a3c6769f66e9269b882","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_normal/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":289,"date":"2020-03-21","sha1":"63c47097a282438ea401fc7c393590d4dc028460","md5":"84725db60c418a3c6769f66e9269b882","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_normal/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":454847,"date":"2020-03-21","sha1":"dc76ed5982e8418413736fac58b9c1d45c2b01bb","md5":"4fea2c4b05f7dee4669766c6d63d1e1a","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sun Nov 12 01:04:53 2006, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_normal/name","type":"file","name":"name","base_name":"name","extension":"","size":32,"date":"2020-03-21","sha1":"943d1d293f19315fface1601d63e32509abb9120","md5":"1c0f2cb0547e38e9cc2365112fbaa644","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_normal/script","type":"file","name":"script","base_name":"script","extension":"","size":107,"date":"2020-03-21","sha1":"a2946843d18f60802e2202da1cb91fd6afb75b19","md5":"81d01d6031dab14866ed3b7176ab5e96","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_reindex","type":"directory","name":"f_h_reindex","base_name":"f_h_reindex","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":686076,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_reindex/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":64377,"date":"2020-03-21","sha1":"3623cda42872068c9b67076b6707f0a36c52f322","md5":"97b7c73f924d0b471eb19a410c8f550e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_reindex/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":286,"date":"2020-03-21","sha1":"ccdcd40837a7c47c021e32826262f028efdb6c4c","md5":"6d9cfe2a1a92004d26de28ffd9288450","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_reindex/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":621257,"date":"2020-03-21","sha1":"752adceebd31df86410ed8daafdaae1274a9c768","md5":"f58a3f27fe26a8bb71aeca3333e81a53","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sat Nov 11 20:18:27 2006, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_reindex/name","type":"file","name":"name","base_name":"name","extension":"","size":49,"date":"2020-03-21","sha1":"2acd87dde2ad4613fd13014212b7501ffdf570ee","md5":"780962018cf9eb27575298e6d6eb1d08","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_reindex/script","type":"file","name":"script","base_name":"script","extension":"","size":107,"date":"2020-03-21","sha1":"a2946843d18f60802e2202da1cb91fd6afb75b19","md5":"81d01d6031dab14866ed3b7176ab5e96","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_unsigned","type":"directory","name":"f_h_unsigned","base_name":"f_h_unsigned","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":455623,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_unsigned/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":289,"date":"2020-03-21","sha1":"63c47097a282438ea401fc7c393590d4dc028460","md5":"84725db60c418a3c6769f66e9269b882","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_unsigned/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":289,"date":"2020-03-21","sha1":"63c47097a282438ea401fc7c393590d4dc028460","md5":"84725db60c418a3c6769f66e9269b882","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_unsigned/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":454913,"date":"2020-03-21","sha1":"9b48812e12faa1b5b1393f0afc637529cc777683","md5":"73ab3363fe64e6e2a122755266e55f10","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sun Nov 12 00:43:20 2006, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_unsigned/name","type":"file","name":"name","base_name":"name","extension":"","size":25,"date":"2020-03-21","sha1":"3851fa32639d3498ae90255eb6844104574625d0","md5":"6eece03790aa158a4c8d6361ba76b716","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_h_unsigned/script","type":"file","name":"script","base_name":"script","extension":"","size":107,"date":"2020-03-21","sha1":"a2946843d18f60802e2202da1cb91fd6afb75b19","md5":"81d01d6031dab14866ed3b7176ab5e96","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir","type":"directory","name":"f_holedir","base_name":"f_holedir","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1586,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":924,"date":"2020-03-21","sha1":"aee0c325282f605b57b96fc8cdc5a35dcc638c0e","md5":"747a4b484ac8042e4d6a5f4759560192","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"17ae5f4495b41d12d82843353e47a39503352f9f","md5":"74e72de0a721ce816ce67aa4ea3e4ed5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":345,"date":"2020-03-21","sha1":"f952632e5c40661e8965243bea3f327bc8f6515f","md5":"fdbf708866809735d79921a89f440685","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:57 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir/name","type":"file","name":"name","base_name":"name","extension":"","size":40,"date":"2020-03-21","sha1":"12cbb582b6bd26287ada084caa2559866317c116","md5":"0d26313e5832170263257784304a23d6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir2","type":"directory","name":"f_holedir2","base_name":"f_holedir2","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1581,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir2/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":652,"date":"2020-03-21","sha1":"c8a036e7284ffeef63cf69eacfbf7234a2323859","md5":"1b036041ee3f36d1e0ae99d243ee7fe8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir2/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"9cf12a255b8cbf597130d960cc5bf011412d7957","md5":"0e95c9c75692f87b69755730938c0e45","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir2/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":612,"date":"2020-03-21","sha1":"55aeb2f4b490cdfc6b42aa500ae7b90a944cccf9","md5":"c0ff63117a654625afcd162fc3719b8a","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sun Nov 29 06:18:53 2009, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir2/name","type":"file","name":"name","base_name":"name","extension":"","size":40,"date":"2020-03-21","sha1":"3989e5376f00c91b0d53eb37cf793c9804886b8d","md5":"94ccaa3a61eb7feaf4cb5197a7a11b68","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir3","type":"directory","name":"f_holedir3","base_name":"f_holedir3","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":4472,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir3/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":446,"date":"2020-03-21","sha1":"ee54af55fd8234f5ac2e7d082b3d3f5e5f397e67","md5":"198a30e276f5333ab469a0a3a2dc0d73","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir3/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"f34ab7790993f2c6e04c8d4eb65dfc129a4d8e5f","md5":"e86520ae316359995132289c43b1d13a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir3/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3700,"date":"2020-03-21","sha1":"1c9830dd1e27b0f2a39de0523d2704bba8980abe","md5":"216a9876361499a6d1213eb03f5a2408","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jun 17 05:46:28 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir3/name","type":"file","name":"name","base_name":"name","extension":"","size":45,"date":"2020-03-21","sha1":"9ab70f076d901608f10b56b92122e4d4d2a47e61","md5":"096df096d4a30c32ccad2ac89ab093c6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir4","type":"directory","name":"f_holedir4","base_name":"f_holedir4","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5120,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir4/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":2139,"date":"2020-03-21","sha1":"18fd152c8bfbf90a8ac677a7ced0f400e52a4791","md5":"f39437a4cabc796f8c0828b1b97d8f9f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir4/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":384,"date":"2020-03-21","sha1":"2674bd38ce8a58eb1f44b62b356419e42dafc5c9","md5":"3e05dfda11475a4ab4c91a95355b93fd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir4/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2535,"date":"2020-03-21","sha1":"4d08fd6283ae67ebf7a418eb8be128eb053fd00c","md5":"c359fbcb10029aa5ad2bfd22d7dfdb24","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Fri Sep 12 18:40:44 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_holedir4/name","type":"file","name":"name","base_name":"name","extension":"","size":62,"date":"2020-03-21","sha1":"b2171683260025e9e3574788a89e924ff55d58d1","md5":"98fc8baf9b90a790bbf296e623f30762","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_htree_bad_csum","type":"directory","name":"f_htree_bad_csum","base_name":"f_htree_bad_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":6676,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_htree_bad_csum/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":877,"date":"2020-03-21","sha1":"ed3e3b7ee1252bfa32d57ae561786287c56b40ce","md5":"201358748b238482c1b5c62c701516a7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_htree_bad_csum/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"d21f7d0f8239f2a60bad3b5c033f346a22612fb7","md5":"0815465b75a05735d87b364f1f7418d6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_htree_bad_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":5462,"date":"2020-03-21","sha1":"c5e7dbd488659b94bc3996bb7efa1dc8a77afd14","md5":"fb62178022c0a381cfa9746d20e0fcd0","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 05:00:53 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_htree_bad_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":56,"date":"2020-03-21","sha1":"57b9662f6a5f8c57227d36592d1abd6b49116d13","md5":"a68e63c9f7468a17f515efd565caf3ca","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_htree_leaf_csum","type":"directory","name":"f_htree_leaf_csum","base_name":"f_htree_leaf_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":16629,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_htree_leaf_csum/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":415,"date":"2020-03-21","sha1":"ddaa8beebf1211eac5c025070f9638f64c47962b","md5":"85d477bbda6f1f4baaa185c30e59cd40","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_htree_leaf_csum/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":279,"date":"2020-03-21","sha1":"0c7b30597899a83b6c654678ab3486370c491e22","md5":"a87221b07f921f40c040e94257f74f51","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_htree_leaf_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":15906,"date":"2020-03-21","sha1":"00fc1e9453e23018e32ae78044f643bdd6a9ed6c","md5":"3997181f1983b3868c926a51eeee237b","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Thu Jun 11 08:21:01 2015, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_htree_leaf_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":29,"date":"2020-03-21","sha1":"95602902997d63659d4b632310c7a8ffe298d98f","md5":"c5da15efbe47c4e4e7eb8b2c4e3267dc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_hugedir_blocks","type":"directory","name":"f_hugedir_blocks","base_name":"f_hugedir_blocks","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3209,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_hugedir_blocks/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":380,"date":"2020-03-21","sha1":"4b2fb4e061d67d2fc1dafe50980cbbec92766c54","md5":"fd7e8a5bb9db52ca92152e6557c54c3b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_hugedir_blocks/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"57b58fc73c7023d2c2694b11302ee2fe13c44d52","md5":"469f1137e6fb6048a49311424e6ea010","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_hugedir_blocks/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2497,"date":"2020-03-21","sha1":"85776020468ba47c0f541f7acd4e5906ee739641","md5":"d430784d9c4b7c4c85744b87f4e9ab11","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Thu Jun 19 07:57:07 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_hugedir_blocks/name","type":"file","name":"name","base_name":"name","extension":"","size":54,"date":"2020-03-21","sha1":"6a69f9c194c89fae8ae5fdbd68247dc718efb433","md5":"5559cdfbfbc8ee2b57a47ce500f8866a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_hurd","type":"directory","name":"f_hurd","base_name":"f_hurd","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1091,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_hurd/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":389,"date":"2020-03-21","sha1":"da209bca62088e8e323cb102ad0a8480dd04bf02","md5":"3c9b55504ff3e2ea8daa550563e7ae8a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_hurd/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"ab0e0cdb25b716bc6e84d38e433547429b369fdf","md5":"091b912057d670e533b9806eca92476e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_hurd/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":401,"date":"2020-03-21","sha1":"e7078207f0d9692485edbbad3f31bc4347e74e68","md5":"6cea8d89b47224f4e40b2ae5245256e5","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Mon May 08 13:19:09 2000, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_hurd/name","type":"file","name":"name","base_name":"name","extension":"","size":24,"date":"2020-03-21","sha1":"9dc92b12b725058b96f9101b28464547643032e1","md5":"292fc48ca341e4b6b0462e6f938e7cb6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_idata_and_extents","type":"directory","name":"f_idata_and_extents","base_name":"f_idata_and_extents","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":4403,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_idata_and_extents/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":965,"date":"2020-03-21","sha1":"7ee80a9bf44813f32750937bee6416c2f34b05c1","md5":"7938d6ecf95e92a912e4ce136f114c13","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_idata_and_extents/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"b0fbeeb444584f9cf3251bcd35aedfce9c5522b2","md5":"4ffaa078c9788cf3afd593850faaf9d1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_idata_and_extents/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3112,"date":"2020-03-21","sha1":"2a26177bf3b1406c84845d404c827163e78766f9","md5":"0627639219f2e88ad21feeddf98e4fc5","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jun 24 18:20:10 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_idata_and_extents/name","type":"file","name":"name","base_name":"name","extension":"","size":48,"date":"2020-03-21","sha1":"ce26446a5d0142f1f6129d71ebf9c8a2389eee57","md5":"75e6114118b5a004d2cf476cc4facfb3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illbbitmap","type":"directory","name":"f_illbbitmap","base_name":"f_illbbitmap","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1644,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illbbitmap/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":989,"date":"2020-03-21","sha1":"849f32a9123a65a34515645751a99748e798efcd","md5":"4b776e3a2ed6e99ff400b519b78fc8a7","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illbbitmap/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"19efed15a058a4c516e5fe8dced24611cf6edf91","md5":"02f362a9515eec2cc3907c7087b91243","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illbbitmap/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":357,"date":"2020-03-21","sha1":"47905495f62206028379a1e2f971d69ba2ecbde3","md5":"06547b3a840d6f494f223dd340d7d638","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:57 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illbbitmap/name","type":"file","name":"name","base_name":"name","extension":"","size":21,"date":"2020-03-21","sha1":"0c2b22bb2a8ff222bae4b7067fc5d9b220ecef31","md5":"0400d8ff9e999409585927f02e78768d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illibitmap","type":"directory","name":"f_illibitmap","base_name":"f_illibitmap","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1600,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illibitmap/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":942,"date":"2020-03-21","sha1":"27eadb72602941a0d44e6622e20a16aef64b1566","md5":"032804ac947b3871de2c6dd7c6b0c5ef","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illibitmap/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"19efed15a058a4c516e5fe8dced24611cf6edf91","md5":"02f362a9515eec2cc3907c7087b91243","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illibitmap/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":360,"date":"2020-03-21","sha1":"0b1be727a4c8276bed9cd0526ecd1f08b0f756c7","md5":"31bab7235e02ba206d7c7b92faa2a328","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:57 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illibitmap/name","type":"file","name":"name","base_name":"name","extension":"","size":21,"date":"2020-03-21","sha1":"c64200fa3695bfe3078b15f6ecfd350d00335274","md5":"f9e225540a12ac16a78c5e9d4dd7e1dc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illitable","type":"directory","name":"f_illitable","base_name":"f_illitable","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2210,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illitable/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1517,"date":"2020-03-21","sha1":"9c3d42cc94b69631782d1e68252493d65694f624","md5":"81cc9598132c8781d15024e388461603","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illitable/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"a9de376c1265c7ed9d01e1d37e3b27a286f9f99b","md5":"3c4b86ba405c41866de37e077e0d8c36","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illitable/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":396,"date":"2020-03-21","sha1":"4bbabb090af9f07bef6b93f292180d09309be032","md5":"c23e2fcf50d20da893dcd42215aece68","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Tue Jan 21 00:50:55 1997, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illitable/name","type":"file","name":"name","base_name":"name","extension":"","size":20,"date":"2020-03-21","sha1":"bc6d54997d0e9b679d95f21ac6669469317c5f4f","md5":"5c22937bdbb94792e8e60c692e4851bf","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illitable_flexbg","type":"directory","name":"f_illitable_flexbg","base_name":"f_illitable_flexbg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":39338,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illitable_flexbg/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":942,"date":"2020-03-21","sha1":"2bb660f9a9c36caa3676a411b68ab0a086c787e6","md5":"d6819454b3e942b9f7f2282a8f8dcc9e","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illitable_flexbg/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":283,"date":"2020-03-21","sha1":"15a8557c6f6aa6d808ba9065bf22fe198444e6cc","md5":"db5e6dcf7d1d94ff5d47256568ddd7a1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illitable_flexbg/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":38080,"date":"2020-03-21","sha1":"d0784ef3ec3f513f6728f64249125b43d7c8dec5","md5":"02849524fdc314940f73905a3bd05be1","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"bar.img\", last modified: Wed Aug 19 04:52:31 2009, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_illitable_flexbg/name","type":"file","name":"name","base_name":"name","extension":"","size":33,"date":"2020-03-21","sha1":"b3940e04b12218c56c03dee41de12f779cb9751f","md5":"251e2331082fb072b4792d95ddb020cb","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_imagic","type":"directory","name":"f_imagic","base_name":"f_imagic","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2539,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_imagic/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1078,"date":"2020-03-21","sha1":"33a299cdf20664c7789a941818f1c3dfe54af821","md5":"17e731559858f13b354fa00faf0b8e32","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_imagic/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"f69a9b3e764b340f123345d920c627fc3da8758f","md5":"3b15aa19ceab9f15468332a9b89aa888","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_imagic/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1143,"date":"2020-03-21","sha1":"f3add4e320fd3071ad68003178b9f9147831e110","md5":"294c87bc7b1fe560479482e858c5eb2a","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Wed Nov 10 06:49:32 1999, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_imagic/name","type":"file","name":"name","base_name":"name","extension":"","size":41,"date":"2020-03-21","sha1":"6ad1fb0c7f5821019b69785b8cae163886a34469","md5":"5fa8cbdceadc79a4eccc71efcc03c987","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_imagic_fs","type":"directory","name":"f_imagic_fs","base_name":"f_imagic_fs","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1308,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_imagic_fs/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":753,"date":"2020-03-21","sha1":"d51903ff6ca54b192f63ded3f32c4acc32f62b46","md5":"da21a6861df6dc0924f5f7e1bba7222d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_imagic_fs/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"f69a9b3e764b340f123345d920c627fc3da8758f","md5":"3b15aa19ceab9f15468332a9b89aa888","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_imagic_fs/name","type":"file","name":"name","base_name":"name","extension":"","size":37,"date":"2020-03-21","sha1":"8c390844acffae6e5d74af7fe2aa0a289a1a576e","md5":"26ff5d9d236c55194a386b311c9e2d7b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_imagic_fs/script","type":"file","name":"script","base_name":"script","extension":"","size":241,"date":"2020-03-21","sha1":"80604f25bea59e8f738eaf74f923e867f5676d8a","md5":"b2d80941edcae77f2c98557007602228","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ind_inode_collision","type":"directory","name":"f_ind_inode_collision","base_name":"f_ind_inode_collision","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":12286,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ind_inode_collision/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":9504,"date":"2020-03-21","sha1":"20c935bfc59608995e1b33029bd2e1e95b11c84b","md5":"3cb681e23046d3feb7b934623d478619","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ind_inode_collision/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"86105127604f0a2f57822e042683fa0b24769cee","md5":"079a37efd7dd2d8bc19b9bab5e8a629d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ind_inode_collision/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2456,"date":"2020-03-21","sha1":"9daf3ea873b72c532119c7c85da0bdca7dde6f61","md5":"4df728359a4569c2e33500bf3a0ce204","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Sat Jan 17 21:24:35 2015, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_ind_inode_collision/name","type":"file","name":"name","base_name":"name","extension":"","size":48,"date":"2020-03-21","sha1":"23e5b7ee43920bafe4f66beedfd652a1a3ec0c7c","md5":"4c78885273d9e1f93d53311117b49a67","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedata_dirblocks","type":"directory","name":"f_inlinedata_dirblocks","base_name":"f_inlinedata_dirblocks","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3633,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedata_dirblocks/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":720,"date":"2020-03-21","sha1":"6b0cade4eb337874483708059368ea52772e6116","md5":"5f40edca104ff1cf79e3a85d9a189d6c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedata_dirblocks/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"698cc61b7f375ed26eee57285a0d01a58de3e400","md5":"8969d0f1403f68130d11531be09815dc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedata_dirblocks/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2597,"date":"2020-03-21","sha1":"e4cd2df2421ce903ab6ba8df7ffabb167e8ee2c8","md5":"b1e955c9d2462ca2b0af98efc6fdc72d","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Jan 21 06:06:03 2015, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedata_dirblocks/name","type":"file","name":"name","base_name":"name","extension":"","size":38,"date":"2020-03-21","sha1":"b89b2231543a8e4b67a20970148c510db5441235","md5":"e37f6cef116dc7c13a282e102038a9ea","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedata_flags","type":"directory","name":"f_inlinedata_flags","base_name":"f_inlinedata_flags","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":12267,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedata_flags/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":726,"date":"2020-03-21","sha1":"f7487dcc1dd93237873241b20304b06df4625123","md5":"20a1f751aba97290fa8879d2573b9988","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedata_flags/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"e43e1c31c18065e9c1841edaf7a34316f5535d45","md5":"c14565425fe2be726d10a36f4b1ea7ea","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedata_flags/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":11226,"date":"2020-03-21","sha1":"54adf4b7bdf63f7a47752f600ba9b9e7333f6ac6","md5":"4460d4ea08f20f496e6b05113874383d","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Tue Nov 13 04:21:15 2018, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedata_flags/name","type":"file","name":"name","base_name":"name","extension":"","size":34,"date":"2020-03-21","sha1":"76f395bccb515b7553933ed1f5eccc05ac2b4a0b","md5":"3b3f780f20d09d5a4085af458e789bb7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedata_repair","type":"directory","name":"f_inlinedata_repair","base_name":"f_inlinedata_repair","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":4978,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedata_repair/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1466,"date":"2020-03-21","sha1":"920444e6995b5368a570a3ede2fda69748a9555e","md5":"aff7bd37d7d974ed30e7727df587f033","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedata_repair/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"6f276010892dc00d87e66e7a10610f47fe820d0d","md5":"865cb03e0ae2e67b463f1d2900bc93d8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedata_repair/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3201,"date":"2020-03-21","sha1":"81d6a1bee4199665e2bc3d411b43b49e95aa7322","md5":"03c590cf7bbac06a8c02d3b1b2f5c5a0","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Thu Jul 31 01:37:13 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedata_repair/name","type":"file","name":"name","base_name":"name","extension":"","size":33,"date":"2020-03-21","sha1":"f3329335d494dbcf127f4da983cb882bb094b837","md5":"4d44f058bd79c1299bb3427031cfd10f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedir_detector","type":"directory","name":"f_inlinedir_detector","base_name":"f_inlinedir_detector","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3598,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedir_detector/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":651,"date":"2020-03-21","sha1":"d09835263adc12ed0bb35f2ea7eb5422eca7361a","md5":"6e6ebddd5c494cb259d00ede775f1ae6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedir_detector/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"a73150b76ba15e530dbc0c05d68fc50e47e6eede","md5":"85705201087ec9db86138088f018853b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedir_detector/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2640,"date":"2020-03-21","sha1":"c5af83d2d263ee64def71aa9be6b417df7767b09","md5":"65078aac47416acccd890f412619e489","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Jan 21 07:14:14 2015, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inlinedir_detector/name","type":"file","name":"name","base_name":"name","extension":"","size":29,"date":"2020-03-21","sha1":"03ab6e550dcde629bdca5de8f30f781bbf6f8cbe","md5":"2110f687dacaecba22339a0c71814832","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inode_ea_collision","type":"directory","name":"f_inode_ea_collision","base_name":"f_inode_ea_collision","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3470,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inode_ea_collision/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":558,"date":"2020-03-21","sha1":"0b6d1115a9df70e79850c8e2253c2eaf4a89894d","md5":"5625194aa320f591d1a49e320de01969","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inode_ea_collision/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"1ec80efa358c5383197ea20024dca49f0dc0c390","md5":"5e631b3fb1c780f0cfe35913130647b9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inode_ea_collision/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2602,"date":"2020-03-21","sha1":"5cca42a4090ed06218774e46717e4292aa597f42","md5":"86816fd81cde396beff4e1b60d53078f","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Thu Jul 31 00:28:20 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_inode_ea_collision/name","type":"file","name":"name","base_name":"name","extension":"","size":32,"date":"2020-03-21","sha1":"4d25e7ae52fc97e21a697dc28a98e66c38ec21c2","md5":"759e7ba002aa028ce8e63678c0cb354a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_invalid_bad_inode","type":"directory","name":"f_invalid_bad_inode","base_name":"f_invalid_bad_inode","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1303,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_invalid_bad_inode/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":377,"date":"2020-03-21","sha1":"f513d3b1832e0ec437dfdd005a48f05993b7c49b","md5":"1786ff331a033145f6dac4a1d075b53b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_invalid_bad_inode/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"0ae083055fa89c4df1aa9e22514ba074ee790c74","md5":"4e2899a1fe0ece04788fd54ee31aef1f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_invalid_bad_inode/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":623,"date":"2020-03-21","sha1":"4a83957dcdd0a9fa6b650056015e4f4bb9b5bcff","md5":"a7b14efcf1651cdeb22df0c959506bfb","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Wed Sep 28 19:07:30 2011, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_invalid_bad_inode/name","type":"file","name":"name","base_name":"name","extension":"","size":26,"date":"2020-03-21","sha1":"b7d97c3e3df2d3a6f77de35e5b1f3b961f3293e3","md5":"e21a1ceeaad1b6e7e078a319985fb0d5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_invalid_extent_symlink","type":"directory","name":"f_invalid_extent_symlink","base_name":"f_invalid_extent_symlink","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1806,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_invalid_extent_symlink/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":376,"date":"2020-03-21","sha1":"0e86f62172ccc34c0550e9272e086f893dd9117d","md5":"472c24a60391b75ee629d678035511b2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_invalid_extent_symlink/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"0ae083055fa89c4df1aa9e22514ba074ee790c74","md5":"4e2899a1fe0ece04788fd54ee31aef1f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_invalid_extent_symlink/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1115,"date":"2020-03-21","sha1":"05497e8e1f932c4e4393367b3029864942b96df8","md5":"88d7844c66689600fac98401d1898c5c","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Mon Jul 29 01:14:13 2013, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_invalid_extent_symlink/name","type":"file","name":"name","base_name":"name","extension":"","size":38,"date":"2020-03-21","sha1":"285fcfe6b7e72a07eb49441afc3efa6b210dd49c","md5":"0516f65444243a0a97c0d424d22c796c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_itable_collision","type":"directory","name":"f_itable_collision","base_name":"f_itable_collision","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":7834,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_itable_collision/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":3749,"date":"2020-03-21","sha1":"b7f2695485e4512814e32360a37e8f99124f6f8d","md5":"a21c9aacc6008bccdf6ca50dda1e8592","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_itable_collision/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"ac2ff7f5e527b95d426c08ffc0065dcc4a42d1a6","md5":"5b8ed40a2840815360888ce3fd8008d9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_itable_collision/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2817,"date":"2020-03-21","sha1":"703940ea0036bc7dc64976e2929d78a50688916f","md5":"d16266002007e2c2dee18aabf4b30e1b","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Jul 02 01:00:11 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_itable_collision/name","type":"file","name":"name","base_name":"name","extension":"","size":57,"date":"2020-03-21","sha1":"c96fd783b4df4e8a7592eae14c51837af5d474e6","md5":"5d7a7f78e4425f743b7bfcb1cd082de3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_itable_collision/script","type":"file","name":"script","base_name":"script","extension":"","size":933,"date":"2020-03-21","sha1":"1aeff7779962c95192c046cb8e1db8fe05c8fd6b","md5":"b58092e27eaeec13754b74215ac70800","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_32bit","type":"directory","name":"f_jnl_32bit","base_name":"f_jnl_32bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":0,"size_count":73492,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_32bit/expect.0","type":"file","name":"expect.0","base_name":"expect","extension":".0","size":28015,"date":"2020-03-21","sha1":"bb6177510d81cddc0b26157b2772ecbe39973166","md5":"f74bea1921e120967bfa492278e6691d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_32bit/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":483,"date":"2020-03-21","sha1":"aaf62ead0098054eb5b5df8fb41f64ba0f02887c","md5":"2cb0eb74ab1c2b99e8d8815189c18039","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_32bit/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":284,"date":"2020-03-21","sha1":"4437a3b8d2cd41401a1b32d03fc84fefe6815bf0","md5":"670e802ec9852aec634054dcc1d9e893","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_32bit/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":44544,"date":"2020-03-21","sha1":"42ffa4cdfcc5a9814c11bf038a45ac8aa5cb113f","md5":"310ab2c0a081d71425bd26ead9011dbb","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"test.img\", last modified: Wed May 02 16:41:38 2012, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_32bit/name","type":"file","name":"name","base_name":"name","extension":"","size":30,"date":"2020-03-21","sha1":"9753b7b023120e3595cfd91138d721117b9f54ba","md5":"bbb69c51487f74b998bbdc5e0801877a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_32bit/script","type":"file","name":"script","base_name":"script","extension":"","size":136,"date":"2020-03-21","sha1":"48ff36ff1439150258b934ae7b3b489fd07f6c5e","md5":"1cc375cd35c526513ae2815a2c71c81c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_64bit","type":"directory","name":"f_jnl_64bit","base_name":"f_jnl_64bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":0,"size_count":155854,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_64bit/expect.0","type":"file","name":"expect.0","base_name":"expect","extension":".0","size":36346,"date":"2020-03-21","sha1":"429acce3c8baca8bfdc753476ee9d74087967b1a","md5":"081012a78606066cb998a6a37d690607","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_64bit/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":484,"date":"2020-03-21","sha1":"440b0baa50561dbacd7ec8785a730566a6e32396","md5":"06707ecc41ac787104926fed1d270fdf","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_64bit/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":285,"date":"2020-03-21","sha1":"73d34a51d3e468e847a1c6303055981a8e48413c","md5":"f884662d8aa80783604d9e3dee553128","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_64bit/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":118573,"date":"2020-03-21","sha1":"492cb00fe66e3d145faf32f263af6eecdcbbd128","md5":"5ddf98056cf505806b9e5b90d2ab0d66","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Mon May 21 14:53:46 2012, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_64bit/name","type":"file","name":"name","base_name":"name","extension":"","size":30,"date":"2020-03-21","sha1":"709772899b96bdb470b6c1cb0fc098c8941a6561","md5":"dbbbb9fdae06e34952d24266d968de45","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_64bit/script","type":"file","name":"script","base_name":"script","extension":"","size":136,"date":"2020-03-21","sha1":"48ff36ff1439150258b934ae7b3b489fd07f6c5e","md5":"1cc375cd35c526513ae2815a2c71c81c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_errno","type":"directory","name":"f_jnl_errno","base_name":"f_jnl_errno","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":6,"dirs_count":0,"size_count":11222,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_errno/expect.0","type":"file","name":"expect.0","base_name":"expect","extension":".0","size":1637,"date":"2020-03-21","sha1":"096790a53bd82c297e3458f9049e47f6e218d32b","md5":"bf7681a77b34524a40582c60f46c1138","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_errno/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":334,"date":"2020-03-21","sha1":"5b6caacf13dbb565f154e67e378dd601af159e93","md5":"e8cb60a3d573189099316ad611bb8c13","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_errno/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"cb9dc2cb6633ec29dc0867e53425cdf9b44b858c","md5":"5526a6b69cb8739099419f142f2b6ca3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_errno/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":8822,"date":"2020-03-21","sha1":"d6fdd542d052a85a360eeb7b52ebb8f1f5cd3a43","md5":"57c2d5337c51e228b73069188572fe1b","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Thu May 31 22:46:33 2012, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_errno/name","type":"file","name":"name","base_name":"name","extension":"","size":25,"date":"2020-03-21","sha1":"23151430d1511c64f3e737a849a5cad028c90089","md5":"ed9ea8b1d4d00843f77852ef7a8e3a6c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_errno/script","type":"file","name":"script","base_name":"script","extension":"","size":122,"date":"2020-03-21","sha1":"15b6c75c003f337b62b225bb08558694ca1cbdc3","md5":"5de6b361bfeefb5a18840488ebc61086","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_etb_alloc_fail","type":"directory","name":"f_jnl_etb_alloc_fail","base_name":"f_jnl_etb_alloc_fail","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5000,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_etb_alloc_fail/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":898,"date":"2020-03-21","sha1":"079392388da5908005a61839a5fc832badde2558","md5":"01d5b7ff49ed5223efc313d05b5a4874","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_etb_alloc_fail/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":600,"date":"2020-03-21","sha1":"457049434df7ba679683e253c4fe5815aff11857","md5":"274d8a503d3eb1b3a32a08d50ad85c2c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_etb_alloc_fail/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3450,"date":"2020-03-21","sha1":"793353ea9a61a74b5964722c9c8d4ec3ccbe3b45","md5":"2770634e178d16a8c7941c24330b514e","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Sun Aug 17 17:15:30 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_jnl_etb_alloc_fail/name","type":"file","name":"name","base_name":"name","extension":"","size":52,"date":"2020-03-21","sha1":"2a302545e23189127b3a166979140c0d706d0ef9","md5":"ff70cd907af5e511185bd99b0f7fa266","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_journal","type":"directory","name":"f_journal","base_name":"f_journal","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":40359,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_journal/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":3654,"date":"2020-03-21","sha1":"720930f8455f31848db25c73d33510d235ef1d6e","md5":"ed9f93a0de67e9bbe9a91cb7d700c728","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_journal/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"99423590a0b0e6dadd4b9fde031a46186fde920e","md5":"ab4eb61eaa606f2b81975dd790a58909","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_journal/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":36380,"date":"2020-03-21","sha1":"3684b2490f636d485a100cccca2987b7641c6c2d","md5":"7bc517a40ac4a93fab98bd43779bea31","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Wed Aug 20 17:01:21 2003, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_journal/name","type":"file","name":"name","base_name":"name","extension":"","size":43,"date":"2020-03-21","sha1":"9922b659457eb52b48d9a85a6a8f3c520cdf735f","md5":"b2db138733e103530ff871b70b674b13","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_large_dir","type":"directory","name":"f_large_dir","base_name":"f_large_dir","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2751,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_large_dir/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":837,"date":"2020-03-21","sha1":"40ad25230e5c32f52b0620a5f80e569304476f0f","md5":"63382d89056eeb07c1d7af570d93bd5f","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_large_dir/is_slow_test","type":"file","name":"is_slow_test","base_name":"is_slow_test","extension":"","size":0,"date":"2020-03-21","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_large_dir/name","type":"file","name":"name","base_name":"name","extension":"","size":35,"date":"2020-03-21","sha1":"29c05beb3a7964c036b0fb33d3df3987539191c7","md5":"6dfa3fd9337e78d031bc7cc9d7abe5c2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_large_dir/script","type":"file","name":"script","base_name":"script","extension":"","size":1879,"date":"2020-03-21","sha1":"3571c06741b15beafa08fe8eb6e193c544d07782","md5":"580608f90331efaa74660ab31d63a8a8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lotsbad","type":"directory","name":"f_lotsbad","base_name":"f_lotsbad","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5883,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lotsbad/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1879,"date":"2020-03-21","sha1":"9ea095f4c0c7d8f909b60401ffc1a03e9406993a","md5":"8c28db657371a90ac4c094173cad815c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lotsbad/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"38bb5e16c58c0b6e30da84ab9272f77d3ddcac72","md5":"e3fa3be566d0fc5ddc70467deb518186","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lotsbad/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3694,"date":"2020-03-21","sha1":"92831100d6cf463c76ccc7795d46e607579c04ea","md5":"db6ac4f884f175b032ce24e70d6c56fa","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Tue May 21 22:31:26 2002, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lotsbad/name","type":"file","name":"name","base_name":"name","extension":"","size":33,"date":"2020-03-21","sha1":"af06bb4756abe08762977ff9700265be97e9f72f","md5":"6bc4cb746df916d162a2765bc40f2b17","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lpf","type":"directory","name":"f_lpf","base_name":"f_lpf","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":16782,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lpf/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1145,"date":"2020-03-21","sha1":"02e5e167adbc221fa7d2e691fa6b57e84540f908","md5":"8c432728333e061f014f7f75ce37bd9a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lpf/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"36c7411b686933391c08e2bb61887d61eadcdc53","md5":"a060cc7e7146d684c598e50698f79718","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lpf/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":15340,"date":"2020-03-21","sha1":"13175a55710979dc18f3119d2de5d8b3f3b18ae6","md5":"e2607e4e1624960e5c7021b41cb93626","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Tue Aug 20 14:02:54 1996, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lpf/name","type":"file","name":"name","base_name":"name","extension":"","size":19,"date":"2020-03-21","sha1":"ccff23e44061aba55fb70eb9df161d07bc69d61a","md5":"cbf87f33e24047d0dae60a3cd63a9bbb","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lpf2","type":"directory","name":"f_lpf2","base_name":"f_lpf2","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1759,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lpf2/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":985,"date":"2020-03-21","sha1":"f63ab59c6c1d60bb92046730c0fc68d74f5ee90d","md5":"7d52773d218dd15de81bd22ccc45f6f4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lpf2/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"8d63a3741e7ba8e7e92d3fa382cc16484713076f","md5":"04ba43800507a411d7faa6f6c85d062f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lpf2/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":450,"date":"2020-03-21","sha1":"f59c9070b4eff09360123131ce4281a190b125b9","md5":"8611fe5120a86a44215338e313e3ef36","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Dec 12 02:18:44 2003, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lpf2/name","type":"file","name":"name","base_name":"name","extension":"","size":47,"date":"2020-03-21","sha1":"351c2cc385cff63d7d6d30a7b3f19a2833c29415","md5":"5ebea26c8370dee22661b79c10102fee","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lpffile","type":"directory","name":"f_lpffile","base_name":"f_lpffile","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1578,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lpffile/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":762,"date":"2020-03-21","sha1":"196a566af072d6cc90c69c4a58ba98704fae601b","md5":"5cd7f8dcda3ffff23c27e71e0dbd6faa","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lpffile/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"1650aa1902452aea9fffef12adeba0e903cedac3","md5":"c6ee3ef755f7191dedeb43f44d64a4d1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lpffile/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":509,"date":"2020-03-21","sha1":"ce64e30fa0650bf81e64fbe70d486cc7188d3ee2","md5":"cdfde060501311320e01edca41a36b75","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sun Mar 14 20:16:38 1999, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_lpffile/name","type":"file","name":"name","base_name":"name","extension":"","size":30,"date":"2020-03-21","sha1":"83dfd21fec059e376b8adab0b3ae50ba384460a7","md5":"f576581fb709dbde987a9b4b7a07e4a8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_messy_inode","type":"directory","name":"f_messy_inode","base_name":"f_messy_inode","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5397,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_messy_inode/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1261,"date":"2020-03-21","sha1":"a972afe50ac0f8d5d6bdbe7fba99f5c0b6510275","md5":"a4f6508f91d47a07f7eb83e454217561","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_messy_inode/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"2ce4e1aa74d77921217ec4e93254d060dd5af579","md5":"193278eead941f685214464b2769ee80","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_messy_inode/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3823,"date":"2020-03-21","sha1":"25f23963e9c562c0fceee744b9fceba18f5bc77b","md5":"c5a653d9812cb2d210a738423794c25b","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:58 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_messy_inode/name","type":"file","name":"name","base_name":"name","extension":"","size":36,"date":"2020-03-21","sha1":"802b1ce4ac89fd8b2b3fd9835640a9191e2ea84e","md5":"e2e1974f651dbc4e5b59dff78dcfc1bf","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_miss_blk_bmap","type":"directory","name":"f_miss_blk_bmap","base_name":"f_miss_blk_bmap","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1591,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_miss_blk_bmap/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":606,"date":"2020-03-21","sha1":"c9c467f3ec7296d989be3383557b632cd1125f30","md5":"c0128d854301ae64d093907355a1ccbb","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_miss_blk_bmap/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"f8c37c65ca7f3ef896140309c46516d861f487f0","md5":"295ff5e4a22a7c3257c44efad20d1747","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_miss_blk_bmap/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":687,"date":"2020-03-21","sha1":"fcf83eabc2d3c007c7cb3009de3b4053524403a3","md5":"56ed34a0f829b58d20698eeba91dc315","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Nov 23 05:00:02 2001, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_miss_blk_bmap/name","type":"file","name":"name","base_name":"name","extension":"","size":21,"date":"2020-03-21","sha1":"ef9112c0da605f7cb764776832043f2c8324ad3f","md5":"43abf737c76bad5c4560363e23fb43c0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_miss_journal","type":"directory","name":"f_miss_journal","base_name":"f_miss_journal","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5280,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_miss_journal/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":696,"date":"2020-03-21","sha1":"afb22e659e7f3a42002b58e01673b3e3e59c14ee","md5":"d5685401923cc446c258609f43b974e2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_miss_journal/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"41aff1d5861ed68b151e48e0dc2860ca36be6ad8","md5":"4893d8c5821185715ed22563dc405712","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_miss_journal/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":4276,"date":"2020-03-21","sha1":"ba71a1c2ce311b81024268981913601722ac4655","md5":"d1892db329acae90a0ee02eb798b53f8","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Thu Mar 07 07:58:55 2002, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_miss_journal/name","type":"file","name":"name","base_name":"name","extension":"","size":27,"date":"2020-03-21","sha1":"bf4af013f15fa1e5cb2dd240c28287a610daf59e","md5":"c881d56650f5beacc6f78ae1388c03f3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_misstable","type":"directory","name":"f_misstable","base_name":"f_misstable","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":18933,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_misstable/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1430,"date":"2020-03-21","sha1":"74c64b39aad096f64c7e3b4b76f9374f7494aa9c","md5":"3b94f87b0387568568b8aadbff9ff5d5","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_misstable/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"df67147d2b04ec319ab9c77c3beaed1cc7a6e6e8","md5":"43bd1fe07af089d7d205c9cf6bf40cc5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_misstable/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":17201,"date":"2020-03-21","sha1":"5e1bd658617919f7c52360ed7da0a00d7adb675a","md5":"54ba45858804e34bf95ad8ff14a537b5","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Fri Mar 07 03:56:47 1997, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_misstable/name","type":"file","name":"name","base_name":"name","extension":"","size":20,"date":"2020-03-21","sha1":"5a1f3875a858a9a26f53cd73a4d2725b9000272b","md5":"7fe828c295558e3732dc10ea70336f62","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mke2fs2b","type":"directory","name":"f_mke2fs2b","base_name":"f_mke2fs2b","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1579,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mke2fs2b/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":707,"date":"2020-03-21","sha1":"da201b6aacfb7ea21e8429cfda795351943e0464","md5":"188adab4bc9d4804902045b6f4f1ec57","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mke2fs2b/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"430ee4efc41f75c80ec03ba64ef73412c94242d5","md5":"cf9387b496f44f7269beef4f404967a3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mke2fs2b/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":556,"date":"2020-03-21","sha1":"a7bd162a80ef603bdafbd296b3402dfb0b850b54","md5":"f971ca96e03b5e1ceb303bac75ff6084","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:58 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mke2fs2b/name","type":"file","name":"name","base_name":"name","extension":"","size":39,"date":"2020-03-21","sha1":"e66a41f7ff20acc959c58d3e456c04ef5457c697","md5":"563a2c6882efbd84af7409d38507859c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mke2fs_baddisk","type":"directory","name":"f_mke2fs_baddisk","base_name":"f_mke2fs_baddisk","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":632,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mke2fs_baddisk/script","type":"file","name":"script","base_name":"script","extension":"","size":632,"date":"2020-03-21","sha1":"29ada2afd046242d074bd5c5c71cb104daf928dc","md5":"692a339c4f436f71ac8a21e34217c414","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mmp","type":"directory","name":"f_mmp","base_name":"f_mmp","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":2296,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mmp/is_slow_test","type":"file","name":"is_slow_test","base_name":"is_slow_test","extension":"","size":0,"date":"2020-03-21","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mmp/name","type":"file","name":"name","base_name":"name","extension":"","size":45,"date":"2020-03-21","sha1":"0686be9db230117c9c1c9c6b39c486eae2388d90","md5":"afbdff16e04272998045f69538b425a5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mmp/script","type":"file","name":"script","base_name":"script","extension":"","size":2251,"date":"2020-03-21","sha1":"495f5c539d43dee78454e589ab8759d37830aa05","md5":"484d98c1a2e2eb0fd3ac38f2dd767514","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mmp_garbage","type":"directory","name":"f_mmp_garbage","base_name":"f_mmp_garbage","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":1146,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mmp_garbage/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":322,"date":"2020-03-21","sha1":"15ce5a07c506ac570f6d0b4bb4d1b4e4d74329c2","md5":"21a3215a75cde1c3afb403a858838876","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mmp_garbage/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"6e53caef8bbc5485bf4a8cb3ff0d021f3478b4ca","md5":"09c5077da00420a9e8ad447d09728d3d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mmp_garbage/is_slow_test","type":"file","name":"is_slow_test","base_name":"is_slow_test","extension":"","size":0,"date":"2020-03-21","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mmp_garbage/name","type":"file","name":"name","base_name":"name","extension":"","size":32,"date":"2020-03-21","sha1":"28e2def4ce01d79b34b974b6223432becb71bbe8","md5":"43f7b417c4f4e7352ef7e512b1643fe8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_mmp_garbage/script","type":"file","name":"script","base_name":"script","extension":"","size":515,"date":"2020-03-21","sha1":"2561c4143d26dda1cc9c18e61be72b727cd6f825","md5":"4a5682f7847bd003032278e833b21fea","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_no","type":"directory","name":"f_no","base_name":"f_no","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2608,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_no/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1936,"date":"2020-03-21","sha1":"52a766f9107134027def350f0554dde3adff17c3","md5":"b62378cfbf74f8b31bc1ec747d7d5f29","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_no/script","type":"file","name":"script","base_name":"script","extension":"","size":672,"date":"2020-03-21","sha1":"d595bad128bc38999ff8f8181cb0afffd1538f50","md5":"e967b998293aeeee9208561994be6f6e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_no_cache_corrupt_inode","type":"directory","name":"f_no_cache_corrupt_inode","base_name":"f_no_cache_corrupt_inode","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3335,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_no_cache_corrupt_inode/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":400,"date":"2020-03-21","sha1":"68d578b8ef3327b7307ed8edcf9b5e381e7d51fc","md5":"a383349f834c20caf7b80b3a5c37c2a7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_no_cache_corrupt_inode/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"777cc801c760d50e39fcefe72703e63699dbad6c","md5":"a6513e14ada4a84da4f02c42cf232d12","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_no_cache_corrupt_inode/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2606,"date":"2020-03-21","sha1":"0f59adcbdbd779825902fd6d380e5a6542195f92","md5":"0b34276f3b87142f33c04911094c4d9b","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Sat Jul 26 00:11:56 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_no_cache_corrupt_inode/name","type":"file","name":"name","base_name":"name","extension":"","size":51,"date":"2020-03-21","sha1":"27ebc61f56ca31b59027c797dc2ce92177e0b61c","md5":"03effc10b45c9346e7979c00d69449db","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_noroot","type":"directory","name":"f_noroot","base_name":"f_noroot","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1887,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_noroot/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1037,"date":"2020-03-21","sha1":"a23819b03187205286a7e22e02c947132fa74657","md5":"a06fc72ea678dcf4f15fbe4ec5f38ed0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_noroot/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"a68170de384a95fce8e349c1e33db8471df7611d","md5":"bb6f2ac157a102c59444d9e078747472","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_noroot/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":550,"date":"2020-03-21","sha1":"3cbab9fd849eac15f6c9438d10d3f6c65417df34","md5":"85cf0d523ef42bf18e159d1a1fc0b7ba","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:58 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_noroot/name","type":"file","name":"name","base_name":"name","extension":"","size":23,"date":"2020-03-21","sha1":"9fa16082dd897b2266355c97c7e1a4c1b9f8d151","md5":"bfdf70adac31d81dfc0380b9c88bcd77","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_nospc_create_lnf","type":"directory","name":"f_nospc_create_lnf","base_name":"f_nospc_create_lnf","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5739,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_nospc_create_lnf/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":800,"date":"2020-03-21","sha1":"f9cc5f2b8c43e4334ccfc56888b3a8b548903b95","md5":"8db6a4f10cef9d05246ae2ec717bb20e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_nospc_create_lnf/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":708,"date":"2020-03-21","sha1":"a9094dc7b60ecb8d74ab1e42f5379fc54c8d52bf","md5":"52800610fc22af3bf5a9ce1c4e665aba","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_nospc_create_lnf/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":4201,"date":"2020-03-21","sha1":"6bcc9f65e251fb273c6563821c7f9e9b5998d73d","md5":"3f09012ee2c440b976e71e3409d1e9ad","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Thu Jul 31 18:14:26 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_nospc_create_lnf/name","type":"file","name":"name","base_name":"name","extension":"","size":30,"date":"2020-03-21","sha1":"bee2e5c2b04042522f8eca6449d100e80b85ae55","md5":"756a4ab4e46ed9e9b6c28b408a0eb31a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_okgroup","type":"directory","name":"f_okgroup","base_name":"f_okgroup","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":9025,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_okgroup/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":330,"date":"2020-03-21","sha1":"2d690b90edf903ca1ebe0c22f451c430e1cc518b","md5":"d204a388ac9b2cfec03844bc257b4783","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_okgroup/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"03a56731b4c7ea27a6b5eb9796948bb397cfdc8c","md5":"a886e84f06d1561781d0f065f32f3cbf","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_okgroup/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":8387,"date":"2020-03-21","sha1":"327cedeaecb6547723116ef59878f04d3296d2a6","md5":"fe8b5eadb9e41707c0a15691e5a2d8ff","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:21:03 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_okgroup/name","type":"file","name":"name","base_name":"name","extension":"","size":27,"date":"2020-03-21","sha1":"a9ecdcd65f1ce6ee130a3a86ba4c47477cae333a","md5":"861df5a840c9afadc4e880468d6c289f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_opt_extent","type":"directory","name":"f_opt_extent","base_name":"f_opt_extent","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":3499,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_opt_extent/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1874,"date":"2020-03-21","sha1":"cf485fd7d4c609584acda9bb0f61a5a9e30a97be","md5":"125cd8eefa13ee3049ee24f0c811ff96","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_opt_extent/name","type":"file","name":"name","base_name":"name","extension":"","size":21,"date":"2020-03-21","sha1":"6053e47a2dc0cc946fecbf27d9af16cfbe7244b2","md5":"f19c01cda7eb26ebe2a5aec0e99449f3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_opt_extent/script","type":"file","name":"script","base_name":"script","extension":"","size":1604,"date":"2020-03-21","sha1":"e7d7213d372286c1af93923129e404bfb8f22acf","md5":"a560030c6a845576b21a9c42ccdf1cc8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_opt_extent_ext3","type":"directory","name":"f_opt_extent_ext3","base_name":"f_opt_extent_ext3","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":3386,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_opt_extent_ext3/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1707,"date":"2020-03-21","sha1":"3d17ceae91339af825c620cd7f282f1f445ac2cc","md5":"f3627c4eca2ee70aaf277c39d715cb21","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_opt_extent_ext3/name","type":"file","name":"name","base_name":"name","extension":"","size":28,"date":"2020-03-21","sha1":"e9b24e378f0f0423482038c5182652dd759ee6e5","md5":"8c986be9c54c51b47aff4445f24f9a9d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_opt_extent_ext3/script","type":"file","name":"script","base_name":"script","extension":"","size":1651,"date":"2020-03-21","sha1":"cf0b100f5cbb3f9e08bbbb64bf65243ddd67be2b","md5":"2a94881c7225e39749190cc84b7c5c93","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan","type":"directory","name":"f_orphan","base_name":"f_orphan","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":12992,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":661,"date":"2020-03-21","sha1":"b4daef39dcb5a7785c172165ae97bf14d5ac99ef","md5":"94291e46d2fcb8923a90781fa954ccd5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"7c70058cd536e7c67dd26a8cf0f4ceafc442efee","md5":"07af3e29a2fde4c7117083b3ea98d6f7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":12026,"date":"2020-03-21","sha1":"1b16f2e3978bdcfe46a5296455e6d7b4c228bb10","md5":"1b1a283d3a3fd248f7a24eab93d1e0ff","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sun Aug 20 21:21:35 2000, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan/name","type":"file","name":"name","base_name":"name","extension":"","size":23,"date":"2020-03-21","sha1":"7d69a98e09ba6eeb81c2a7db989c3953bd4da3bf","md5":"c120c47750517d84336bc9bff1837bcd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_dotdot_ft","type":"directory","name":"f_orphan_dotdot_ft","base_name":"f_orphan_dotdot_ft","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2373,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_dotdot_ft/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1467,"date":"2020-03-21","sha1":"114f453afa9e8461ca1636f3395741fdc9da476b","md5":"aa9b0e1acb89255fd541de9d3a42bd0f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_dotdot_ft/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"728857c223d5d5f7338712d49db57c7d356d1ad6","md5":"be13618b5682f3164a3d69d7675e8a03","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_dotdot_ft/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":590,"date":"2020-03-21","sha1":"e45f6ad36ab3d48a63b30aa8861e6ee47611c8cd","md5":"097ac1b56875fa7649aecabadbc7ed2c","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sat Mar 31 21:29:00 2007, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_dotdot_ft/name","type":"file","name":"name","base_name":"name","extension":"","size":39,"date":"2020-03-21","sha1":"4f5bf5b98a7b9a65c2b7c67d17e06872159e87d3","md5":"67461d47c1d6903bb7df6dad1d9358d8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_extents_inode","type":"directory","name":"f_orphan_extents_inode","base_name":"f_orphan_extents_inode","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1279,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_extents_inode/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":395,"date":"2020-03-21","sha1":"0fc8b4d27d8c2f37436afab5ac0ba10a2eb336aa","md5":"e3d286a49eb6e654b5c50c54ad62ae2c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_extents_inode/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"f9bf9cae9cf7bd6197435008efcb0b4f1a526529","md5":"283d2417f5a56d33a6546e6112f33399","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_extents_inode/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":564,"date":"2020-03-21","sha1":"e559c6226a2ed9730c3d473b32d121be638973e9","md5":"11e86ee9a8895f51c8865e6ed17edad0","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"orphan-extents-inode.img\", last modified: Tue Jun 12 01:54:17 2012, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_extents_inode/name","type":"file","name":"name","base_name":"name","extension":"","size":43,"date":"2020-03-21","sha1":"9068d26799fa5ebf85e9e114ae8db24eddbde910","md5":"2463e5849fb877d96417033ef4aa61f4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_indirect_inode","type":"directory","name":"f_orphan_indirect_inode","base_name":"f_orphan_indirect_inode","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":1091,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_indirect_inode/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":145,"date":"2020-03-21","sha1":"212082ead49fbd41afea0a8f165a9aab908b01c8","md5":"28cbedb57b479ec22552ddbee1b75a82","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_indirect_inode/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"f9bf9cae9cf7bd6197435008efcb0b4f1a526529","md5":"283d2417f5a56d33a6546e6112f33399","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_indirect_inode/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":592,"date":"2020-03-21","sha1":"50f34679aa611ebff0b7102e65f29aee76fc6a9f","md5":"a59c41f5dfba7e781ff064505b0926d4","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"orphan-indirect-inode.img\", last modified: Tue Jun 12 01:55:43 2012, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_indirect_inode/name","type":"file","name":"name","base_name":"name","extension":"","size":43,"date":"2020-03-21","sha1":"14d739b8ead2314a3cc1e68f7b3d0a9a077412ab","md5":"63b65c54c059ef32ad61f8ba836ef316","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphan_indirect_inode/script","type":"file","name":"script","base_name":"script","extension":"","size":34,"date":"2020-03-21","sha1":"d6960f970276c14465bf73fe0b0a4961493c24bc","md5":"82149cd9afa5e66c2064ff92139a5658","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphquot","type":"directory","name":"f_orphquot","base_name":"f_orphquot","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":2322,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphquot/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":409,"date":"2020-03-21","sha1":"d11798aa4691e42e1517eaad48af156c4812c74f","md5":"8c037500efe14f19e63da95b87a5bd5b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphquot/image.bz2","type":"file","name":"image.bz2","base_name":"image","extension":".bz2","size":1327,"date":"2020-03-21","sha1":"a1501935d88b60ea16a8cda8c5a78a26d5353c74","md5":"e03a9e98a7ec8f1730b47005d46279aa","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_orphquot/script","type":"file","name":"script","base_name":"script","extension":"","size":586,"date":"2020-03-21","sha1":"1addd3c857799741de631908d8ee7a69b97b0199","md5":"3406b54f0ae69679fc1b7badda21723f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_overfsblks","type":"directory","name":"f_overfsblks","base_name":"f_overfsblks","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1342,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_overfsblks/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":678,"date":"2020-03-21","sha1":"16dd48544a926e719aeaa9e0b424906ebff3b2c9","md5":"4dfb139ee38890ea49b1f25cbab1c35f","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_overfsblks/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"19efed15a058a4c516e5fe8dced24611cf6edf91","md5":"02f362a9515eec2cc3907c7087b91243","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_overfsblks/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":351,"date":"2020-03-21","sha1":"b33b05dec02ad78621f97de94ae7c352c099595c","md5":"192359b6de9f777a9f8929fe15071054","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 11 12:19:58 1995, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_overfsblks/name","type":"file","name":"name","base_name":"name","extension":"","size":36,"date":"2020-03-21","sha1":"49ee408770ddee59ee25ae1a22328f3e5476a353","md5":"e6466cd795efd87518d5eb01dd323afc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_pre_1970_date_encoding","type":"directory","name":"f_pre_1970_date_encoding","base_name":"f_pre_1970_date_encoding","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":4064,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_pre_1970_date_encoding/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1206,"date":"2020-03-21","sha1":"0265fe8a5b7fad6cc8dbecc78a76a8514d221400","md5":"ae2a4c4e876d3c50ec3473630b5fa88d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_pre_1970_date_encoding/name","type":"file","name":"name","base_name":"name","extension":"","size":35,"date":"2020-03-21","sha1":"8e7f3408123a841ac4edf47726911dc0504fc756","md5":"164099a2dcafa6dcba068aba1aad22d0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_pre_1970_date_encoding/script","type":"file","name":"script","base_name":"script","extension":"","size":2823,"date":"2020-03-21","sha1":"bd1211d4d274bcca8183fe279e5cb1c63cd9dd57","md5":"b2cd4cb1b650cf28df7bf9c613081d3a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_preen","type":"directory","name":"f_preen","base_name":"f_preen","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":157102,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_preen/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":473,"date":"2020-03-21","sha1":"c0780be3ef3327e42a4aecf8c5d5b814794de4f6","md5":"b454da1f29008109206050d3062049e4","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_preen/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":782,"date":"2020-03-21","sha1":"6c96c98a2d54a0f8a9fa4668e964137a7c53b4f2","md5":"ce8d26528216a7ff0bc9f768783a7eb5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_preen/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":155743,"date":"2020-03-21","sha1":"e034b4ee3da665b50c7cdfb80f54e7ed94671be1","md5":"716cd407b8bcaa49038f64aec26cbe0f","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Mon Oct 07 12:12:40 1996, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_preen/name","type":"file","name":"name","base_name":"name","extension":"","size":43,"date":"2020-03-21","sha1":"ef044f21cc43cf71964e939f159e62b059fcc192","md5":"7e008466ba1df4b3b39a014e9aff83d2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_preen/script","type":"file","name":"script","base_name":"script","extension":"","size":61,"date":"2020-03-21","sha1":"dd03f9e217a0ae1086d70a2fb4bd86a5d37f8591","md5":"e8026446d46f9b5eb8f75208ac1f2e52","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota","type":"directory","name":"f_quota","base_name":"f_quota","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":7,"dirs_count":0,"size_count":3483,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota/debugfs-cmds","type":"file","name":"debugfs-cmds","base_name":"debugfs-cmds","extension":"","size":106,"date":"2020-03-21","sha1":"1883f5f1a57d5faf6c6423c5d5301e066ec4df2e","md5":"335fee80cb85fd829789d927165bb0ca","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota/expect.0","type":"file","name":"expect.0","base_name":"expect","extension":".0","size":1149,"date":"2020-03-21","sha1":"b354e2962f5170cb106d6f3307230b58e2b94505","md5":"71cf394cab4d97e60a17d33872ea7a2e","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":541,"date":"2020-03-21","sha1":"f9579c2bb0f6c3882dcd963bfcbfcf7b5003bd85","md5":"d0c693aee5009f64e59f948662c5cd61","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"e26f640c8b4f792e7b85ab15845329eb143b3ebe","md5":"2a87ebce92371cd628c3d2450e40e1d6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1046,"date":"2020-03-21","sha1":"9c66163ac55740a4a126171b385d244565833104","md5":"c1d2b29cce13c6b20804946770551e0b","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Sun May 11 03:59:33 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota/name","type":"file","name":"name","base_name":"name","extension":"","size":35,"date":"2020-03-21","sha1":"3757a2a68bf499f0b7a63e370ced62391fe98500","md5":"a3354c2349c77eb3a238d629e62bfc9d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota/script","type":"file","name":"script","base_name":"script","extension":"","size":328,"date":"2020-03-21","sha1":"31a76f3efe5d1636e750e164d818ae0b2ab2b97d","md5":"e316c394b5a44150ec9198220611d3f2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota_extent_opt","type":"directory","name":"f_quota_extent_opt","base_name":"f_quota_extent_opt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":9897,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota_extent_opt/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":565,"date":"2020-03-21","sha1":"4106a1bb1e8c66b2bb659faa41f8df126ab64996","md5":"7093b81414360251e6686d5fc7e1a856","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota_extent_opt/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":283,"date":"2020-03-21","sha1":"f743b037fc21c2f52ce6a583439b1a201c0400cf","md5":"a76538d2e36285827c127e01ec221dcd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota_extent_opt/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":9018,"date":"2020-03-21","sha1":"c838caea59a7207dad796997096832d0c7ef6637","md5":"7cfadd6d33209e23cbd9820617fc8199","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Fri Apr 14 23:51:42 2017, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota_extent_opt/name","type":"file","name":"name","base_name":"name","extension":"","size":31,"date":"2020-03-21","sha1":"8802587cf436cee36c0689fea60b302c2172b35f","md5":"5fb272c4b974e3e3538997dc02e62a95","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota_invalid_inum","type":"directory","name":"f_quota_invalid_inum","base_name":"f_quota_invalid_inum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1362,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota_invalid_inum/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":474,"date":"2020-03-21","sha1":"515b2f2d04ad7390ac6b1d65afc6381787f3602d","md5":"e57c5968de75e12eefcebf22fb5247dd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota_invalid_inum/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"0ae083055fa89c4df1aa9e22514ba074ee790c74","md5":"4e2899a1fe0ece04788fd54ee31aef1f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota_invalid_inum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":583,"date":"2020-03-21","sha1":"b57f01bd81ad970a6859b6f3c6de3fab658073d7","md5":"1845fc35448bb749f4ed3fb12eb52072","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Sat Jul 22 20:00:20 2017, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_quota_invalid_inum/name","type":"file","name":"name","base_name":"name","extension":"","size":28,"date":"2020-03-21","sha1":"f4fe21eb42ad725eb1c8e04e014f46a8d29da167","md5":"6a20954855d2e621a507faeb8c63d0ce","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_readonly_fsck","type":"directory","name":"f_readonly_fsck","base_name":"f_readonly_fsck","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3899,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_readonly_fsck/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":389,"date":"2020-03-21","sha1":"8dacc2dfbec6d1be7cdb5d514426269b3a510df4","md5":"19f16ae2a589f122e869bededa0295eb","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_readonly_fsck/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2538,"date":"2020-03-21","sha1":"7985acf1a42ff852da340cfa5b40e2d8166a432b","md5":"5309718453b41f037f76ead03a1f9b96","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Mon Aug 11 17:20:58 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_readonly_fsck/name","type":"file","name":"name","base_name":"name","extension":"","size":51,"date":"2020-03-21","sha1":"24544b4bdb4dad7ea6aa78115ae3dbf5632017ea","md5":"f2c45327003e9029c9ea2896d0897784","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_readonly_fsck/script","type":"file","name":"script","base_name":"script","extension":"","size":921,"date":"2020-03-21","sha1":"6c888b82a203e8d01af3ab53ea43ace72608f7a0","md5":"3570eb8d4c4b39b1a8d913339070ed7c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_rebuild_csum_rootdir","type":"directory","name":"f_rebuild_csum_rootdir","base_name":"f_rebuild_csum_rootdir","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":19085,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_rebuild_csum_rootdir/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":6279,"date":"2020-03-21","sha1":"b8e7e8db433bc961e1f3e76d947c79de1878b9df","md5":"5861bad795acfdf074adb9bb4d90009d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_rebuild_csum_rootdir/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"a47d1245af15bf69c5dc8dfb942a886f0f02dcc6","md5":"b310fd1c9b3eaa9452e254ff25f6bcd7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_rebuild_csum_rootdir/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":12476,"date":"2020-03-21","sha1":"47103c1efe70704f9c338e7e940cb5f6c61d2a1b","md5":"825316fbc5b7e2aa53c035b0904de5a4","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Mon Mar 10 18:03:21 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_rebuild_csum_rootdir/name","type":"file","name":"name","base_name":"name","extension":"","size":49,"date":"2020-03-21","sha1":"e427a44a5f8df1f1198da6c6d9ed38808a8df060","md5":"230a9252fcad02c6e5587a7712fccfea","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_recnect_bad","type":"directory","name":"f_recnect_bad","base_name":"f_recnect_bad","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1819,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_recnect_bad/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":976,"date":"2020-03-21","sha1":"1c6efc87607d85e9934c4a8439a2e74371f39975","md5":"f5942146158ea5a9b9487d30455b35cc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_recnect_bad/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"728857c223d5d5f7338712d49db57c7d356d1ad6","md5":"be13618b5682f3164a3d69d7675e8a03","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_recnect_bad/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":543,"date":"2020-03-21","sha1":"d628d766cf7e46b4e4932675bdba046de1816db2","md5":"c2759f5cfadce445159ac63eaccedf51","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Jun 25 13:11:28 1999, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_recnect_bad/name","type":"file","name":"name","base_name":"name","extension":"","size":23,"date":"2020-03-21","sha1":"95de023ef71cb791e95ea89b66c0891aa2b89a8c","md5":"ac09d49ed09e81c9f5da5baf2fde49a5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_reconnect","type":"directory","name":"f_reconnect","base_name":"f_reconnect","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1469,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_reconnect/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":623,"date":"2020-03-21","sha1":"626ff0e8dd577c25c5c959e71f0eeee2e598f3a3","md5":"016b0b87941b4d18c212ca00abea034e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_reconnect/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"92cb58eefd3ebd94544ff5cb8538386981f2bb09","md5":"c323901d67b2d009954aac1486cbd01c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_reconnect/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":538,"date":"2020-03-21","sha1":"4a1dea8595e26e8f42fc8c7f6610bd7b42e35ddf","md5":"c300dfee2b25a420cb9d6377b2565191","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Tue Mar 04 15:19:26 1997, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_reconnect/name","type":"file","name":"name","base_name":"name","extension":"","size":31,"date":"2020-03-21","sha1":"ca7c505d520397ba6197273456d4db138d9714ad","md5":"614a94424e116e8690f57e9f48cee15a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_rehash_dir","type":"directory","name":"f_rehash_dir","base_name":"f_rehash_dir","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":3836,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_rehash_dir/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":365,"date":"2020-03-21","sha1":"e047e84e4a710c7e01398c0a039c90bce8bd61cf","md5":"0286f4dac90cb1de9d1197ea8e2ad225","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_rehash_dir/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"f99843239233b5586784801b47501893412c1ee4","md5":"2618987c1d38c92608618b65ed410cf2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_rehash_dir/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3126,"date":"2020-03-21","sha1":"c974e334be3e46c5e5cca9fd9f38d9b3e1089917","md5":"c7af08133e9224c08d84d9a25697896b","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Feb 26 08:45:32 2010, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_rehash_dir/name","type":"file","name":"name","base_name":"name","extension":"","size":27,"date":"2020-03-21","sha1":"0a7266c3a4394b378a2c7a53656803af99ba4540","md5":"cfea9b24565fff801a17ae8918eec695","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_rehash_dir/script","type":"file","name":"script","base_name":"script","extension":"","size":37,"date":"2020-03-21","sha1":"c4fc9b58785c076aea3f810bd6eaf8dacb35eba0","md5":"38cfe3318dc2f4dba795c0254de9ce49","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_resize_inode","type":"directory","name":"f_resize_inode","base_name":"f_resize_inode","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":8734,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_resize_inode/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":5330,"date":"2020-03-21","sha1":"a16df48ba7e3bc5714a059e009bc0ad66c75cc3e","md5":"a03ca7e25e8d8620d8882e1e34c9430e","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_resize_inode/script","type":"file","name":"script","base_name":"script","extension":"","size":3404,"date":"2020-03-21","sha1":"96c1d7d9b94409ecb9bac3b8487b0e245d04f77f","md5":"840171b19da6e25527b0e09ba9fa00a1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_resize_inode_meta_bg","type":"directory","name":"f_resize_inode_meta_bg","base_name":"f_resize_inode_meta_bg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":23707,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_resize_inode_meta_bg/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1913,"date":"2020-03-21","sha1":"5ce4ef840ac815079c8a1522f5d13c74fb545870","md5":"20559a508a6d103fd8cc2cf30a9eff5b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_resize_inode_meta_bg/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"906010e0c9b280728f27dab731207fda95577019","md5":"c67224cc2923b11f3a5e0cf9c476eab6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_resize_inode_meta_bg/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":21467,"date":"2020-03-21","sha1":"08f13fea79a589439a09fa5815e3dd34ceda9b2e","md5":"666bfc10d861f9e086c430ee9e0b984f","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"file\", last modified: Mon Aug 13 12:17:40 2018, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_resize_inode_meta_bg/name","type":"file","name":"name","base_name":"name","extension":"","size":46,"date":"2020-03-21","sha1":"23ac04277934218f8e66c7c55755109ce07a6132","md5":"3f1de679313d1945ec7a6e42e5b4d77f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_salvage_dir","type":"directory","name":"f_salvage_dir","base_name":"f_salvage_dir","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1531,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_salvage_dir/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":607,"date":"2020-03-21","sha1":"af1b49363add5ca432286d05b39e3aba4489f3cf","md5":"ee62b501fedb5e4910c17af33e4a96aa","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_salvage_dir/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"5ea94af80a85246dc048be69e922186b95fd7b98","md5":"e87c5c70546e441545f5d4aded26015a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_salvage_dir/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":616,"date":"2020-03-21","sha1":"cdbd156000e31f822bafba1c9746806ceebf2284","md5":"410ba87391936968354bfcdf7e999ebf","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 01 16:51:09 2003, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_salvage_dir/name","type":"file","name":"name","base_name":"name","extension":"","size":30,"date":"2020-03-21","sha1":"fa185e0a5812c3792082c6edfbb00ec8eb959e03","md5":"291a822b8b5b4dd971428ac906446f91","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_sb_extra_isize","type":"directory","name":"f_sb_extra_isize","base_name":"f_sb_extra_isize","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1484,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_sb_extra_isize/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":441,"date":"2020-03-21","sha1":"4bafaea3e50705b03856e5eb84c4c9671e738bcf","md5":"8a95cb477284774d87d27d8841983b95","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_sb_extra_isize/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"157faef0d258fd8829c3fb9d1ffda7bd22f21bc0","md5":"fc496f3fcb52118ea2d4a7bfca34c1fd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_sb_extra_isize/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":719,"date":"2020-03-21","sha1":"154c0658190c0fdef27624fff1df12cf62df03ad","md5":"d74a40e7e84bfffee340dcb015e0502c","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sun Sep 04 21:16:36 2016, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_sb_extra_isize/name","type":"file","name":"name","base_name":"name","extension":"","size":47,"date":"2020-03-21","sha1":"e56ed59c27d8aed57d7dfa5f84767ac333e995bf","md5":"ef2079a6d421bb036fda8c2a7f762685","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_selinux","type":"directory","name":"f_selinux","base_name":"f_selinux","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1308,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_selinux/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":276,"date":"2020-03-21","sha1":"2064dd9b1116c53b4e74c3ec455a862c0ecb9fb2","md5":"111a09fec42c4b257aad0b27b6e7e829","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_selinux/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":276,"date":"2020-03-21","sha1":"2064dd9b1116c53b4e74c3ec455a862c0ecb9fb2","md5":"111a09fec42c4b257aad0b27b6e7e829","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_selinux/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":715,"date":"2020-03-21","sha1":"6ae935bd00e3160abc43ec485ac14d05cf6f970e","md5":"079ce222c0613beeea04df9e6ed63cb5","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Jan 30 06:56:40 2004, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_selinux/name","type":"file","name":"name","base_name":"name","extension":"","size":41,"date":"2020-03-21","sha1":"87b3fe1e9975a2747725afd1c45bc67c987c66f1","md5":"9f36897347c3fb78d5e995983a2f4b23","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_shared_blocks_ok","type":"directory","name":"f_shared_blocks_ok","base_name":"f_shared_blocks_ok","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1427,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_shared_blocks_ok/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":276,"date":"2020-03-21","sha1":"67ab067c4f36486024b62b8de6adef11cc7d3595","md5":"f153316507e0b23c87517e09ca0b9867","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_shared_blocks_ok/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":276,"date":"2020-03-21","sha1":"67ab067c4f36486024b62b8de6adef11cc7d3595","md5":"f153316507e0b23c87517e09ca0b9867","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_shared_blocks_ok/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":831,"date":"2020-03-21","sha1":"7af13274c4e29f35dd9a9ae7691dcfc771c2a614","md5":"5a66dc126f88c840a95754c2c155f2e1","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sat Mar 03 02:14:29 2018, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_shared_blocks_ok/name","type":"file","name":"name","base_name":"name","extension":"","size":44,"date":"2020-03-21","sha1":"76be3d686009d077f1f3accb33f00e93fd746b54","md5":"420333f9641fbe4bf901076f9374dde6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_short_encrypted_dirent","type":"directory","name":"f_short_encrypted_dirent","base_name":"f_short_encrypted_dirent","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1730,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_short_encrypted_dirent/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":496,"date":"2020-03-21","sha1":"b13ffb1e8a3949183c2474751343368d21c0c6f2","md5":"cdb0035e20dfa154c5a6c706ce6bcdc9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_short_encrypted_dirent/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"9cf12a255b8cbf597130d960cc5bf011412d7957","md5":"0e95c9c75692f87b69755730938c0e45","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_short_encrypted_dirent/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":925,"date":"2020-03-21","sha1":"5a0b28fb146e654ca9357185eaa7d54c9b7b12ad","md5":"8be764a306ab420d1761d0908af805a7","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Thu Jul 16 19:23:56 2015, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_short_encrypted_dirent/name","type":"file","name":"name","base_name":"name","extension":"","size":32,"date":"2020-03-21","sha1":"30e7ac55de4c966ba1946aaa4216f3887df709ec","md5":"16586855eb3d1abcdd7a1d8f84ad3fec","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_special_ea","type":"directory","name":"f_special_ea","base_name":"f_special_ea","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":30805,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_special_ea/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":379,"date":"2020-03-21","sha1":"d304068c9f53d29bdeec8634ba023d827e945ee6","md5":"298361142e846e69cc4b237d0ccf5591","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_special_ea/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":30344,"date":"2020-03-21","sha1":"9ca02c526a3e68c99ecbf77aca518cf1fd10ccb5","md5":"5572391dc80bb74ffb67d192d4ca41a6","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Aug 16 23:06:27 2002, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_special_ea/name","type":"file","name":"name","base_name":"name","extension":"","size":39,"date":"2020-03-21","sha1":"32a580699b164810b9b71234f8797e0c144c108b","md5":"7b7e149cb0892b6c5d8a476cc48a86dc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_special_ea/script","type":"file","name":"script","base_name":"script","extension":"","size":43,"date":"2020-03-21","sha1":"d6198035f9abae70d4d992fa350500ba3f59baca","md5":"fa544f8ae3d6262f4f705543ad583853","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_summary_counts","type":"directory","name":"f_summary_counts","base_name":"f_summary_counts","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":1394,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_summary_counts/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":588,"date":"2020-03-21","sha1":"3c058d3a433fdbc96f653eb2a71a439bb9cd3222","md5":"284fa920c81241ab51dabf27198a27de","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_summary_counts/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"ab0e0cdb25b716bc6e84d38e433547429b369fdf","md5":"091b912057d670e533b9806eca92476e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_summary_counts/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":440,"date":"2020-03-21","sha1":"ac593b967348cc0b7381af7fdae95f8634e3bd21","md5":"6359e90b2d30492eea7c717ed10eae39","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Tue Jan 25 08:05:11 2005, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_summary_counts/name","type":"file","name":"name","base_name":"name","extension":"","size":34,"date":"2020-03-21","sha1":"399f6e20c0765335ea7d54bf50c2a50bebf0f56f","md5":"039d59a85e5bb23db266dbc0c4918a01","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_summary_counts/script","type":"file","name":"script","base_name":"script","extension":"","size":55,"date":"2020-03-21","sha1":"f06c951da7d1f036b9d209eec82d3abc3b5e3719","md5":"da3a7f94d184faa7391e1c5161a7623f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_super_bad_csum","type":"directory","name":"f_super_bad_csum","base_name":"f_super_bad_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":2826,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_super_bad_csum/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":510,"date":"2020-03-21","sha1":"301c4af21bbfdc81aca3a3510633c6a1f71b7faa","md5":"2d341d7bdd5cb0d897cadfb9a4d8b930","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_super_bad_csum/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":283,"date":"2020-03-21","sha1":"a155bcdb95f8b69be6b64ce4d38fa541c26a4ab1","md5":"771cc43e4452d685cd41fc26f9c7cd2a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_super_bad_csum/image.bz2","type":"file","name":"image.bz2","base_name":"image","extension":".bz2","size":1181,"date":"2020-03-21","sha1":"5fc0c858b6357aa350a2ef01485afaaf5ee8b735","md5":"7177539bf3a117d4db14d1eb62c72c95","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_super_bad_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":39,"date":"2020-03-21","sha1":"1b6877e5170297408a452ffe6f8154d215aaa30f","md5":"68e57de5dff46d249fb808d1e936b3f1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_super_bad_csum/script","type":"file","name":"script","base_name":"script","extension":"","size":813,"date":"2020-03-21","sha1":"eeed1298a14c5f341473825217b459c6744769af","md5":"403dfcf92e62fbd2bbfd894195b0fbd2","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_toobig_extent_dir","type":"directory","name":"f_toobig_extent_dir","base_name":"f_toobig_extent_dir","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1573,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_toobig_extent_dir/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":431,"date":"2020-03-21","sha1":"fb2ec3b73ae25eac332c62263f46c5823f76d698","md5":"648e28cee5a70ce263b4beccf059f8db","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_toobig_extent_dir/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"6c6f64af5e3b8430690b8dbb582d9fade0e8d413","md5":"b539f3521d0b039da829c7c08f5df4c8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_toobig_extent_dir/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":822,"date":"2020-03-21","sha1":"b61d1cbb2ce27011a2ae163d68ebb3e14ce73129","md5":"e4563917a65124ffc91045a45b7301cc","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Sun Jul 28 23:57:41 2013, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_toobig_extent_dir/name","type":"file","name":"name","base_name":"name","extension":"","size":43,"date":"2020-03-21","sha1":"2b8b1c6181501587d666d3a9e3fc9f95056f9fb6","md5":"f53e77946ff2582ebb1c8b3bc02e521c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_trunc_dirent_header","type":"directory","name":"f_trunc_dirent_header","base_name":"f_trunc_dirent_header","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3674,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_trunc_dirent_header/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":482,"date":"2020-03-21","sha1":"92a7dac3d7c8b61fe77190bdd1a88f4151f1d014","md5":"19b08b5e2973db7659027573c3c94a71","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_trunc_dirent_header/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"6ab1cd59d79f423a993cdf7d4b0f49cde5f3d335","md5":"4f2d0dbbae5c310ac479becd8eaf51d0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_trunc_dirent_header/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2873,"date":"2020-03-21","sha1":"7553195a19a3751d690236141dd83738cebc6cdc","md5":"7433bcd3fa225d7a50d8606fffe9e809","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jan 27 05:15:19 2015, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_trunc_dirent_header/name","type":"file","name":"name","base_name":"name","extension":"","size":41,"date":"2020-03-21","sha1":"d1849e47b8d6edb1d06953cbaf13c6047171be76","md5":"400f1d5e8109471d4c3416186c61ffa0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_cat","type":"directory","name":"f_uninit_cat","base_name":"f_uninit_cat","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":6079,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_cat/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":3623,"date":"2020-03-21","sha1":"204d14282e6e7133fb2b5ff21e88f3857283a5b8","md5":"7dfc18f2033be04795184f6941eb4719","mime_type":"application/octet-stream","file_type":"data","programming_language":null,"is_binary":true,"is_text":false,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_cat/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1553,"date":"2020-03-21","sha1":"4b52ea1290c6f72fd46df059919671a9362487ed","md5":"787c5bb96cc867114ef05f0ac35434c8","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Fri Sep 12 00:15:05 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_cat/name","type":"file","name":"name","base_name":"name","extension":"","size":30,"date":"2020-03-21","sha1":"119d026368e444c703671ade3e78c79b4613af32","md5":"23fcd5134b0ba69c76aae86449bb590f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_cat/script","type":"file","name":"script","base_name":"script","extension":"","size":873,"date":"2020-03-21","sha1":"328f92e1eb0e7d47445ea1d9021216bd8dede944","md5":"048ae2e9fecccb8057d57ea470921193","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_dir","type":"directory","name":"f_uninit_dir","base_name":"f_uninit_dir","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3756,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_dir/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":812,"date":"2020-03-21","sha1":"5c2dd85b12acd8a331230441f9851fbbd934edbd","md5":"c36a2613dac6c0465ad083cd1ad30b50","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_dir/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"136907c5949daab9bd4cfc70b1d1e6b209168dd4","md5":"601009e06b8bb0665716dcacdd4d2a54","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_dir/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2604,"date":"2020-03-21","sha1":"68245c407ba9ed9c41d8949834df2d495a9a688a","md5":"169cb36ccd0c56022559eac972156ece","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Fri Jun 20 19:00:47 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_dir/name","type":"file","name":"name","base_name":"name","extension":"","size":62,"date":"2020-03-21","sha1":"28226f62dd51811fc2d4e7efcf6b9b209edd1d72","md5":"30d132fe48e82f3a226a15b245d0a8e7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_ext_past_eof","type":"directory","name":"f_uninit_ext_past_eof","base_name":"f_uninit_ext_past_eof","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5700,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_ext_past_eof/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":283,"date":"2020-03-21","sha1":"d15a0c0bb1790a4bd66aad8748e9563514dc299d","md5":"84edf5ba5f36894d4d442315f9e48463","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_ext_past_eof/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":283,"date":"2020-03-21","sha1":"d15a0c0bb1790a4bd66aad8748e9563514dc299d","md5":"84edf5ba5f36894d4d442315f9e48463","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_ext_past_eof/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":5102,"date":"2020-03-21","sha1":"65b17e843630165387eb3d0a28fb18463c8ce208","md5":"1c0a27eb491ea97406271bf2864b66da","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Thu May 17 14:20:38 2012, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_ext_past_eof/name","type":"file","name":"name","base_name":"name","extension":"","size":32,"date":"2020-03-21","sha1":"137e22d675cc1cd195c0969edde008a36baf7cee","md5":"c3907260c6461b3ff9987f59e0525705","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_ext_past_eof2","type":"directory","name":"f_uninit_ext_past_eof2","base_name":"f_uninit_ext_past_eof2","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1595,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_ext_past_eof2/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":277,"date":"2020-03-21","sha1":"c27a484bd7e5060bb3cdc713fa91155d531770d9","md5":"0bc01e61723e7f4df2a0ad1182aac706","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_ext_past_eof2/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"c27a484bd7e5060bb3cdc713fa91155d531770d9","md5":"0bc01e61723e7f4df2a0ad1182aac706","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_ext_past_eof2/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":989,"date":"2020-03-21","sha1":"7a45d005121a5e9ecb47f221003381c954d3bfc9","md5":"404ab0273fee85a1dff37e131141bdbb","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Thu Jul 25 19:07:15 2013, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_ext_past_eof2/name","type":"file","name":"name","base_name":"name","extension":"","size":52,"date":"2020-03-21","sha1":"4f9c7d3b408ffffbfb0f105f5aa2120137db0d46","md5":"871889bf39d59f6ca60530e6c98a21fc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_last_uninit","type":"directory","name":"f_uninit_last_uninit","base_name":"f_uninit_last_uninit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1163,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_last_uninit/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":330,"date":"2020-03-21","sha1":"67365edcfe4ab43d09dbd84c55b9966c08814bed","md5":"4087e99c3b6827b3b65eb2f2c3668a02","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_last_uninit/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":280,"date":"2020-03-21","sha1":"110c22ec970d807b4c10a290e8429332141ac90b","md5":"5c535019304ec0cebd1d86591d6106b8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_last_uninit/name","type":"file","name":"name","base_name":"name","extension":"","size":33,"date":"2020-03-21","sha1":"db51490df94cdf37390052a98c44b8950112fc3c","md5":"6bab8f84c7c35d2edb61ea9c7920e767","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_uninit_last_uninit/script","type":"file","name":"script","base_name":"script","extension":"","size":520,"date":"2020-03-21","sha1":"794c15ab2aed9733795f7a48f505a8a438fc99e0","md5":"0ff56e58a161d839d048074bcb0e88d1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unshare_blocks_no_space","type":"directory","name":"f_unshare_blocks_no_space","base_name":"f_unshare_blocks_no_space","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":9755,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unshare_blocks_no_space/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":7888,"date":"2020-03-21","sha1":"2dc116acdc2d79d63ab61ea90356bbf37b8ec794","md5":"d71e81ae55248b64b3fc13fd73a08b37","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unshare_blocks_no_space/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":277,"date":"2020-03-21","sha1":"d000dddfb468a79d4fa00a4580b1b0e9bd4b8b02","md5":"6207f9d41443f3920ae7c6e6e30763b8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unshare_blocks_no_space/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1490,"date":"2020-03-21","sha1":"869f5e09e84017e1828bcf08ccc68b12ad3bf6fe","md5":"65e2a8e8c5835c874317f835349d178f","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Mon Mar 05 20:34:09 2018, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unshare_blocks_no_space/name","type":"file","name":"name","base_name":"name","extension":"","size":46,"date":"2020-03-21","sha1":"b9aef603a68729a4e485d4609d66f3d163a2240e","md5":"cd79242859bade426657e35135cfc2ff","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unshare_blocks_no_space/script","type":"file","name":"script","base_name":"script","extension":"","size":54,"date":"2020-03-21","sha1":"0616fe36af2859b9a6bdf729343560b70a126b64","md5":"fcb4b622585d8ffe6fe6b3658cdfc3dc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unshare_blocks_ok","type":"directory","name":"f_unshare_blocks_ok","base_name":"f_unshare_blocks_ok","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":2316,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unshare_blocks_ok/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1127,"date":"2020-03-21","sha1":"e5bb2aceb78936aa13d78d7925d0eb756003cb45","md5":"6d779667f324921f22b91d9b4be6e469","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unshare_blocks_ok/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":276,"date":"2020-03-21","sha1":"80de5a021e08d560bd1d2635d4de73707f3ff5da","md5":"efac3cb07c85784372e489a1a4cb9501","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unshare_blocks_ok/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":831,"date":"2020-03-21","sha1":"7af13274c4e29f35dd9a9ae7691dcfc771c2a614","md5":"5a66dc126f88c840a95754c2c155f2e1","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Sat Mar 03 02:14:29 2018, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unshare_blocks_ok/name","type":"file","name":"name","base_name":"name","extension":"","size":28,"date":"2020-03-21","sha1":"052d6b65fd23ac92a8b28e94a3c3d5bcdf036a1b","md5":"fa1033728ade72e77498db4e2d0963cb","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unshare_blocks_ok/script","type":"file","name":"script","base_name":"script","extension":"","size":54,"date":"2020-03-21","sha1":"0616fe36af2859b9a6bdf729343560b70a126b64","md5":"fcb4b622585d8ffe6fe6b3658cdfc3dc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unsorted_EAs","type":"directory","name":"f_unsorted_EAs","base_name":"f_unsorted_EAs","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":16370,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unsorted_EAs/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":370,"date":"2020-03-21","sha1":"b94562efd168fae45520fb85819e1fe9fc8e2eef","md5":"de7f9243db4bef4ba65ab341ae3aad64","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unsorted_EAs/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"13634f0615df94e1ed7ae0a871bdb363fe4f4b3e","md5":"4c9295f716be47f302c9a7601970d14c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unsorted_EAs/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":15674,"date":"2020-03-21","sha1":"2cc3f23b0b65bf343da4ce213178f3ab61014dcc","md5":"60ac90e6a40a717f64b11e58f7660181","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Apr 20 19:44:51 2007, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unsorted_EAs/name","type":"file","name":"name","base_name":"name","extension":"","size":44,"date":"2020-03-21","sha1":"100bb6a94a00cb88cee7575a42d11622f2cf01f4","md5":"93d214d3747bd33715029f3da27baaa6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unused_itable","type":"directory","name":"f_unused_itable","base_name":"f_unused_itable","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3601,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unused_itable/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":959,"date":"2020-03-21","sha1":"65fd4d50122b876be50eb8d0c173ae870f76cfad","md5":"3e916fa6e031fe9da5c2a85782df1166","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unused_itable/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":280,"date":"2020-03-21","sha1":"25055c193b15b504eaf8bb91673d6343e0ac5449","md5":"c84611c0c3c2ce5f1bfab88732633065","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unused_itable/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2310,"date":"2020-03-21","sha1":"cc82382a8b6b0bc2978f9d5eb0cde12f3b75d5f7","md5":"37919d3ba93e3e109850c04fc5df3ade","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Mon May 10 20:42:57 2010, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_unused_itable/name","type":"file","name":"name","base_name":"name","extension":"","size":52,"date":"2020-03-21","sha1":"bd3d6dc37046480c1e5f51300b6ae4549d28f0a7","md5":"684f532e78d97447e3abc9ec0c6f0198","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_valid_ea_in_inode","type":"directory","name":"f_valid_ea_in_inode","base_name":"f_valid_ea_in_inode","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1704,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_valid_ea_in_inode/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":277,"date":"2020-03-21","sha1":"d355cc365f2d4b1a52f3bc50cbdd9a4ab63333bb","md5":"eeeef898f26d73944b1215e67ec2c98c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_valid_ea_in_inode/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1356,"date":"2020-03-21","sha1":"af4997f20802d0af6fb0e2da425f876e5ff99b1e","md5":"ed1fae0093bc402b1649296dfffc97f5","mime_type":"application/x-gzip","file_type":"gzip compressed data, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_valid_ea_in_inode/name","type":"file","name":"name","base_name":"name","extension":"","size":28,"date":"2020-03-21","sha1":"9ec43b477f5b157def1f781b33ff2646387b1c0c","md5":"1af00ea36f58ead21a0511da5c3e6854","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_valid_ea_in_inode/script","type":"file","name":"script","base_name":"script","extension":"","size":43,"date":"2020-03-21","sha1":"d6198035f9abae70d4d992fa350500ba3f59baca","md5":"fa544f8ae3d6262f4f705543ad583853","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_verity","type":"directory","name":"f_verity","base_name":"f_verity","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":3214,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_verity/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":278,"date":"2020-03-21","sha1":"901a91e7b100fa1640bad659f7d22a7032b33814","md5":"7243a69f8edcdcd742daf6223659a51b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_verity/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2247,"date":"2020-03-21","sha1":"3dcb90eb313cd23d33d9e3cb398fb0e02bbcff3c","md5":"f68ad146a166de3546b9ebd3cefd4769","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Tue May 28 22:50:09 2019, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_verity/mkimage.sh","type":"file","name":"mkimage.sh","base_name":"mkimage","extension":".sh","size":634,"date":"2020-03-21","sha1":"009c065129d2d1c6541569f2f893b532b66d7ca6","md5":"2983eff2eab6ce559d5c177d5f392126","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_verity/name","type":"file","name":"name","base_name":"name","extension":"","size":12,"date":"2020-03-21","sha1":"6216a5a0c0ad46b88cec8981fc22208803f684d3","md5":"7127832f6bd3a1e9176b9b2f1f0e8afe","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_verity/script","type":"file","name":"script","base_name":"script","extension":"","size":43,"date":"2020-03-21","sha1":"d6198035f9abae70d4d992fa350500ba3f59baca","md5":"fa544f8ae3d6262f4f705543ad583853","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_write_ea_no_extra_isize","type":"directory","name":"f_write_ea_no_extra_isize","base_name":"f_write_ea_no_extra_isize","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3626,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_write_ea_no_extra_isize/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":797,"date":"2020-03-21","sha1":"a661cb77c3955e21652907db64e68be7305f5b62","md5":"7df73ae71e370ad5dd96a98e9e12699b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_write_ea_no_extra_isize/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"0995d429f52ff614e5eff63f47b8015a729be8ff","md5":"467423e1e8cfc98a2c6884d8ae03526b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_write_ea_no_extra_isize/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2516,"date":"2020-03-21","sha1":"7d8a8ee2b468fb2fb98c8ba4b152edafe717c5b5","md5":"208a23502be973c32c7e7ac933d4268a","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Sun Dec 21 19:38:47 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_write_ea_no_extra_isize/name","type":"file","name":"name","base_name":"name","extension":"","size":35,"date":"2020-03-21","sha1":"d8f437b331763c9c231d2a4d300d7d4e305b5f70","md5":"ab03445e678d5bb0d7afc17cf398e4d9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_write_ea_toobig_extra_isize","type":"directory","name":"f_write_ea_toobig_extra_isize","base_name":"f_write_ea_toobig_extra_isize","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3697,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_write_ea_toobig_extra_isize/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":856,"date":"2020-03-21","sha1":"c4a060680be30cf0881260ba5daf1fd5e0729752","md5":"3f1d17e5401a7ba8f82b5ecdb7c878e7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_write_ea_toobig_extra_isize/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"0995d429f52ff614e5eff63f47b8015a729be8ff","md5":"467423e1e8cfc98a2c6884d8ae03526b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_write_ea_toobig_extra_isize/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2518,"date":"2020-03-21","sha1":"8fa3958f98d2f77d9f8f384c513c1339a6529018","md5":"b3503c50af09eaa686a01a4b9076757b","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Mon Dec 22 02:06:21 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_write_ea_toobig_extra_isize/name","type":"file","name":"name","base_name":"name","extension":"","size":45,"date":"2020-03-21","sha1":"f64973666e3e6ddd2b324c3d686f54091a85af6d","md5":"9d2769cae351fc669d88fb97cd965f4a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_write_ea_toosmall_extra_isize","type":"directory","name":"f_write_ea_toosmall_extra_isize","base_name":"f_write_ea_toosmall_extra_isize","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3689,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_write_ea_toosmall_extra_isize/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":854,"date":"2020-03-21","sha1":"2c45aa37eedbf7d7990334c54914c9bb6342291a","md5":"9a36b449bea8a9f70951f1302338bc58","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_write_ea_toosmall_extra_isize/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"0995d429f52ff614e5eff63f47b8015a729be8ff","md5":"467423e1e8cfc98a2c6884d8ae03526b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_write_ea_toosmall_extra_isize/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2517,"date":"2020-03-21","sha1":"d6053725752a9a781d62e3a18e24f7fa7fdfb169","md5":"2089a4f59e43805518f7778c23f62194","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Mon Dec 22 18:48:30 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_write_ea_toosmall_extra_isize/name","type":"file","name":"name","base_name":"name","extension":"","size":40,"date":"2020-03-21","sha1":"079d6af6e922118ef02527e991bf9b0aae1296d6","md5":"7fb0156e5d3756f77a26841022db722b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_yes","type":"directory","name":"f_yes","base_name":"f_yes","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2608,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_yes/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1935,"date":"2020-03-21","sha1":"7e525187b0ac834fe0377504d0edd9a079c185e5","md5":"658eb271c254cba39f0a7dd0f0ac49e3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_yes/script","type":"file","name":"script","base_name":"script","extension":"","size":673,"date":"2020-03-21","sha1":"86f1c7b5938b25555d237a4c8623785b34ff8157","md5":"24f974cc37d1556f7421f65c4fba0fca","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_yesall","type":"directory","name":"f_yesall","base_name":"f_yesall","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":5052,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_yesall/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1796,"date":"2020-03-21","sha1":"2f1a9670ebaab8a39b0429372906538d0fdc5b6d","md5":"f3f62f2c52c4d0a7e8d0a08d4cc3d27d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_yesall/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2597,"date":"2020-03-21","sha1":"1c8e8d35d27cb8c47f735ea18960642a8e6908c1","md5":"19f0d24c37b6e67bff3c42fe9b1df29a","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Fri Jan 16 00:33:09 2015, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_yesall/script","type":"file","name":"script","base_name":"script","extension":"","size":659,"date":"2020-03-21","sha1":"45a137277b2d5746b5c42f0712a9ffec12af9583","md5":"8292b8540c1b75335517907fb16718d1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_yesthenall","type":"directory","name":"f_yesthenall","base_name":"f_yesthenall","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2552,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_yesthenall/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1872,"date":"2020-03-21","sha1":"89dc1ea394fa11446cd4f72e50e2517b645a273f","md5":"35fe995cdcf72801db08416bb51daad5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_yesthenall/script","type":"file","name":"script","base_name":"script","extension":"","size":680,"date":"2020-03-21","sha1":"3c7dea94ed0ac8c91e3c8b756911fd1d702d5967","md5":"2382ac31783009311195f10db55beabd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_yesthenno","type":"directory","name":"f_yesthenno","base_name":"f_yesthenno","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2673,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_yesthenno/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":2001,"date":"2020-03-21","sha1":"e3234372e7435d206809304c2d420a46ca3cb4e4","md5":"95cc5950cbaf88e25fd453c6807c1fff","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_yesthenno/script","type":"file","name":"script","base_name":"script","extension":"","size":672,"date":"2020-03-21","sha1":"0d7d09b8f05066c424e09f43ebd8d94d5c3701bb","md5":"294c6530b18dd3e0153f3f062eb04f7b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_group","type":"directory","name":"f_zero_group","base_name":"f_zero_group","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":14370,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_group/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":730,"date":"2020-03-21","sha1":"c2604362e4bdd7634b30acf6098354d96a664804","md5":"160fec876b18cc32c379f9d8e226a8e2","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_group/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"4dfc670eb6005869502d37558b69d357c962050b","md5":"75f829dad8ab093c294b7b86a234b9a5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_group/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":13319,"date":"2020-03-21","sha1":"409d3a8c24bbdb8721dd9adc3e741780deef9a38","md5":"7dc9b0c925cbf5f40ed2246ea596ae94","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Oct 15 18:41:53 1996, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_group/name","type":"file","name":"name","base_name":"name","extension":"","size":39,"date":"2020-03-21","sha1":"d2b3518dbe06ec40d840797e4d5e5adf0e9afe2c","md5":"e18e69f38769873c582aaeb3a04d46ed","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_inode_size","type":"directory","name":"f_zero_inode_size","base_name":"f_zero_inode_size","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":11498,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_inode_size/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":441,"date":"2020-03-21","sha1":"ae9db72c799185e90d9488b47c5b1a6f4cd2d6ed","md5":"a0e44e6efc87144d869f5726e4221354","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_inode_size/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"1d37e61fd0fa07056c4cad0472a96e8800379364","md5":"709867201a32646c34af9b74c8c26808","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_inode_size/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":10741,"date":"2020-03-21","sha1":"27449d38713c3d286edd8bf028cf7427e37a1523","md5":"427b01bad1e457786a7bf75d39ecdc37","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Fri Sep 07 20:57:28 2007, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_inode_size/name","type":"file","name":"name","base_name":"name","extension":"","size":34,"date":"2020-03-21","sha1":"32f77eb6d91528d0f9a877ebb2a3bcade83d7958","md5":"d7aec4e586e93097ca7b0ac78cc3d965","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_super","type":"directory","name":"f_zero_super","base_name":"f_zero_super","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":14270,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_super/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":694,"date":"2020-03-21","sha1":"cb19d1301bcc7fcba7df929745b04d83283ec248","md5":"6c9c40492592e039da0990cbe69af317","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_super/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":282,"date":"2020-03-21","sha1":"4dfc670eb6005869502d37558b69d357c962050b","md5":"75f829dad8ab093c294b7b86a234b9a5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_super/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":13262,"date":"2020-03-21","sha1":"2b0948414e18ae90277666da2f49d4547cf33da3","md5":"34fc654fbaeb1f17f83430f6e3d6d909","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Oct 15 18:40:53 1996, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_super/name","type":"file","name":"name","base_name":"name","extension":"","size":32,"date":"2020-03-21","sha1":"65286b83ed3fc5dcb9eff835b08dfa9e6b35b74e","md5":"e35cc46edc1d12ec0b7bf1cc0fa90c0e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_xattr","type":"directory","name":"f_zero_xattr","base_name":"f_zero_xattr","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":1076,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_xattr/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":277,"date":"2020-03-21","sha1":"c4c381537097a4cf9cc94b7d460d1aa939eadd2f","md5":"b792d9764473b08b117864fe3e09d791","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_xattr/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":707,"date":"2020-03-21","sha1":"c1e4d0f20648d58dc8ff42234059550df4c76e25","md5":"36a0f8d40c5c770fc897bab307de6853","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Thu Apr 25 04:12:12 2013, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_xattr/name","type":"file","name":"name","base_name":"name","extension":"","size":49,"date":"2020-03-21","sha1":"f8c8247b3859382b96242eba9a5d7bc26a6e74d1","md5":"555b95a69a59a7c05a9be87c482ce4ce","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zero_xattr/script","type":"file","name":"script","base_name":"script","extension":"","size":43,"date":"2020-03-21","sha1":"d6198035f9abae70d4d992fa350500ba3f59baca","md5":"fa544f8ae3d6262f4f705543ad583853","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zeroed_ext_header","type":"directory","name":"f_zeroed_ext_header","base_name":"f_zeroed_ext_header","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2373,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zeroed_ext_header/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":612,"date":"2020-03-21","sha1":"410bc507f41910bb5e818eeb9e15e8168a650a40","md5":"95233bc8b29eff7f83e1f03eb8956e2e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zeroed_ext_header/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":278,"date":"2020-03-21","sha1":"c76f78ae444b23da2ab45a19be3a46fb81bfacaf","md5":"c986ee4f1e22964e857ecfd7bad2ecbd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zeroed_ext_header/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":1447,"date":"2020-03-21","sha1":"c59d28a2d8f2e7abc4b39e42092d0143b5c96d9b","md5":"9f334ec1f7e7acc7ccf0b01285f4939e","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Sat Nov 28 21:39:31 2015, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/f_zeroed_ext_header/name","type":"file","name":"name","base_name":"name","extension":"","size":36,"date":"2020-03-21","sha1":"875f521c084dd03d4f984f18eabfee3e2fac7470","md5":"0785f3815b04cc552a6dfeba3611ee84","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_bad_csum","type":"directory","name":"i_bad_csum","base_name":"i_bad_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":3727,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_bad_csum/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":413,"date":"2020-03-21","sha1":"acc13794cfb4efe887e375eec8d809a93f795fcd","md5":"bedf7c194628ea3e9a59658abcf7e88b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_bad_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2606,"date":"2020-03-21","sha1":"0f59adcbdbd779825902fd6d380e5a6542195f92","md5":"0b34276f3b87142f33c04911094c4d9b","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Sat Jul 26 00:11:56 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_bad_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":48,"date":"2020-03-21","sha1":"9a14d6bdfdc6884ec48aa912997893804497d654","md5":"d884ffcfebd46a03b3c8aed800fe44f9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_bad_csum/script","type":"file","name":"script","base_name":"script","extension":"","size":660,"date":"2020-03-21","sha1":"e9d4534297cb876b10adf485d07b9867c15e706f","md5":"f25182a62da2c26065f79d86a8d1ffbd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_bitmaps","type":"directory","name":"i_bitmaps","base_name":"i_bitmaps","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":4980,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_bitmaps/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":180,"date":"2020-03-21","sha1":"8e9aeed02f479e631293761aac299f1bc487d6c6","md5":"bb3fb3fedda8ba3e0e720e792e05814a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_bitmaps/image.bz2","type":"file","name":"image.bz2","base_name":"image","extension":".bz2","size":4026,"date":"2020-03-21","sha1":"b1a132e2cdcd54188467d960c16d93e8fb42623d","md5":"35600437220420dacedfa369b28a1ba9","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_bitmaps/script","type":"file","name":"script","base_name":"script","extension":"","size":774,"date":"2020-03-21","sha1":"81f2483916bc865956d75140105e6cfc7480d3c2","md5":"286d5ecce151176997853b4eed4f0a31","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_qcow","type":"directory","name":"i_qcow","base_name":"i_qcow","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":957892,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_qcow/i_qcow.crc","type":"file","name":"i_qcow.crc","base_name":"i_qcow","extension":".crc","size":314,"date":"2020-03-21","sha1":"806f1d674669baa0a7436149ad5ae7eae315475a","md5":"55b6fc855e4fe7b3450a30b4e785cd32","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_qcow/image1024.orig.bz2","type":"file","name":"image1024.orig.bz2","base_name":"image1024.orig","extension":".bz2","size":322312,"date":"2020-03-21","sha1":"e5a701ae2ffb62e6f5925003799162604ed880ca","md5":"6234498601e4ed3aa04c3ca0a67c2ac5","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_qcow/image2048.orig.bz2","type":"file","name":"image2048.orig.bz2","base_name":"image2048.orig","extension":".bz2","size":321388,"date":"2020-03-21","sha1":"bdd14cb19dccd655b42d266da01043cb56f77114","md5":"0966c8a6d2d0402048baefb21d6c13a5","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_qcow/image4096.orig.bz2","type":"file","name":"image4096.orig.bz2","base_name":"image4096.orig","extension":".bz2","size":312342,"date":"2020-03-21","sha1":"14e09075bf0fde03497d18ba0a5b322d6561ee92","md5":"1e0d23a5e1ead4f654a7893ceb7ff284","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_qcow/script","type":"file","name":"script","base_name":"script","extension":"","size":1536,"date":"2020-03-21","sha1":"b9035034f15c79572048bba8149f65b12b5cc445","md5":"d2f3d853fd86f0da6669e731e279af39","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_zero_super","type":"directory","name":"i_zero_super","base_name":"i_zero_super","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":14128,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_zero_super/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":605,"date":"2020-03-21","sha1":"56dd758b7c565ae748b6dbfc7c6fb0d1cf27ef09","md5":"fc6cccfceb510393d142e0b5e5228e98","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_zero_super/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":13262,"date":"2020-03-21","sha1":"2b0948414e18ae90277666da2f49d4547cf33da3","md5":"34fc654fbaeb1f17f83430f6e3d6d909","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Oct 15 18:40:53 1996, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/i_zero_super/script","type":"file","name":"script","base_name":"script","extension":"","size":261,"date":"2020-03-21","sha1":"a1082707e761cbfa9b4a865f4347d4f50d1a0d22","md5":"46d9da64ebb8a7292308d6fa3cf6faec","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_commit_csum","type":"directory","name":"j_corrupt_commit_csum","base_name":"j_corrupt_commit_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":6705,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_commit_csum/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":2724,"date":"2020-03-21","sha1":"611677da4c6f8ebac8e3fc70060761d387e46e88","md5":"04ac8d3a7c406fc84a6f1e0c73f3caa4","mime_type":"text/plain","file_type":"ASCII text, with very long lines","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_commit_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2949,"date":"2020-03-21","sha1":"cf66fa69ebce967b1d24d222035111df63431ea4","md5":"fe2d505523631c5674c05a89767b98cb","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Aug 13 05:50:09 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_commit_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":30,"date":"2020-03-21","sha1":"efa3b4e2ae6bd5ad5297cfa66ddffb1c03ebf8d2","md5":"d9e9af5e1110731e0e3ec2ec6fb2eb22","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_commit_csum/script","type":"file","name":"script","base_name":"script","extension":"","size":1002,"date":"2020-03-21","sha1":"ea3e6723fbb2da08b11b3a44d465520babda3390","md5":"f2fefae322d2980cde6cff9e81b9f378","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_commit_tid","type":"directory","name":"j_corrupt_commit_tid","base_name":"j_corrupt_commit_tid","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":6653,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_commit_tid/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":2669,"date":"2020-03-21","sha1":"64f850ffbee6368e2df3600d95917ebf5e2c568e","md5":"bf910a98c00a4196386317dc8a9351e4","mime_type":"text/plain","file_type":"ASCII text, with very long lines","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_commit_tid/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2953,"date":"2020-03-21","sha1":"6e79af0020afca61eeb1b1643e00241e4ae87232","md5":"77b8a16aaf0882a7125c6c86da091b44","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Aug 13 05:51:36 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_commit_tid/name","type":"file","name":"name","base_name":"name","extension":"","size":29,"date":"2020-03-21","sha1":"f4e7d1ef36476f88cd1f8a8b400284683e15335b","md5":"9f0cc762c71fab4f7ea1d5b0308c3d46","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_commit_tid/script","type":"file","name":"script","base_name":"script","extension":"","size":1002,"date":"2020-03-21","sha1":"ea3e6723fbb2da08b11b3a44d465520babda3390","md5":"f2fefae322d2980cde6cff9e81b9f378","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_descr_csum","type":"directory","name":"j_corrupt_descr_csum","base_name":"j_corrupt_descr_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":7758,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_descr_csum/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":3738,"date":"2020-03-21","sha1":"c11e7781c922fdcf8cc671318e5cd346910e6d4e","md5":"8f46e3874b7d3f66e5361647c827f0b2","mime_type":"text/plain","file_type":"ASCII text, with very long lines","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_descr_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2989,"date":"2020-03-21","sha1":"16048d9c361c93da658106cf7495c520c8baacc4","md5":"d4b1b84fe0e58c85d445cfd443dd0575","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Aug 13 06:33:52 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_descr_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":29,"date":"2020-03-21","sha1":"392166393145dc7ad77c3a9f5cdd5909d59b71f0","md5":"fbf991b76ba5645c6cb14a9c1ea6f919","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_descr_csum/script","type":"file","name":"script","base_name":"script","extension":"","size":1002,"date":"2020-03-21","sha1":"ea3e6723fbb2da08b11b3a44d465520babda3390","md5":"f2fefae322d2980cde6cff9e81b9f378","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_descr_tid","type":"directory","name":"j_corrupt_descr_tid","base_name":"j_corrupt_descr_tid","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":7722,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_descr_tid/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":3693,"date":"2020-03-21","sha1":"68689e66776f85fa5fcb16eb5e7dcf5f91540f26","md5":"01d173e813ac93411d7b384b5fe3e0f9","mime_type":"text/plain","file_type":"ASCII text, with very long lines","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_descr_tid/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2999,"date":"2020-03-21","sha1":"40734686b365175b31e03f392cd7397c37fc4775","md5":"3af916059a3323aa4f77292fa42ab430","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Aug 13 06:36:18 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_descr_tid/name","type":"file","name":"name","base_name":"name","extension":"","size":28,"date":"2020-03-21","sha1":"f32b3a1622287ed986914af358371aeb51d06f1b","md5":"4e538e3cfc2411b8a3286c87d0bc98f1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_descr_tid/script","type":"file","name":"script","base_name":"script","extension":"","size":1002,"date":"2020-03-21","sha1":"ea3e6723fbb2da08b11b3a44d465520babda3390","md5":"f2fefae322d2980cde6cff9e81b9f378","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_ext_jnl_sb_block","type":"directory","name":"j_corrupt_ext_jnl_sb_block","base_name":"j_corrupt_ext_jnl_sb_block","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2092,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_ext_jnl_sb_block/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":143,"date":"2020-03-21","sha1":"47075bcb493b2b4841f755bf7477b36c2c56e3b0","md5":"946d251ebf16236268ecf6798aca2be7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_ext_jnl_sb_block/image.tar.bz2","type":"file","name":"image.tar.bz2","base_name":"image","extension":".tar.bz2","size":939,"date":"2020-03-21","sha1":"547ac0d6e4eae3e0d1299d5809063be95c5d67be","md5":"6486b891e121d7a65e3df52cd5f8fc02","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_ext_jnl_sb_block/name","type":"file","name":"name","base_name":"name","extension":"","size":42,"date":"2020-03-21","sha1":"3bd03215982a6e8f30b5c14e27c643691d82b363","md5":"7875f3bfba951905315963f451450fb0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_ext_jnl_sb_block/script","type":"file","name":"script","base_name":"script","extension":"","size":968,"date":"2020-03-21","sha1":"aaa74c03f1a12da489c84404c443eaa1b1d5651f","md5":"ed44a01f078e0a2714441e61204b3540","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_ext_jnl_sb_csum","type":"directory","name":"j_corrupt_ext_jnl_sb_csum","base_name":"j_corrupt_ext_jnl_sb_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":2961,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_ext_jnl_sb_csum/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":877,"date":"2020-03-21","sha1":"140f6cceec91d4d93aed6b870abcf8f42b332a6b","md5":"7786be5bd3a75206174edcfeb20f02d0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_ext_jnl_sb_csum/image.tar.bz2","type":"file","name":"image.tar.bz2","base_name":"image","extension":".tar.bz2","size":929,"date":"2020-03-21","sha1":"7e95b6a500544e2adfc62d2c0a67c718539d176a","md5":"bb6e8a66868b972b3be7ff67e0ccc5c7","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_ext_jnl_sb_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":50,"date":"2020-03-21","sha1":"88fbe3e8f20360970a6e0d0c4565dfb82f078fc3","md5":"8c70be5a7e1ac23a4001aaebc4916f07","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_ext_jnl_sb_csum/script","type":"file","name":"script","base_name":"script","extension":"","size":1105,"date":"2020-03-21","sha1":"95b90b3e32c8e2078f378103825c8ab8ee2652fa","md5":"65398a99ceab442be25b199421d98300","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_journal_block","type":"directory","name":"j_corrupt_journal_block","base_name":"j_corrupt_journal_block","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":7822,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_journal_block/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":3791,"date":"2020-03-21","sha1":"95f84b5b3156f2fa3ad63e48636c5bb6b4aa62db","md5":"06bde2ef3a687676f399e7773440e9fe","mime_type":"text/plain","file_type":"ASCII text, with very long lines","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_journal_block/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2984,"date":"2020-03-21","sha1":"b2b96512a067552e0d7b4ed5235864e0b67ac969","md5":"9a36032cbece2a02247e26bf6f343845","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Thu Sep 11 18:22:35 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_journal_block/name","type":"file","name":"name","base_name":"name","extension":"","size":32,"date":"2020-03-21","sha1":"ad8c8367c28c2a156284089df17b7cd31822ae18","md5":"e45b78275ca4b01fbe0ead9afc3a5150","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_journal_block/script","type":"file","name":"script","base_name":"script","extension":"","size":1015,"date":"2020-03-21","sha1":"2a878f75d0fe9a5ba9049e0075914f2508b8be83","md5":"8a7f655700402582867466275e8d2186","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_revoke_block","type":"directory","name":"j_corrupt_revoke_block","base_name":"j_corrupt_revoke_block","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":6740,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_revoke_block/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":2669,"date":"2020-03-21","sha1":"68a90872db678fa067ffdfaf9d6fcee2c801ca8b","md5":"eb47dbd4277c09490490a2569c18df29","mime_type":"text/plain","file_type":"ASCII text, with very long lines","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_revoke_block/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3038,"date":"2020-03-21","sha1":"ed60072cdc5b072e33b5fa383345ab224d8fdbf5","md5":"44dfe9e8a0f6933b33ac55bbc8eba19f","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Aug 13 05:32:39 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_revoke_block/name","type":"file","name":"name","base_name":"name","extension":"","size":31,"date":"2020-03-21","sha1":"66f60411cd37af3c29ac20bc17d61bf626b64a4e","md5":"19697c47335c100e4a41d85724166022","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_revoke_block/script","type":"file","name":"script","base_name":"script","extension":"","size":1002,"date":"2020-03-21","sha1":"ea3e6723fbb2da08b11b3a44d465520babda3390","md5":"f2fefae322d2980cde6cff9e81b9f378","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_revoke_csum","type":"directory","name":"j_corrupt_revoke_csum","base_name":"j_corrupt_revoke_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":6735,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_revoke_csum/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":2669,"date":"2020-03-21","sha1":"68a90872db678fa067ffdfaf9d6fcee2c801ca8b","md5":"eb47dbd4277c09490490a2569c18df29","mime_type":"text/plain","file_type":"ASCII text, with very long lines","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_revoke_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3034,"date":"2020-03-21","sha1":"bf04d78dfccc2ca7da057e6ae1019e32b527cd81","md5":"db8064b731a43baa3b80df69f0d8dfa8","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Aug 13 05:30:05 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_revoke_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":30,"date":"2020-03-21","sha1":"c23be040e2d3a3d53ace4fc7497250b7726a651a","md5":"869724abbc1f30609034962bbcd12ad0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_revoke_csum/script","type":"file","name":"script","base_name":"script","extension":"","size":1002,"date":"2020-03-21","sha1":"ea3e6723fbb2da08b11b3a44d465520babda3390","md5":"f2fefae322d2980cde6cff9e81b9f378","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_revoke_rcount","type":"directory","name":"j_corrupt_revoke_rcount","base_name":"j_corrupt_revoke_rcount","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":9358,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_revoke_rcount/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":390,"date":"2020-03-21","sha1":"096d0f326977417250a8b0fc73e68b78ad087c56","md5":"84bd4933a49462a477e9e7f6dc7ec38d","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_revoke_rcount/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":281,"date":"2020-03-21","sha1":"86772aec9178ad356fda24dc0c4ef325c19395c3","md5":"b428e384359540c76d1e457e46e41e42","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_revoke_rcount/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":8648,"date":"2020-03-21","sha1":"fd1bb3ed97d85696a40fb40bf72cf4157f607486","md5":"b5af45ce51996fd76aaafdbf43a3a11c","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed May 13 00:41:22 2015, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_revoke_rcount/name","type":"file","name":"name","base_name":"name","extension":"","size":39,"date":"2020-03-21","sha1":"78ebd8bd94d48637374e5e3e6e14e61a72b00be7","md5":"c45c1d678ba4aff255f98f1f84eb3e8c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_sb_csum","type":"directory","name":"j_corrupt_sb_csum","base_name":"j_corrupt_sb_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":6787,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_sb_csum/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":2729,"date":"2020-03-21","sha1":"b46b3dd27cd0d20cb80d6797b5e584ae9d1d3371","md5":"8d62ffb6c9a05a13dcc8f0977424ee1b","mime_type":"text/plain","file_type":"ASCII text, with very long lines","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_sb_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3030,"date":"2020-03-21","sha1":"23a69e888f5c1c588bf399ec9743eb02d720d4f0","md5":"f7c62a4e702161c68ddc10326bba8e37","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Aug 13 05:24:44 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_sb_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":26,"date":"2020-03-21","sha1":"17e42f099c1383d894f5b7682df3633d3292176c","md5":"c3aa68ecaeda94bd47bc5b4378ce75b8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_sb_csum/script","type":"file","name":"script","base_name":"script","extension":"","size":1002,"date":"2020-03-21","sha1":"ea3e6723fbb2da08b11b3a44d465520babda3390","md5":"f2fefae322d2980cde6cff9e81b9f378","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_sb_magic","type":"directory","name":"j_corrupt_sb_magic","base_name":"j_corrupt_sb_magic","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":7273,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_sb_magic/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":3208,"date":"2020-03-21","sha1":"785de82691e9f5bf0720da031770b6ef3bd9e724","md5":"25f2134a0e294d129ee2ac4a9bf3a933","mime_type":"text/plain","file_type":"ASCII text, with very long lines","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_sb_magic/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3036,"date":"2020-03-21","sha1":"903164dc6e377a923144b2af639d35707ba9c001","md5":"c6f777a10cd1711e8d283e2875dfa6fd","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Wed Aug 13 05:15:56 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_sb_magic/name","type":"file","name":"name","base_name":"name","extension":"","size":27,"date":"2020-03-21","sha1":"551d24e01546cdda267f5b3218a571c488effbfc","md5":"c181a5f55e0826e4f874abe3874dce04","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_corrupt_sb_magic/script","type":"file","name":"script","base_name":"script","extension":"","size":1002,"date":"2020-03-21","sha1":"ea3e6723fbb2da08b11b3a44d465520babda3390","md5":"f2fefae322d2980cde6cff9e81b9f378","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_ext_dumpe2fs","type":"directory","name":"j_ext_dumpe2fs","base_name":"j_ext_dumpe2fs","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5660,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_ext_dumpe2fs/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1872,"date":"2020-03-21","sha1":"c71563e3eb2d7cdbc68f9f1e258c6fc5b4694fba","md5":"235051d8aac7e5bbbb025276d0d23b10","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_ext_dumpe2fs/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2963,"date":"2020-03-21","sha1":"857ef2949bf3ff9405222934dfd3843efef0ce00","md5":"af774bce224ec5a176a8d5f049ae411f","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Sat Sep 06 08:03:58 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_ext_dumpe2fs/name","type":"file","name":"name","base_name":"name","extension":"","size":36,"date":"2020-03-21","sha1":"bfc8953eae85667597ae2acc2efb77c7e68ea83b","md5":"102e8eca9b8b90d0d38624a34b51c083","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_ext_dumpe2fs/script","type":"file","name":"script","base_name":"script","extension":"","size":789,"date":"2020-03-21","sha1":"d6e8653b36240f148017d2690ce24691ec460bd2","md5":"3459dd5ff45617caf3638f8debfd28d3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_ext_long_revoke_trans","type":"directory","name":"j_ext_long_revoke_trans","base_name":"j_ext_long_revoke_trans","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":7111,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_ext_long_revoke_trans/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":5042,"date":"2020-03-21","sha1":"9c6a3b126077009e994c9a35ed19b1d56b19dc65","md5":"c80ca38ea91d23463d5b327475921b83","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_ext_long_revoke_trans/name","type":"file","name":"name","base_name":"name","extension":"","size":47,"date":"2020-03-21","sha1":"14ffbbcf6ed67007f098cc7f77e0c59796204591","md5":"afbf1bb77ff806030f8694751dd8f133","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_ext_long_revoke_trans/script","type":"file","name":"script","base_name":"script","extension":"","size":2022,"date":"2020-03-21","sha1":"8d8f35009737678ac4cab8e9ddea9d03c8ad9081","md5":"7ffcb05ff83c9e97fc8b6320f4c09163","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_ext_long_trans","type":"directory","name":"j_ext_long_trans","base_name":"j_ext_long_trans","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":6569,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_ext_long_trans/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":4612,"date":"2020-03-21","sha1":"138d4147a2253b1ee98afaadb54826160599a044","md5":"4baeddae21a68773ce209157f4c7f22b","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_ext_long_trans/name","type":"file","name":"name","base_name":"name","extension":"","size":46,"date":"2020-03-21","sha1":"9f20c3649f8cab3264b6d1b03d37ca9646d96e53","md5":"5f57cc1001d81c3ab3543d3ed03d397f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_ext_long_trans/script","type":"file","name":"script","base_name":"script","extension":"","size":1911,"date":"2020-03-21","sha1":"7d221e380cf3961d370bc87d3568d9641d791774","md5":"160fe91531e60526e34946417739da96","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_revoke_trans","type":"directory","name":"j_long_revoke_trans","base_name":"j_long_revoke_trans","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":6046,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_revoke_trans/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":4593,"date":"2020-03-21","sha1":"a455a3e19ec4047c3288cb57fdfa3032e1ecb28c","md5":"d4a9c3bca99aaf0f04cbaadd22291aa9","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_revoke_trans/name","type":"file","name":"name","base_name":"name","extension":"","size":38,"date":"2020-03-21","sha1":"654aed3d04ef2d491347da703781bc668a25f7f6","md5":"da1126f8a50fbd55d70da1df9045706e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_revoke_trans/script","type":"file","name":"script","base_name":"script","extension":"","size":1415,"date":"2020-03-21","sha1":"4163686816996b04fe7c8fb943c84f83e3177718","md5":"d0c46f508ae3fbd13de505d1f5cf3e98","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_revoke_trans_mcsum_32bit","type":"directory","name":"j_long_revoke_trans_mcsum_32bit","base_name":"j_long_revoke_trans_mcsum_32bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":8668,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_revoke_trans_mcsum_32bit/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":7055,"date":"2020-03-21","sha1":"5c999af406ce810feecab8a88ca49ddc769123f0","md5":"c008c84ed48b73cbab36aaf998a13de5","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_revoke_trans_mcsum_32bit/name","type":"file","name":"name","base_name":"name","extension":"","size":44,"date":"2020-03-21","sha1":"492c516abb05b9d569b81c3fbf75c9d8b598b593","md5":"d9f9edaaf730166f2ccbd48952a5bf6c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_revoke_trans_mcsum_32bit/script","type":"file","name":"script","base_name":"script","extension":"","size":1569,"date":"2020-03-21","sha1":"065374e657396af1ac0f7e35d504dfec242d4690","md5":"836f670e814df504ac5603152d7a1a5d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_revoke_trans_mcsum_64bit","type":"directory","name":"j_long_revoke_trans_mcsum_64bit","base_name":"j_long_revoke_trans_mcsum_64bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":9540,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_revoke_trans_mcsum_64bit/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":7929,"date":"2020-03-21","sha1":"71a34f2a7a8367dc76d575ae581db0204c32c87e","md5":"7c2f77635706a3dd10a3bf23956c14c9","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_revoke_trans_mcsum_64bit/name","type":"file","name":"name","base_name":"name","extension":"","size":43,"date":"2020-03-21","sha1":"f73fdbf1450e93eddfbd075c393080a90c16ca33","md5":"ce6cb5450ffec5d6ae39416729ab6a31","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_revoke_trans_mcsum_64bit/script","type":"file","name":"script","base_name":"script","extension":"","size":1568,"date":"2020-03-21","sha1":"63fa7d6e377f3525ed0b2bb6af91f224f43a4264","md5":"8c4e248b7e6a9b92c678ccb26006cdb0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_trans","type":"directory","name":"j_long_trans","base_name":"j_long_trans","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":5800,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_trans/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":4445,"date":"2020-03-21","sha1":"0b0d36d07019585da000c689a7baa46cede309c2","md5":"8d9d2d6ab53ccb2bafa94c49ecd16f63","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_trans/name","type":"file","name":"name","base_name":"name","extension":"","size":30,"date":"2020-03-21","sha1":"03e63486bd63f5ea3110d6577c14d75bb7939418","md5":"4f9c9ea7e6da7bb833fab4acca4c5308","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_trans/script","type":"file","name":"script","base_name":"script","extension":"","size":1325,"date":"2020-03-21","sha1":"c38d2a2ce7452f4ce2366db3c276afc5f3abf2d0","md5":"a8743421db7e7b84e5f5823f70e58669","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_trans_mcsum_32bit","type":"directory","name":"j_long_trans_mcsum_32bit","base_name":"j_long_trans_mcsum_32bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":8464,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_trans_mcsum_32bit/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":6945,"date":"2020-03-21","sha1":"cc487bc47df555ed581071bfeb66e48b7e8fa610","md5":"be346bb58d8a0fd82d0c20f730c85e17","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_trans_mcsum_32bit/name","type":"file","name":"name","base_name":"name","extension":"","size":40,"date":"2020-03-21","sha1":"0ce49c715be674ac89d5946a4e08cf35cf0170dd","md5":"c1368be0eeffc64e1d4f6b700d9ce8db","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_trans_mcsum_32bit/script","type":"file","name":"script","base_name":"script","extension":"","size":1479,"date":"2020-03-21","sha1":"f060001c9617a6a47f20ca5c660cf255060beb12","md5":"aef190a292bf5bf30496b89d333be4ef","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_trans_mcsum_64bit","type":"directory","name":"j_long_trans_mcsum_64bit","base_name":"j_long_trans_mcsum_64bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":8329,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_trans_mcsum_64bit/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":6811,"date":"2020-03-21","sha1":"a42d4845e51577081cc8792eaf62407697ef9073","md5":"b29e2f9770fde19b6fc1b59d7a8bf7c9","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_trans_mcsum_64bit/name","type":"file","name":"name","base_name":"name","extension":"","size":40,"date":"2020-03-21","sha1":"28d1bd00cab790092153900395a5a9d011bf975d","md5":"0f06a4779b2fed73043675924ab61691","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_long_trans_mcsum_64bit/script","type":"file","name":"script","base_name":"script","extension":"","size":1478,"date":"2020-03-21","sha1":"a4dab0db95def2495143700d2f33932177409b5f","md5":"6603d345c527928004a389bf540cbc6d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum2_32bit","type":"directory","name":"j_recover_csum2_32bit","base_name":"j_recover_csum2_32bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":5002,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum2_32bit/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":577,"date":"2020-03-21","sha1":"2bfba5f51a0cdaa52789fdd8da90c0c8a83852fc","md5":"58aacc23d8219e6d2a1456803a598aa4","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum2_32bit/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":284,"date":"2020-03-21","sha1":"27c26518c3aba28e376b31f7dd593b71b890eceb","md5":"7c8a3c9b4fb118efe5c796fc6d522303","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum2_32bit/image.bz2","type":"file","name":"image.bz2","base_name":"image","extension":".bz2","size":3371,"date":"2020-03-21","sha1":"00c0880764d49015434086235712916bb8035f02","md5":"6e14b1a9b3bc9fed8f74063882dc00eb","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum2_32bit/name","type":"file","name":"name","base_name":"name","extension":"","size":35,"date":"2020-03-21","sha1":"4af87972559c40302b123cbb56be3510d7be4013","md5":"6a14753be9eb3810797a9f7c9012592c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum2_32bit/script","type":"file","name":"script","base_name":"script","extension":"","size":735,"date":"2020-03-21","sha1":"3b3e3293372b5642cabfb03ec09eeff8dfa703b0","md5":"8646ab248caaf329582a25ca300f1796","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum2_64bit","type":"directory","name":"j_recover_csum2_64bit","base_name":"j_recover_csum2_64bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":5117,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum2_64bit/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":577,"date":"2020-03-21","sha1":"2bfba5f51a0cdaa52789fdd8da90c0c8a83852fc","md5":"58aacc23d8219e6d2a1456803a598aa4","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum2_64bit/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":284,"date":"2020-03-21","sha1":"27c26518c3aba28e376b31f7dd593b71b890eceb","md5":"7c8a3c9b4fb118efe5c796fc6d522303","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum2_64bit/image.bz2","type":"file","name":"image.bz2","base_name":"image","extension":".bz2","size":3486,"date":"2020-03-21","sha1":"303ea655eb31b41cfe10a1a21bab23cb75f45ec5","md5":"7bf03e40c3d4e9a31a5f28e507b9ce95","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum2_64bit/name","type":"file","name":"name","base_name":"name","extension":"","size":35,"date":"2020-03-21","sha1":"01b851ec7a0f7c2e1c7ea299f748d8b4eaf11d75","md5":"0625969bb564795562e2533662e76065","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum2_64bit/script","type":"file","name":"script","base_name":"script","extension":"","size":735,"date":"2020-03-21","sha1":"3b3e3293372b5642cabfb03ec09eeff8dfa703b0","md5":"8646ab248caaf329582a25ca300f1796","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum3_64bit","type":"directory","name":"j_recover_csum3_64bit","base_name":"j_recover_csum3_64bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":5693,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum3_64bit/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":488,"date":"2020-03-21","sha1":"d569bdccdd51f736303731963ed5d92b605f3e7c","md5":"c5f718ee904abf3724d811e145da3feb","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum3_64bit/expect.2","type":"file","name":"expect.2","base_name":"expect","extension":".2","size":285,"date":"2020-03-21","sha1":"54830c174ebe59d8c9d551dca9b408256c2a2268","md5":"86f4c4a27acc029d4e2ffca02c8abea3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum3_64bit/image.bz2","type":"file","name":"image.bz2","base_name":"image","extension":".bz2","size":4150,"date":"2020-03-21","sha1":"70d22bbc21fa0c24a5efaf1a2d2151edefd8ec80","md5":"7cec1370fb72df38be67410b271d8fcc","mime_type":"application/x-bzip2","file_type":"bzip2 compressed data, block size = 900k","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum3_64bit/name","type":"file","name":"name","base_name":"name","extension":"","size":35,"date":"2020-03-21","sha1":"96dbf9822ca5ac64caee35d9a0efdf7be5d69170","md5":"69021a81427a4851696e3a30560b3a81","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_recover_csum3_64bit/script","type":"file","name":"script","base_name":"script","extension":"","size":735,"date":"2020-03-21","sha1":"3b3e3293372b5642cabfb03ec09eeff8dfa703b0","md5":"8646ab248caaf329582a25ca300f1796","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_revoke_trans","type":"directory","name":"j_short_revoke_trans","base_name":"j_short_revoke_trans","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":2883,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_revoke_trans/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1309,"date":"2020-03-21","sha1":"1127fbfdd66f40ffb699632bb40a842b665b5aef","md5":"1e0dff94e755f7332590a2dabbf939a7","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_revoke_trans/name","type":"file","name":"name","base_name":"name","extension":"","size":44,"date":"2020-03-21","sha1":"e5d54bf314c55d284d4dd369b604555095b2403a","md5":"da7c3adf601bbc05742e32198df3a59a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_revoke_trans/script","type":"file","name":"script","base_name":"script","extension":"","size":1530,"date":"2020-03-21","sha1":"7baec59ebf84a36841f5e1cfd419956be3bd894d","md5":"e8f1386bf0eb858168658de89a184b1c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_revoke_trans_mcsum_64bit","type":"directory","name":"j_short_revoke_trans_mcsum_64bit","base_name":"j_short_revoke_trans_mcsum_64bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":3165,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_revoke_trans_mcsum_64bit/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1440,"date":"2020-03-21","sha1":"a5512e4dda570da6151b7863c90c1d0ed180da90","md5":"bfca1a5fcf8b904e63437dafbdfee680","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_revoke_trans_mcsum_64bit/name","type":"file","name":"name","base_name":"name","extension":"","size":41,"date":"2020-03-21","sha1":"c9a10cd619472e4c2d3c507b5da05c5ff5024db0","md5":"423120e4e283ffc50536647d2d70d65a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_revoke_trans_mcsum_64bit/script","type":"file","name":"script","base_name":"script","extension":"","size":1684,"date":"2020-03-21","sha1":"c8951f3c7796b4d3536474f9286f47cecf96c042","md5":"7793d2b0566e85cad9b80bff470381f9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans","type":"directory","name":"j_short_trans","base_name":"j_short_trans","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":2849,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1404,"date":"2020-03-21","sha1":"d626e68859bb51839e9a57484b8643c916980290","md5":"1e11dd0438d7c4c57f39766ff56498dc","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans/name","type":"file","name":"name","base_name":"name","extension":"","size":31,"date":"2020-03-21","sha1":"2987154edc3e7fc7b4c666a9cc9de8aba6b7b7df","md5":"e752b5771b4237eaa5536ff6d709a6c7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans/script","type":"file","name":"script","base_name":"script","extension":"","size":1414,"date":"2020-03-21","sha1":"b5644a4e7be78e3b533fbb931ac419de9cb21dbc","md5":"53ce3afbb973a237c498eb873aa3dc02","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_64bit","type":"directory","name":"j_short_trans_64bit","base_name":"j_short_trans_64bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":3067,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_64bit/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1477,"date":"2020-03-21","sha1":"028e34b3954cfa12f7ab22d3df37b94725544d99","md5":"bb8210bf694084653f2f22106771b47c","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_64bit/name","type":"file","name":"name","base_name":"name","extension":"","size":40,"date":"2020-03-21","sha1":"ae8961e6a5a38614fc1f0fbfdef24fae5dda27ee","md5":"9f104081af8b9e2a92f70e29f4d1bd40","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_64bit/script","type":"file","name":"script","base_name":"script","extension":"","size":1550,"date":"2020-03-21","sha1":"e9b3ed869528ace46798f9be17c75384ba175d28","md5":"89dfb6c7060b98848c4e3ef62ed5af61","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_mcsum_64bit","type":"directory","name":"j_short_trans_mcsum_64bit","base_name":"j_short_trans_mcsum_64bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":3163,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_mcsum_64bit/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1558,"date":"2020-03-21","sha1":"d7b8e2bb634fd306a2c1c13719f705c2b7837d37","md5":"2b56aee1aadd0edf25cf392f8dc57f5b","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_mcsum_64bit/name","type":"file","name":"name","base_name":"name","extension":"","size":37,"date":"2020-03-21","sha1":"82c6873cf6d2fefc9a4e9f58cc4350544818f392","md5":"38fef890312eba1240245c15678d82df","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_mcsum_64bit/script","type":"file","name":"script","base_name":"script","extension":"","size":1568,"date":"2020-03-21","sha1":"016fa13cdfbe83436826040e4285996c9d3ea97f","md5":"30cf37536f1af121f47452832843973d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_old_csum","type":"directory","name":"j_short_trans_old_csum","base_name":"j_short_trans_old_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":3064,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_old_csum/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1480,"date":"2020-03-21","sha1":"06e17f904350d5dbfbd2072463ec8f8fbdc5d886","md5":"43a0de58edadbd07e8979d4fa739a098","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_old_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":37,"date":"2020-03-21","sha1":"7321ed6f6a19e359541c76a9005b0be3bedb1276","md5":"1c7202d79e349400c35e48a534d67c4c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_old_csum/script","type":"file","name":"script","base_name":"script","extension":"","size":1547,"date":"2020-03-21","sha1":"efd2d27ccbbf5225d9bf3498b01f7c2d1cd6b0e2","md5":"31f05daff1b20b4ffb8505ccf342f198","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_open_recover","type":"directory","name":"j_short_trans_open_recover","base_name":"j_short_trans_open_recover","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":3149,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_open_recover/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1522,"date":"2020-03-21","sha1":"bb0b4813c05f9ed231ec4f9f5bf99c2727fcf7d6","md5":"aa7dbccc9a98dae6d47f0578a1d53f53","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_open_recover/name","type":"file","name":"name","base_name":"name","extension":"","size":27,"date":"2020-03-21","sha1":"80a29d52ddb6b474b3ac2f4b1fe85b75c939adcc","md5":"13aba62695e2ae881409cf0cc9348a7b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_open_recover/script","type":"file","name":"script","base_name":"script","extension":"","size":1600,"date":"2020-03-21","sha1":"cc1700cf8ef0f53afd0aa6c5ca93d0dfa0a4d4a7","md5":"c3caec0523d93c1771b53aa7b66a7139","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_recover","type":"directory","name":"j_short_trans_recover","base_name":"j_short_trans_recover","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":3200,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_recover/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1516,"date":"2020-03-21","sha1":"662ff74f0af53516dbde9f277bc4109b30b2aa77","md5":"7ce0ce47c2576106d3fe65f1d237a581","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_recover/name","type":"file","name":"name","base_name":"name","extension":"","size":50,"date":"2020-03-21","sha1":"b4737d10ea90f09f371022da2abab28e17e7ee02","md5":"6aa4b0f143baafaf39475fdd56914868","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_recover/script","type":"file","name":"script","base_name":"script","extension":"","size":1634,"date":"2020-03-21","sha1":"f82f9db9375e3953d53f8c06839630011654fe45","md5":"98e901aeb16e5785ca22ea9158a416e3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_recover_mcsum_64bit","type":"directory","name":"j_short_trans_recover_mcsum_64bit","base_name":"j_short_trans_recover_mcsum_64bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":3551,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_recover_mcsum_64bit/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1695,"date":"2020-03-21","sha1":"ba8ec865f9354d68f59f1d0e5c2e19846c4d9331","md5":"23830e7ed8c17be3f51503b20836fb39","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_recover_mcsum_64bit/name","type":"file","name":"name","base_name":"name","extension":"","size":42,"date":"2020-03-21","sha1":"01200ca86c61f21da6967f1554ea148c8d1469d3","md5":"5de83322f167059328e1b3520dc192f0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_trans_recover_mcsum_64bit/script","type":"file","name":"script","base_name":"script","extension":"","size":1814,"date":"2020-03-21","sha1":"6e0d8b8416ee523df849aece5ba749e8c5a060bf","md5":"6019a30e82f35e87e7bbecdb4c55ee91","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_uncommitted_trans","type":"directory","name":"j_short_uncommitted_trans","base_name":"j_short_uncommitted_trans","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":2444,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_uncommitted_trans/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":988,"date":"2020-03-21","sha1":"c96bedd877d99da6ae0c90213c3ea8673cff4e83","md5":"ddc6ec4b2d681389ba0f5dd2821c9e1c","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_uncommitted_trans/name","type":"file","name":"name","base_name":"name","extension":"","size":39,"date":"2020-03-21","sha1":"f9654938c7cdf0a5a587c4d7028a411a6f07e19e","md5":"7e12bd6ab1aba76d48cffd2205b2e6e6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_uncommitted_trans/script","type":"file","name":"script","base_name":"script","extension":"","size":1417,"date":"2020-03-21","sha1":"56145750cc90c847378f355559ef7d2cc3b7a377","md5":"eef3815f1dbfdd7ffb9eee8394093c0d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_uncommitted_trans_mcsum_64bit","type":"directory","name":"j_short_uncommitted_trans_mcsum_64bit","base_name":"j_short_uncommitted_trans_mcsum_64bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":2702,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_uncommitted_trans_mcsum_64bit/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1091,"date":"2020-03-21","sha1":"b28edf80f1aae423c56abc541d6b18dd11fe8842","md5":"1a11a708dc63a1bf5f4c1fe80a7ad79a","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_uncommitted_trans_mcsum_64bit/name","type":"file","name":"name","base_name":"name","extension":"","size":40,"date":"2020-03-21","sha1":"efb39256efdafdb006c450794ac8e94dee349800","md5":"1eeed2028bdecc01dd1ed579fc2ee1b1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/j_short_uncommitted_trans_mcsum_64bit/script","type":"file","name":"script","base_name":"script","extension":"","size":1571,"date":"2020-03-21","sha1":"47a5e68337811257318da1e7069f8b0afce4f729","md5":"c581eb3aa1cc2945a32ba95d23b195b4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_64bit_flexbg","type":"directory","name":"m_64bit_flexbg","base_name":"m_64bit_flexbg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2086,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_64bit_flexbg/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1972,"date":"2020-03-21","sha1":"2bd2acd01978c1c538ccf69a1a8f6382cb6e8848","md5":"ef85933cbe62fe1bc5d00ea5020d6ce9","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_64bit_flexbg/script","type":"file","name":"script","base_name":"script","extension":"","size":114,"date":"2020-03-21","sha1":"1537e0f05db4a19bae0dc6068a4bf7bed83b58eb","md5":"ef3fb5566d4011f2aa8ec32f3b33efdf","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_bigjournal","type":"directory","name":"m_bigjournal","base_name":"m_bigjournal","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":26706,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_bigjournal/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":26299,"date":"2020-03-21","sha1":"a8dd977470630d645db19b76385fe92f22acf8e1","md5":"d7c1566a2867e07e2893fd09f53f0d29","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_bigjournal/script","type":"file","name":"script","base_name":"script","extension":"","size":407,"date":"2020-03-21","sha1":"6d522c824ba4ea2ab29a40455e13defc8c291036","md5":"46f6b08850c7a88ec6152730cca55ccc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_dasd_bs","type":"directory","name":"m_dasd_bs","base_name":"m_dasd_bs","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2428,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_dasd_bs/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":2266,"date":"2020-03-21","sha1":"09b77d3b417383c274cfd856f2825404c36faf26","md5":"dd8c9b04d5bf89dec78c107612cadf07","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_dasd_bs/script","type":"file","name":"script","base_name":"script","extension":"","size":162,"date":"2020-03-21","sha1":"8e27c431b41072f6bed1cd56b20c3d316728ab7d","md5":"7e5884c8faa50e15970668be2afcccc3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_desc_size_128","type":"directory","name":"m_desc_size_128","base_name":"m_desc_size_128","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":31953,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_desc_size_128/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":31708,"date":"2020-03-21","sha1":"79934d357e71f649ef113af1b4e255cf00bf922b","md5":"e21cab2e08570e063eb308d07525e588","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_desc_size_128/script","type":"file","name":"script","base_name":"script","extension":"","size":245,"date":"2020-03-21","sha1":"ef8ec223d462ec2b03538def37c1ee4a676d510b","md5":"fae5c78f44cbae7aaa27fe8509fb5918","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_devdir","type":"directory","name":"m_devdir","base_name":"m_devdir","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":816,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_devdir/script","type":"file","name":"script","base_name":"script","extension":"","size":816,"date":"2020-03-21","sha1":"aac9475bd5008d9c46b514ff6a0deddaf91a0867","md5":"e90805d8302e1a81164fce2993d48de3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_error_behavior","type":"directory","name":"m_error_behavior","base_name":"m_error_behavior","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":3912,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_error_behavior/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":722,"date":"2020-03-21","sha1":"0eb09f6633997db29a9b70056964e5b03d8e24bf","md5":"ac4ebf8475b81ebda909d4f09d534349","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_error_behavior/script","type":"file","name":"script","base_name":"script","extension":"","size":3190,"date":"2020-03-21","sha1":"ab8fecf4460b4ae912225a18e27bb0793281f20f","md5":"c11b298e3a67e00dcff166a2a98f75d6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_extent_journal","type":"directory","name":"m_extent_journal","base_name":"m_extent_journal","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":4436,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_extent_journal/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":4255,"date":"2020-03-21","sha1":"007d89b605d7efd06da20ae59a7c247d178a868f","md5":"7f653dd24798a11d54b3aabace9707be","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_extent_journal/script","type":"file","name":"script","base_name":"script","extension":"","size":181,"date":"2020-03-21","sha1":"acfba1163c5eb790506c304a2ba14429f88317bf","md5":"45a1cb6362f49736c5dc5b8e02ca5ec6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_hugefile","type":"directory","name":"m_hugefile","base_name":"m_hugefile","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":3611,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_hugefile/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":797,"date":"2020-03-21","sha1":"30ec4be4b765943382e9920c21fd9df8d005475a","md5":"13187e074bb16d103d79d953e2836699","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_hugefile/name","type":"file","name":"name","base_name":"name","extension":"","size":45,"date":"2020-03-21","sha1":"b098986f0279a3c127587920f67e4aeb7cc2502d","md5":"953295e5062e596edd0f35827765f250","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_hugefile/script","type":"file","name":"script","base_name":"script","extension":"","size":2769,"date":"2020-03-21","sha1":"bcb50b23ba03686e263e5176479b7c1187856312","md5":"f68d8c6a36251c93ac70a9eac5586fe1","mime_type":"text/plain","file_type":"awk or perl script, ASCII text","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_hugefile_slack","type":"directory","name":"m_hugefile_slack","base_name":"m_hugefile_slack","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":1978,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_hugefile_slack/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":721,"date":"2020-03-21","sha1":"1521bf7a885b0eb5a883f353f4607435734503ba","md5":"2323c86bf05db48d019245b75016c123","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_hugefile_slack/name","type":"file","name":"name","base_name":"name","extension":"","size":37,"date":"2020-03-21","sha1":"817e50eb785e5ca0659726e2fdeaf21a52ff9284","md5":"f15122786090db65122ad5b168beefcd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_hugefile_slack/script","type":"file","name":"script","base_name":"script","extension":"","size":1220,"date":"2020-03-21","sha1":"4c25e606854567aa9bf917a046fd4d5659066153","md5":"b18faa797893300d3f1989179bbf775a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_image_mmp","type":"directory","name":"m_image_mmp","base_name":"m_image_mmp","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":878,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_image_mmp/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":277,"date":"2020-03-21","sha1":"6e53caef8bbc5485bf4a8cb3ff0d021f3478b4ca","md5":"09c5077da00420a9e8ad447d09728d3d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_image_mmp/name","type":"file","name":"name","base_name":"name","extension":"","size":70,"date":"2020-03-21","sha1":"8dd3df421a39275fbaa34d80fdb8a3b6d3f2b214","md5":"a8fa73873da4d87ed658d3e20dc0dc53","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_image_mmp/script","type":"file","name":"script","base_name":"script","extension":"","size":531,"date":"2020-03-21","sha1":"19ba76cd5c4a47cea332935be3973b318b2d89b0","md5":"c732182cd925805e11ad4198bacd9e5c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_large_file","type":"directory","name":"m_large_file","base_name":"m_large_file","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2119,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_large_file/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1937,"date":"2020-03-21","sha1":"4bf35a35ca7d59f2cf6e13188e121dbcdd54b4c2","md5":"b9976b1dc0ddea4d808e21587dd56acb","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_large_file/script","type":"file","name":"script","base_name":"script","extension":"","size":182,"date":"2020-03-21","sha1":"5ceaac8fbb9e809a8a64393e522350ce667db361","md5":"545cd8d679340db62fefdc258268df21","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mcsum_extjournal","type":"directory","name":"m_mcsum_extjournal","base_name":"m_mcsum_extjournal","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":875,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mcsum_extjournal/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":187,"date":"2020-03-21","sha1":"774272f3880b571ec6901ce83476df02b854cd2b","md5":"7094cef5d4ff08a7a188675c244b1ce0","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mcsum_extjournal/name","type":"file","name":"name","base_name":"name","extension":"","size":57,"date":"2020-03-21","sha1":"de2ff58f5feaf5ff72e19b61818c2a4f69a7f7f1","md5":"ffbaa15cd0d72ddb4e28fbcced451bb4","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mcsum_extjournal/script","type":"file","name":"script","base_name":"script","extension":"","size":631,"date":"2020-03-21","sha1":"406950617f857b6f56fd02c05840188e64b08408","md5":"b633b663653437de66cb5c8524588163","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_meta_bg","type":"directory","name":"m_meta_bg","base_name":"m_meta_bg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":31551,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_meta_bg/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":31335,"date":"2020-03-21","sha1":"f50b520015a6cb5582185727a11057c88aa8d822","md5":"79a94481f8cb85d06404a8d5019908b0","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_meta_bg/script","type":"file","name":"script","base_name":"script","extension":"","size":216,"date":"2020-03-21","sha1":"cca0e5f45ef6af7a8d3420b339838a771b55c30e","md5":"695d73ecee7f4c2196c032f09b7d9be9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_minrootdir","type":"directory","name":"m_minrootdir","base_name":"m_minrootdir","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":10210,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_minrootdir/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":7270,"date":"2020-03-21","sha1":"d67217bd90b5106697a5f13c64ef34c94676c3c1","md5":"ed75ce70c3cbec8a179813edd5aabefe","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_minrootdir/output.sed","type":"file","name":"output.sed","base_name":"output","extension":".sed","size":550,"date":"2020-03-21","sha1":"858be2e0552db591cdd1c2a234797322668163ab","md5":"a9bcfa09150c8048446c0adcd3da0e58","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_minrootdir/script","type":"file","name":"script","base_name":"script","extension":"","size":2390,"date":"2020-03-21","sha1":"5eb56c6e7b9d5e0aadbf196ab6663cd1624e29cf","md5":"aef79b6a2c3922b4fa0aeb60b9c16e3b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mkfs_overhead","type":"directory","name":"m_mkfs_overhead","base_name":"m_mkfs_overhead","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":781,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mkfs_overhead/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":95,"date":"2020-03-21","sha1":"86c8b1b51917fa0fb2436076cc12bc630bfb6e26","md5":"898550ba626ce46541ee9c073c8f90d7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mkfs_overhead/script","type":"file","name":"script","base_name":"script","extension":"","size":686,"date":"2020-03-21","sha1":"bb4e442c0a47d74149627e96d325ea8888fa45ee","md5":"eea75333a3f20c8da51b1aeede4cb2d1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mmp","type":"directory","name":"m_mmp","base_name":"m_mmp","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2835,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mmp/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":2643,"date":"2020-03-21","sha1":"6728f8746605d471448574e126740d8ad335aee2","md5":"9f261f4c0afc00cd2f285e7046682c66","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mmp/script","type":"file","name":"script","base_name":"script","extension":"","size":192,"date":"2020-03-21","sha1":"6ddfbfe42fb50b85e9bb50924392c9a8f5ee7feb","md5":"056725179d66bc6c52667336b6b60eff","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mmp_bad_csum","type":"directory","name":"m_mmp_bad_csum","base_name":"m_mmp_bad_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":4062,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mmp_bad_csum/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":788,"date":"2020-03-21","sha1":"22f55b2d0e969032a738022f3d52c5dba1dc6bb6","md5":"9c78947d01e0e8452bce22fcbb865d28","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mmp_bad_csum/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2594,"date":"2020-03-21","sha1":"94870e2101ea969a7328c6fcc595e07c962f9f05","md5":"a392677b8b502e6a3c9df66e3069287b","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 05:36:04 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mmp_bad_csum/name","type":"file","name":"name","base_name":"name","extension":"","size":34,"date":"2020-03-21","sha1":"47a019e9a88bec17e68415b3ef2fd0f96078b393","md5":"382ddf16b3f808534b23a891b6819998","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mmp_bad_csum/script","type":"file","name":"script","base_name":"script","extension":"","size":646,"date":"2020-03-21","sha1":"ba6b3d9342cb10f389fec3798bee9c0bb3f5b501","md5":"37663edf0d505dbf28008419b9c85902","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mmp_bad_magic","type":"directory","name":"m_mmp_bad_magic","base_name":"m_mmp_bad_magic","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":5,"dirs_count":0,"size_count":4314,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mmp_bad_magic/.log","type":"file","name":".log","base_name":".log","extension":"","size":323,"date":"2020-03-21","sha1":"75953eef47259ab8a92140dd2d1f1844de903044","md5":"49605e4624eabe778dafbe6e92f5eabc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mmp_bad_magic/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":713,"date":"2020-03-21","sha1":"29e12d8f61b2e3be51345641168660c67fb56a71","md5":"e4aa63088c415ddcbeaa348e46cb5543","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mmp_bad_magic/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":2597,"date":"2020-03-21","sha1":"35fc620ff98990927e04d05e95441650271c41c2","md5":"d592d370ce1fe0527ef02fa69657e69b","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Jul 29 05:35:39 2014, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mmp_bad_magic/name","type":"file","name":"name","base_name":"name","extension":"","size":35,"date":"2020-03-21","sha1":"2f4f40a621ec6cc27284c24605d4088a87d209a5","md5":"944cb3f7fcba5ffe2ba82b35b7670f50","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_mmp_bad_magic/script","type":"file","name":"script","base_name":"script","extension":"","size":646,"date":"2020-03-21","sha1":"ba6b3d9342cb10f389fec3798bee9c0bb3f5b501","md5":"37663edf0d505dbf28008419b9c85902","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_no_opt","type":"directory","name":"m_no_opt","base_name":"m_no_opt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":4056,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_no_opt/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":3824,"date":"2020-03-21","sha1":"daa547fefd47fe1dd95cad94746a92ac315fe02f","md5":"50b0873d05c2fd16c5c184f894540024","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_no_opt/script","type":"file","name":"script","base_name":"script","extension":"","size":232,"date":"2020-03-21","sha1":"3f16c09f6efd045014337c5183cc7bb2848f0fb1","md5":"e29b994d37fd08e3202c0d53e6d75089","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_offset","type":"directory","name":"m_offset","base_name":"m_offset","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1529,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_offset/script","type":"file","name":"script","base_name":"script","extension":"","size":1529,"date":"2020-03-21","sha1":"92a41ffb63a300d315a3220f7a1c9d637a7ba86b","md5":"f39d3d016f5f485e7c54e3c24c8aa415","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_quota","type":"directory","name":"m_quota","base_name":"m_quota","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":6384,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_quota/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":6101,"date":"2020-03-21","sha1":"687ae6a05ed1c0ce9b57d8ea45f3ae65c4096f2f","md5":"b9c394014fcf3022301d3564bf58a45c","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_quota/script","type":"file","name":"script","base_name":"script","extension":"","size":283,"date":"2020-03-21","sha1":"afac86a1d24904c73e5da994fd66701d775df0f1","md5":"11159356c13443767447b7d2c96f2442","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_raid_opt","type":"directory","name":"m_raid_opt","base_name":"m_raid_opt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":33663,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_raid_opt/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":33467,"date":"2020-03-21","sha1":"03bfe625035355c98f96f2b56e904b4f1f69355a","md5":"26912445037ef13c77937f9abc24fd1d","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_raid_opt/script","type":"file","name":"script","base_name":"script","extension":"","size":196,"date":"2020-03-21","sha1":"ff7d62602578f417c223e8ba1c20d0ca4a04062f","md5":"f9794ed3f43cb8b38bb5fbab4f39aa07","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_resize_inode_meta_bg","type":"directory","name":"m_resize_inode_meta_bg","base_name":"m_resize_inode_meta_bg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":6722,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_resize_inode_meta_bg/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":6515,"date":"2020-03-21","sha1":"ac045873fd0981df9e39ff968a2b35e1bf03f759","md5":"0ba8e4e0a8e2720ecfa749803bd46628","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_resize_inode_meta_bg/script","type":"file","name":"script","base_name":"script","extension":"","size":207,"date":"2020-03-21","sha1":"6bea569637122d75ef74f681cb0874faa7213870","md5":"e69e8de6aab87b98d62c0090db932632","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_root_owner","type":"directory","name":"m_root_owner","base_name":"m_root_owner","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":1961,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_root_owner/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":1853,"date":"2020-03-21","sha1":"fb4f68bc73c6049ae9f67cf29d7683ab61794e21","md5":"e6e2185fdf6e865614d9eed1d705f669","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_root_owner/script","type":"file","name":"script","base_name":"script","extension":"","size":108,"date":"2020-03-21","sha1":"34ae6e63c0a89cbade391d9ee9e1f527e2aa278f","md5":"83ebe01538dda416844d37ad502593af","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_rootdir","type":"directory","name":"m_rootdir","base_name":"m_rootdir","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":6538,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_rootdir/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":3931,"date":"2020-03-21","sha1":"97d66d88cbf9d3c75d6892276d73c951ddf4d972","md5":"75317213980d14b291fc08d144d4a6fa","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_rootdir/output.sed","type":"file","name":"output.sed","base_name":"output","extension":".sed","size":550,"date":"2020-03-21","sha1":"858be2e0552db591cdd1c2a234797322668163ab","md5":"a9bcfa09150c8048446c0adcd3da0e58","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_rootdir/script","type":"file","name":"script","base_name":"script","extension":"","size":2057,"date":"2020-03-21","sha1":"9ec730f5189ea269a50d0fb4b032dc1140a098bd","md5":"7caf1464208bdd8250bf0f5650fdd865","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_std","type":"directory","name":"m_std","base_name":"m_std","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":4111,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_std/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":3952,"date":"2020-03-21","sha1":"5b3a38f942eb93da7b3c64bd865f66f9b492002a","md5":"3376edfd981bde63df94b195df82c6fd","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_std/script","type":"file","name":"script","base_name":"script","extension":"","size":159,"date":"2020-03-21","sha1":"0e3cbc3385c7a85988d7e0dcd3befa475ec90e0d","md5":"b125ae65596d090861e6ff87e24f3d86","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_uninit","type":"directory","name":"m_uninit","base_name":"m_uninit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":7118,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_uninit/expect.1","type":"file","name":"expect.1","base_name":"expect","extension":".1","size":6931,"date":"2020-03-21","sha1":"1c58622888c7f429786de350432e918ecb153c6f","md5":"734b90f3c7eac6ac267911b14d52de74","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/m_uninit/script","type":"file","name":"script","base_name":"script","extension":"","size":187,"date":"2020-03-21","sha1":"6b0b1f2b37733d64e8b788120fac5956b84f424e","md5":"220be7759fc0679896677fbf74a494e1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs","type":"directory","name":"progs","base_name":"progs","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":20,"dirs_count":1,"size_count":46433,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/crcsum.c","type":"file","name":"crcsum.c","base_name":"crcsum","extension":".c","size":1135,"date":"2020-03-21","sha1":"5b9ffb453172b3849bc3b65de2418b0848a59324","md5":"645fce790fe757918e46b6d489ff2b5b","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2013 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/hold_inode.c","type":"file","name":"hold_inode.c","base_name":"hold_inode","extension":".c","size":827,"date":"2020-03-21","sha1":"f724498defe2b6d3bafb35f840e82ea7b704ffb2","md5":"6fdc7846ad40524f9b1424f762fe1b68","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2000 Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":2187,"date":"2020-03-21","sha1":"3783cf5596de77ee264b0c7368f0982ae7405715","md5":"5afe0fc6550dc9f1437c1ac4b071a775","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/random_exercise.c","type":"file","name":"random_exercise.c","base_name":"random_exercise","extension":".c","size":3160,"date":"2020-03-21","sha1":"5e2008f327bb657e2c76f12cba40a20ae36ccbbf","md5":"f7a89382cb3b8e248c3f1b1cb6dc0bc9","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":10,"end_line":12,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright (c) 2000 Theodore Ts'o","start_line":8,"end_line":8}],"holders":[{"value":"Theodore Ts'o","start_line":8,"end_line":8}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_icount.c","type":"file","name":"test_icount.c","base_name":"test_icount","extension":".c","size":8118,"date":"2020-03-21","sha1":"b42fc59039f3f911eed3008187ccdf32a850de79","md5":"9e25a05ae8c85d1ec4e859247bf6f1b1","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_icount.h","type":"file","name":"test_icount.h","base_name":"test_icount","extension":".h","size":604,"date":"2020-03-21","sha1":"87d8e750ef46695bf25e5007c6a6544ac7d08de7","md5":"813fd45384619919c14cf8ae36c39ec0","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_icount_cmds.ct","type":"file","name":"test_icount_cmds.ct","base_name":"test_icount_cmds","extension":".ct","size":772,"date":"2020-03-21","sha1":"0a90cedf35621d172cbfa1ef0bb973ccb5aeb76c","md5":"3e734e16ca83c743e3f670613d14a817","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":2,"end_line":3,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1997 Theodore Ts'o","start_line":2,"end_line":3}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_rel.c","type":"file","name":"test_rel.c","base_name":"test_rel","extension":".c","size":14627,"date":"2020-03-21","sha1":"51d1f2f4d8a1d9ff6eb34be8fca157f7015032b3","md5":"c16837425ea148e980be6b5710a82a1c","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_rel.h","type":"file","name":"test_rel.h","base_name":"test_rel","extension":".h","size":1151,"date":"2020-03-21","sha1":"d48a24591a25ffe0942b1bb030d506170046b8e7","md5":"9fc4691f91496dab05e63f7392a8949c","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":7,"end_line":8,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1997 Theodore Ts'o","start_line":4,"end_line":4}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":4}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_rel_cmds.ct","type":"file","name":"test_rel_cmds.ct","base_name":"test_rel_cmds","extension":".ct","size":2226,"date":"2020-03-21","sha1":"28c3484eba21582a7702c2eb7e7525497fc46cb6","md5":"06735e9446b81b860937127fbe020901","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":2,"end_line":3,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 1997 Theodore Ts'o","start_line":2,"end_line":3}],"holders":[{"value":"Theodore Ts'o","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_data","type":"directory","name":"test_data","base_name":"test_data","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":10,"dirs_count":0,"size_count":11626,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_data/bma.setup","type":"file","name":"bma.setup","base_name":"bma","extension":".setup","size":20,"date":"2020-03-21","sha1":"85910f08235da478d2689cbe1c04d9c9ade53a4d","md5":"729d56845bd31213e93e0d30959f7900","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_data/expect.brel","type":"file","name":"expect.brel","base_name":"expect","extension":".brel","size":1318,"date":"2020-03-21","sha1":"c707fbdfb4597a3b266710fee531b49894fa40a4","md5":"912babf6b0e01dd6b8e9538a74a8b681","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_data/expect.icount","type":"file","name":"expect.icount","base_name":"expect","extension":".icount","size":4657,"date":"2020-03-21","sha1":"44e5841e51ad95dfa158068d33a674f1515bc89a","md5":"77a294ec76632e4b79e9be129e717d2c","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_data/expect.irel","type":"file","name":"expect.irel","base_name":"expect","extension":".irel","size":2098,"date":"2020-03-21","sha1":"d26db6a9fcb13ab44790cf6dcfdf50c29facbc93","md5":"6b6acd3c35466cba75916280b734fb0c","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_data/ima.setup","type":"file","name":"ima.setup","base_name":"ima","extension":".setup","size":20,"date":"2020-03-21","sha1":"ff9458f559a9f676cb5804887f7123b582a32bd3","md5":"80870f716ac880c11ee455d9cefa4311","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_data/normal.setup","type":"file","name":"normal.setup","base_name":"normal","extension":".setup","size":8,"date":"2020-03-21","sha1":"8f9ecbf4d09c084c052f983e41f5580919c9a980","md5":"2b0e36917a1aa01fbf5a1303c087c2f3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_data/opt.setup","type":"file","name":"opt.setup","base_name":"opt","extension":".setup","size":11,"date":"2020-03-21","sha1":"588893765dbc26a08c2762c1a1b7277ac644dca7","md5":"e55147ad05c03e3db8f1d071e120b60d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_data/test.brel","type":"file","name":"test.brel","base_name":"test","extension":".brel","size":689,"date":"2020-03-21","sha1":"81aeeb7c5552cc2e907b8af90def7b7dbe19bce9","md5":"9eb137f7b712128af77326d40a088f65","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1997 by Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_data/test.icount","type":"file","name":"test.icount","base_name":"test","extension":".icount","size":1747,"date":"2020-03-21","sha1":"6de9763526e0fb895966eb09736561c8e49e03de","md5":"50b4f82d069218950d7fb93f6adfba65","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1997 by Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/progs/test_data/test.irel","type":"file","name":"test.irel","base_name":"test","extension":".irel","size":1058,"date":"2020-03-21","sha1":"4ea61ac2a590580617074c6a87344069125279e1","md5":"129bc919ae148b980265fbae58775d2a","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,"licenses":[{"key":"gpl-1.0-plus","score":72.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":4,"end_line":5,"matched_rule":{"identifier":"gpl_25.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":false,"is_license_notice":false,"is_license_reference":true,"is_license_tag":false,"matcher":"2-aho","rule_length":13,"matched_length":13,"match_coverage":100.0,"rule_relevance":72}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright 1997 by Theodore Ts'o","start_line":4,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":4,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_1024_small_bg","type":"directory","name":"r_1024_small_bg","base_name":"r_1024_small_bg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":698,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_1024_small_bg/script","type":"file","name":"script","base_name":"script","extension":"","size":698,"date":"2020-03-21","sha1":"0a2b8d88960ab2c6fa2c5a582384748b571101de","md5":"9038cf9fed1a53e3b1632395e8a894d2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit","type":"directory","name":"r_32to64bit","base_name":"r_32to64bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":5302,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":3482,"date":"2020-03-21","sha1":"1b9bc9b3cf5ce2d7c83cb03a8577587ab7df1e8f","md5":"85a2ce82b9f035063ee4c25f23937a43","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit/name","type":"file","name":"name","base_name":"name","extension":"","size":37,"date":"2020-03-21","sha1":"d14b16ce379a28a38381b543d7b10f84cd1081cb","md5":"1d8e73fd45d372a5c7b2c6ff9bbcee92","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit/script","type":"file","name":"script","base_name":"script","extension":"","size":1783,"date":"2020-03-21","sha1":"2e4bd8bc866736e837d0f348a66ad1fccda8e01e","md5":"112907eff407da0e8763f8459b835ef3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit_expand_full","type":"directory","name":"r_32to64bit_expand_full","base_name":"r_32to64bit_expand_full","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":7222,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit_expand_full/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":5289,"date":"2020-03-21","sha1":"0ab2350ed2185dc0749eb3062576f1da0ad3f5ca","md5":"46f053f122ed9932cd1ad99886f6828c","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit_expand_full/name","type":"file","name":"name","base_name":"name","extension":"","size":32,"date":"2020-03-21","sha1":"f23fa2acf1de15d7d1e1d4b150bdb41249b4b66d","md5":"c0b1a3483e307fd8daf4c07049341247","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit_expand_full/script","type":"file","name":"script","base_name":"script","extension":"","size":1901,"date":"2020-03-21","sha1":"62d8ec2602f2498f2dfb452405a1810b8ad0c869","md5":"b462524ce43c3d837e13785e20482a19","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit_meta","type":"directory","name":"r_32to64bit_meta","base_name":"r_32to64bit_meta","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":4839,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit_meta/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":2984,"date":"2020-03-21","sha1":"9ffe4d5d4321655d9100bd0cd35aa3064857faa2","md5":"fcfe8a1459642fdfdb3b0cdf142208d3","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit_meta/name","type":"file","name":"name","base_name":"name","extension":"","size":37,"date":"2020-03-21","sha1":"4b6ab328d2a5324289e972486eca1ee7b8e1efaf","md5":"23b8ffde6b1916c23abae9169e5583d6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit_meta/script","type":"file","name":"script","base_name":"script","extension":"","size":1818,"date":"2020-03-21","sha1":"47d92158acc66e6ac7c57b62a3e04471d6957d5e","md5":"1500da3dc840c891b955b7ea4498d7e2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit_move_itable","type":"directory","name":"r_32to64bit_move_itable","base_name":"r_32to64bit_move_itable","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":5864,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit_move_itable/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":4008,"date":"2020-03-21","sha1":"2efc721c31fd69e0bd34431a1197a63895f8dd56","md5":"782e75b42edcb96d26316066f6c5f4bb","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit_move_itable/name","type":"file","name":"name","base_name":"name","extension":"","size":35,"date":"2020-03-21","sha1":"f4bfa9cbbf8611bd6c658465c5c067a8e6f4ef28","md5":"5786465c3268b4c13f963ef58e48ebf8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_32to64bit_move_itable/script","type":"file","name":"script","base_name":"script","extension":"","size":1821,"date":"2020-03-21","sha1":"34950e1dedfc785475b081e2539ef091d39152ef","md5":"820a3beb47b98f60798ed8481840f685","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_64bit_big_expand","type":"directory","name":"r_64bit_big_expand","base_name":"r_64bit_big_expand","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":802,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_64bit_big_expand/is_slow_test","type":"file","name":"is_slow_test","base_name":"is_slow_test","extension":"","size":0,"date":"2020-03-21","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_64bit_big_expand/script","type":"file","name":"script","base_name":"script","extension":"","size":802,"date":"2020-03-21","sha1":"db5b1d3394c0bedc3240f55721056407f68c26d6","md5":"55c18e74110ff7431ff1634c7f147461","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_64to32bit","type":"directory","name":"r_64to32bit","base_name":"r_64to32bit","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":5446,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_64to32bit/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":3616,"date":"2020-03-21","sha1":"cd59916fd0c50ad53c67207d8a6366eb9b56aa9b","md5":"82f9fe9aacc9e8ed0adc42fd52211a75","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_64to32bit/name","type":"file","name":"name","base_name":"name","extension":"","size":37,"date":"2020-03-21","sha1":"8984f27b8a265218a677c0cecd6569eae8169212","md5":"140cf2921abb65b3dbc1f85e7e6a082f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_64to32bit/script","type":"file","name":"script","base_name":"script","extension":"","size":1793,"date":"2020-03-21","sha1":"4eb462c41dd5a37a2a531a834407562402107fb5","md5":"3fa710c6bbbb049e0157c91a450a8723","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_64to32bit_meta","type":"directory","name":"r_64to32bit_meta","base_name":"r_64to32bit_meta","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":4823,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_64to32bit_meta/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":2984,"date":"2020-03-21","sha1":"3cbdac63bb3edb68c9214dc313631f08f08d449b","md5":"fefc082c8ea0dc7dc9df2e73bfa55e5a","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_64to32bit_meta/name","type":"file","name":"name","base_name":"name","extension":"","size":37,"date":"2020-03-21","sha1":"1706e7cdd64f88dd0c9f08b07961bcfc0f8a5c9d","md5":"0afe9bef59276872b02bc2d4c433b1e5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_64to32bit_meta/script","type":"file","name":"script","base_name":"script","extension":"","size":1802,"date":"2020-03-21","sha1":"98002a0ce06fbfa95783ab5ab4993b31bf54412e","md5":"edd40e17f89781cc06c0e72fc4ccb5a1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_bigalloc_big_expand","type":"directory","name":"r_bigalloc_big_expand","base_name":"r_bigalloc_big_expand","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":802,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_bigalloc_big_expand/script","type":"file","name":"script","base_name":"script","extension":"","size":802,"date":"2020-03-21","sha1":"b4c22d98fbc6bde2ac476040c74c1d30240f87d9","md5":"a7fac1f456f84b6ac032e52c0dbeb227","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_expand_full","type":"directory","name":"r_expand_full","base_name":"r_expand_full","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":17532,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_expand_full/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":15526,"date":"2020-03-21","sha1":"8b119106e664ef6b145b2a6bb491ebfebeae2308","md5":"2c0856a73485a9d4755e0cf23d9b479c","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_expand_full/name","type":"file","name":"name","base_name":"name","extension":"","size":33,"date":"2020-03-21","sha1":"c8aa327f9d55f4e96f5c7442104e68031c194f3c","md5":"c8e894e757d7a1db94dfc500f01e505e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_expand_full/script","type":"file","name":"script","base_name":"script","extension":"","size":1973,"date":"2020-03-21","sha1":"7d4ed5ec0a97b4bdf471ffd9b53cca99c7d07c4e","md5":"038a5950d638080aaf64525c6e3806dd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_ext4_big_expand","type":"directory","name":"r_ext4_big_expand","base_name":"r_ext4_big_expand","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":785,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_ext4_big_expand/is_slow_test","type":"file","name":"is_slow_test","base_name":"is_slow_test","extension":"","size":0,"date":"2020-03-21","sha1":null,"md5":null,"mime_type":"inode/x-empty","file_type":"empty","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_ext4_big_expand/script","type":"file","name":"script","base_name":"script","extension":"","size":785,"date":"2020-03-21","sha1":"f7ba7a5857dbe08c237bdcf7d696d5f1116be026","md5":"828fd575754b1b672323818c8084a557","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_ext4_small_bg","type":"directory","name":"r_ext4_small_bg","base_name":"r_ext4_small_bg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":696,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_ext4_small_bg/script","type":"file","name":"script","base_name":"script","extension":"","size":696,"date":"2020-03-21","sha1":"ec7b9e28bf01be2f4eff1995fdc585ff69ac44bd","md5":"b28253be7453ef6458d7a55d42f69534","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_fixup_lastbg","type":"directory","name":"r_fixup_lastbg","base_name":"r_fixup_lastbg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2748,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_fixup_lastbg/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1514,"date":"2020-03-21","sha1":"aefe83aaed0e93355b1ab6598eed55f5f22d5061","md5":"6be61846633e1502cd37935c818510cb","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_fixup_lastbg/script","type":"file","name":"script","base_name":"script","extension":"","size":1234,"date":"2020-03-21","sha1":"b9cd50969c9622b44e50b9d85bcb88318bba819d","md5":"61f1dc6a0d2f2e80a061f1c76a8c159f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_fixup_lastbg_big","type":"directory","name":"r_fixup_lastbg_big","base_name":"r_fixup_lastbg_big","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":3233,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_fixup_lastbg_big/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1898,"date":"2020-03-21","sha1":"c8120fa385252242b6917c81e2c20947a5c7604d","md5":"6f0f1d1bb8c2310fac65e6b7e5d06963","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_fixup_lastbg_big/script","type":"file","name":"script","base_name":"script","extension":"","size":1335,"date":"2020-03-21","sha1":"816eea9c025241bb49082ee2af251b81870ad556","md5":"42ade8c5bb4684b8518808563dcc41f1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_inline_xattr","type":"directory","name":"r_inline_xattr","base_name":"r_inline_xattr","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":20872,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_inline_xattr/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":549,"date":"2020-03-21","sha1":"179b3c633618674dc2a27525fa8ef136e6ac62ab","md5":"2e0e3beae708070910846634093bcac7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_inline_xattr/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":18907,"date":"2020-03-21","sha1":"048762d9ca7d987c35d46824589103062a8370b0","md5":"e52bb3f8f5142e8f342c64352861a814","mime_type":"application/x-gzip","file_type":"gzip compressed data, was \"image\", last modified: Thu Feb 28 18:11:28 2008, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_inline_xattr/name","type":"file","name":"name","base_name":"name","extension":"","size":55,"date":"2020-03-21","sha1":"e5967a3e13924fb6231367e8a412be65a10c59e1","md5":"531e0c97cd2088bc13bf73c844d34e0c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_inline_xattr/script","type":"file","name":"script","base_name":"script","extension":"","size":1361,"date":"2020-03-21","sha1":"38e3d9c1137976ec302adde9a3b4b072bb85b94e","md5":"6d45a4b56135953c2a1ff8dac3c33fc2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_meta_bg_shrink","type":"directory","name":"r_meta_bg_shrink","base_name":"r_meta_bg_shrink","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":749,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_meta_bg_shrink/script","type":"file","name":"script","base_name":"script","extension":"","size":749,"date":"2020-03-21","sha1":"3e096b18d99922bf57de69ff940492fd3d5f3e69","md5":"d0e44619cf0d0158a12d1470d19371cd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_min_itable","type":"directory","name":"r_min_itable","base_name":"r_min_itable","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":5073,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_min_itable/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":486,"date":"2020-03-21","sha1":"e1faf7d19e86b8012f58bbda070529bb35167d3a","md5":"a242e268619365900d6f0566dde69778","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_min_itable/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":3597,"date":"2020-03-21","sha1":"f2507a6375c935a0f30c4fd03612ff70cdadeb30","md5":"0d292b4a0b7fbe4a2a9d07603deaeb26","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Tue Oct 01 02:59:06 2013, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_min_itable/name","type":"file","name":"name","base_name":"name","extension":"","size":60,"date":"2020-03-21","sha1":"b19b6160c59e17eba7588ae52c951804cbd0d2cd","md5":"caf10755798a4a2dd6bc4e768a65c73b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_min_itable/script","type":"file","name":"script","base_name":"script","extension":"","size":930,"date":"2020-03-21","sha1":"97a44b3cb9c284701c7eb3df4e81584dd19daa88","md5":"a6e8c2fbd05f0b0f47fd8338e7abe721","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_inode_int_extent","type":"directory","name":"r_move_inode_int_extent","base_name":"r_move_inode_int_extent","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":4,"dirs_count":0,"size_count":22180,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_inode_int_extent/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":501,"date":"2020-03-21","sha1":"69843fb86a97d3ddbd1fa8201baef2c1b80e34ae","md5":"cac21a15826420624fc9164f2f75d490","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_inode_int_extent/image.gz","type":"file","name":"image.gz","base_name":"image","extension":".gz","size":20687,"date":"2020-03-21","sha1":"673cf8984238c6c9e3b5c1e7542e2992afbfda29","md5":"2a17767aa5798f0734bd456dad31a152","mime_type":"application/x-gzip","file_type":"gzip compressed data, last modified: Sat Oct 20 13:42:59 2018, max compression, from Unix","programming_language":null,"is_binary":true,"is_text":false,"is_archive":true,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_inode_int_extent/name","type":"file","name":"name","base_name":"name","extension":"","size":46,"date":"2020-03-21","sha1":"5f66d9a1b16d10067533cbbd5f9a0851f5f16100","md5":"8b64de45b79e38c19e45c1763fd40774","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_inode_int_extent/script","type":"file","name":"script","base_name":"script","extension":"","size":946,"date":"2020-03-21","sha1":"629c85b82e793fdbf8d9404ae5041f1ecb19b90b","md5":"37d20f2edf1b3ebead3fa74347b8a684","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_itable","type":"directory","name":"r_move_itable","base_name":"r_move_itable","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":99266,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_itable/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":96003,"date":"2020-03-21","sha1":"55d8f22e80c58c47f4c7bd07374d136a90b04fb5","md5":"d7bb17699920ade06677795dc8ef9fe3","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_itable/name","type":"file","name":"name","base_name":"name","extension":"","size":56,"date":"2020-03-21","sha1":"0222ab86d94a4396c2e0cfa1d0cbfe49cfd29243","md5":"8d37b54978e8148451c66882fe1b3afd","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_itable/script","type":"file","name":"script","base_name":"script","extension":"","size":3207,"date":"2020-03-21","sha1":"6417a18c7a72a03f75f3444876b7b997ac6ef44c","md5":"288b51368877f7bebe454a9394a24647","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_itable_nostride","type":"directory","name":"r_move_itable_nostride","base_name":"r_move_itable_nostride","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":4295,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_itable_nostride/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":2456,"date":"2020-03-21","sha1":"e01223f82adf7e8ab80fbdc60983304791572ec2","md5":"2dbcdf52778e28e44b2b504a43eac24c","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_itable_nostride/name","type":"file","name":"name","base_name":"name","extension":"","size":41,"date":"2020-03-21","sha1":"245b3856bd8fa9a9cde48fc342d1c28554a81d61","md5":"c76293a35bc89a048e071a747a909b16","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_itable_nostride/script","type":"file","name":"script","base_name":"script","extension":"","size":1798,"date":"2020-03-21","sha1":"8551337b81b9c3f0e4e5edaecdd1896ffbe1237e","md5":"fd0522f6b50b8dc9603d4dc9e2649c5f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_itable_realloc","type":"directory","name":"r_move_itable_realloc","base_name":"r_move_itable_realloc","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":4264,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_itable_realloc/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":2415,"date":"2020-03-21","sha1":"7d4fb72c6579a697de3654ee1551d4d1d75e80ce","md5":"2a9f1b3e0bb313662a13aae19d5f7189","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_itable_realloc/name","type":"file","name":"name","base_name":"name","extension":"","size":46,"date":"2020-03-21","sha1":"8913668c0b8710f4b7c6a9db9ab67bbed9b95514","md5":"95a94c31da8cbd7af6ba67aaaac3f367","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_move_itable_realloc/script","type":"file","name":"script","base_name":"script","extension":"","size":1803,"date":"2020-03-21","sha1":"05ca79fc293d9cd16d3221643f2a763491c249a9","md5":"71937544992663a10fc7109c009b6753","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_resize_inode","type":"directory","name":"r_resize_inode","base_name":"r_resize_inode","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":64897,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_resize_inode/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":61998,"date":"2020-03-21","sha1":"c113384f9f46b1e7792ba1a717c212aced696a5a","md5":"51ac70db2fec84be5778ff40000f79d5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_resize_inode/name","type":"file","name":"name","base_name":"name","extension":"","size":47,"date":"2020-03-21","sha1":"a7b579f372f0c04c025fa0bbf2a324005833ef39","md5":"dbf07204dc5aff03a0b59b5e64a32d4f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/r_resize_inode/script","type":"file","name":"script","base_name":"script","extension":"","size":2852,"date":"2020-03-21","sha1":"8ea99f477d620b1dce62cdda7afa58562777a4c5","md5":"98ff7e3fda3efb2ad6a921ad7dba0550","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/scripts","type":"directory","name":"scripts","base_name":"scripts","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":7735,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/scripts/gen-test-data","type":"file","name":"gen-test-data","base_name":"gen-test-data","extension":"","size":2687,"date":"2020-03-21","sha1":"03d5ea96b78a243ed50c1e60738024cded02aecc","md5":"9d5d4d378564f597af294a6c8bd8fa6c","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable, with very long lines","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/scripts/mkdup","type":"file","name":"mkdup","base_name":"mkdup","extension":"","size":1367,"date":"2020-03-21","sha1":"976e3ad42cb10cad0345ed3d440eb91f4aeb5674","md5":"731d7162cdafcdadd4008550d58087b5","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/scripts/resize_test","type":"file","name":"resize_test","base_name":"resize_test","extension":"","size":3681,"date":"2020-03-21","sha1":"53ccb15533b32676899292e93e5812f0531fa73b","md5":"25cae9ff2fa42dce10d1077bd94a0774","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_change_uuid","type":"directory","name":"t_change_uuid","base_name":"t_change_uuid","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":1321,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_change_uuid/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":265,"date":"2020-03-21","sha1":"66eeb7b8451be545f2595b7ef0f36b56b7163750","md5":"60852effdcc5d2d33dd18a1237564c59","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_change_uuid/script","type":"file","name":"script","base_name":"script","extension":"","size":1056,"date":"2020-03-21","sha1":"263b728f5ad3187aa2459178462ad22341608a59","md5":"8eea38fee151be08046c0fd78f153eb8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_change_uuid_mcsum","type":"directory","name":"t_change_uuid_mcsum","base_name":"t_change_uuid_mcsum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":1310,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_change_uuid_mcsum/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":262,"date":"2020-03-21","sha1":"0e8d6975a707a4bba903732618fa1199bcaa7a2c","md5":"681f6de9e1d49e4480a9cda736220c3f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_change_uuid_mcsum/script","type":"file","name":"script","base_name":"script","extension":"","size":1048,"date":"2020-03-21","sha1":"1a113f5bf2c2e053fd70e6857450815441e1e9cb","md5":"b2cfe37744dc52eacffa8ed452b5fb98","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_change_uuid_mcsum_mounted","type":"directory","name":"t_change_uuid_mcsum_mounted","base_name":"t_change_uuid_mcsum_mounted","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":1336,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_change_uuid_mcsum_mounted/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":262,"date":"2020-03-21","sha1":"1218acd7cf1c6795d05c0e1aafe1ea6dffd09045","md5":"f5ed22a0dfae2a17355553fe4fa43f5f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_change_uuid_mcsum_mounted/script","type":"file","name":"script","base_name":"script","extension":"","size":1074,"date":"2020-03-21","sha1":"cf099d5c98cddbd54035f776bf1bbcb7e84476f8","md5":"2ba451c482369f833e913b898b5eb7d5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_change_uuid_mcsum_seed_mounted","type":"directory","name":"t_change_uuid_mcsum_seed_mounted","base_name":"t_change_uuid_mcsum_seed_mounted","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2559,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_change_uuid_mcsum_seed_mounted/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":756,"date":"2020-03-21","sha1":"79d98f787acd369cc505d39afa272877de47e20a","md5":"9b37e1ba5b645c24d869c16a822cffa7","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_change_uuid_mcsum_seed_mounted/script","type":"file","name":"script","base_name":"script","extension":"","size":1803,"date":"2020-03-21","sha1":"50851b135053bf5072429a2e0f4d95ebd7ea2203","md5":"da8f3e2b5a8c0b850636fe66acab7ea1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_change_uuid_mounted","type":"directory","name":"t_change_uuid_mounted","base_name":"t_change_uuid_mounted","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":1355,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_change_uuid_mounted/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":265,"date":"2020-03-21","sha1":"66eeb7b8451be545f2595b7ef0f36b56b7163750","md5":"60852effdcc5d2d33dd18a1237564c59","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_change_uuid_mounted/script","type":"file","name":"script","base_name":"script","extension":"","size":1090,"date":"2020-03-21","sha1":"1104a5c5f75b877a1f3c844465c7f3ee1568c085","md5":"6c70380e9cba60851f1c278cab07df0f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_dangerous","type":"directory","name":"t_dangerous","base_name":"t_dangerous","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":9170,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_dangerous/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":4422,"date":"2020-03-21","sha1":"9c4882f01bc8e3094c3d82cb687374468fb7e5ee","md5":"eb0a59b7db5206fd4aa08538dbd4c991","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_dangerous/name","type":"file","name":"name","base_name":"name","extension":"","size":36,"date":"2020-03-21","sha1":"3524fbb65e8c28fbc097806dc2e64d8adba2895f","md5":"340de7fd0b32a0044091b8a31921059a","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_dangerous/script","type":"file","name":"script","base_name":"script","extension":"","size":4712,"date":"2020-03-21","sha1":"2bf7eb479658e51e375e352dbe7a33d90302d920","md5":"5d12c4076e33d5e2c5304e947374da4d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_changed_csum_seed","type":"directory","name":"t_disable_changed_csum_seed","base_name":"t_disable_changed_csum_seed","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2176,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_changed_csum_seed/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":630,"date":"2020-03-21","sha1":"6e017764db3321ba873e5064c1a2bcebbc2eaa8e","md5":"9c36adbe0a4a2ef6ab2f6d945bb822b5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_changed_csum_seed/script","type":"file","name":"script","base_name":"script","extension":"","size":1546,"date":"2020-03-21","sha1":"b3ad05dcb59958b14bc935424369ea2dcd36c976","md5":"b03369277abf9bf01e711231e17c1cb6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_changed_csum_seed_mounted","type":"directory","name":"t_disable_changed_csum_seed_mounted","base_name":"t_disable_changed_csum_seed_mounted","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2266,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_changed_csum_seed_mounted/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":704,"date":"2020-03-21","sha1":"81ab44b53fdfdf04cdd753ee47268a9139f905bb","md5":"07ed3ad5116c6791dcb87526edf36d5c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_changed_csum_seed_mounted/script","type":"file","name":"script","base_name":"script","extension":"","size":1562,"date":"2020-03-21","sha1":"836b332041513f075a313922c4ab47847a6509cf","md5":"d104d3ca823c5432cdbab5637ed9a326","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_csum_seed","type":"directory","name":"t_disable_csum_seed","base_name":"t_disable_csum_seed","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":1883,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_csum_seed/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":518,"date":"2020-03-21","sha1":"12f47bd1421926fd85867b4fb4b6d0423d076c8b","md5":"8296a64f83c06f8dbd8911e36a9a7b8e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_csum_seed/script","type":"file","name":"script","base_name":"script","extension":"","size":1365,"date":"2020-03-21","sha1":"d443169101813f2cc79f0f9d7914b9e545d1e2f4","md5":"b124fe95f701047d945b28726630d364","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_mcsum","type":"directory","name":"t_disable_mcsum","base_name":"t_disable_mcsum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":3579,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_mcsum/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1825,"date":"2020-03-21","sha1":"67ad48876e3d12f9152ba19680b068eeded49103","md5":"db055be41d88cfa2b15b5a4e3fff6ea9","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_mcsum/name","type":"file","name":"name","base_name":"name","extension":"","size":22,"date":"2020-03-21","sha1":"79d8d9c7c8a6b18a95a3121f6e0b1112b3dfdab8","md5":"622de7d4237abfb282f77091104e5996","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_mcsum/script","type":"file","name":"script","base_name":"script","extension":"","size":1732,"date":"2020-03-21","sha1":"c8f0afd8c469e61ad46b2c53d7e125dae6a9fcba","md5":"ed04970b3311bfb9572bf4c17ecbf534","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_mcsum_noinitbg","type":"directory","name":"t_disable_mcsum_noinitbg","base_name":"t_disable_mcsum_noinitbg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":4498,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_mcsum_noinitbg/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":2709,"date":"2020-03-21","sha1":"70cf5d8656dc7f5e673fe5122412abdafd30a688","md5":"831829f0d3c1cba6c81aa94069740136","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_mcsum_noinitbg/name","type":"file","name":"name","base_name":"name","extension":"","size":36,"date":"2020-03-21","sha1":"eae6114c902a991f495d535ddfdf12aae03c44f2","md5":"9250c8c96bef07310ac8d09ae60bcf00","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_mcsum_noinitbg/script","type":"file","name":"script","base_name":"script","extension":"","size":1753,"date":"2020-03-21","sha1":"25362b5616ee16a10ed420a2a0c062434a858a47","md5":"3943d5bf305ff4627d8dba037527a7b5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_mcsum_yesinitbg","type":"directory","name":"t_disable_mcsum_yesinitbg","base_name":"t_disable_mcsum_yesinitbg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":3629,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_mcsum_yesinitbg/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1835,"date":"2020-03-21","sha1":"7319c636c6758a7ccd50554cfc9669e1fe6cf698","md5":"2af1482909aa1799369d15407fbfe119","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_mcsum_yesinitbg/name","type":"file","name":"name","base_name":"name","extension":"","size":43,"date":"2020-03-21","sha1":"45d061d3e72d0354caddb667cf453264e4d447b5","md5":"dd177d81e6d2787672ad94fd314d56ae","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_mcsum_yesinitbg/script","type":"file","name":"script","base_name":"script","extension":"","size":1751,"date":"2020-03-21","sha1":"a436273ea79196f2276852bcec5f7a65648071cb","md5":"e077221e74eae2e9718ed31e9b10a6bc","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_meta_csum_and_seed","type":"directory","name":"t_disable_meta_csum_and_seed","base_name":"t_disable_meta_csum_and_seed","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":1951,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_meta_csum_and_seed/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":522,"date":"2020-03-21","sha1":"ccbd813991d2fbc5bfca82ac40745c73aa017af6","md5":"1209956d5597ecb6e0ae8e7100110441","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_disable_meta_csum_and_seed/script","type":"file","name":"script","base_name":"script","extension":"","size":1429,"date":"2020-03-21","sha1":"72f73908a0070102f4e04a59ace61268c69a1380","md5":"b4ff67681812e46c3e4bc73f145b69bb","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_enable_csum_seed","type":"directory","name":"t_enable_csum_seed","base_name":"t_enable_csum_seed","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":1653,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_enable_csum_seed/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":453,"date":"2020-03-21","sha1":"243db269b6e8214a0a4178a7d7de31b31cdb534b","md5":"b47cc111f8bb88159c3567207c7890cf","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_enable_csum_seed/script","type":"file","name":"script","base_name":"script","extension":"","size":1200,"date":"2020-03-21","sha1":"9a8a1f0dd3af050657105af64f47ab8fc42ca95f","md5":"6cb74975dad29329646b819c7eb67f24","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_enable_mcsum","type":"directory","name":"t_enable_mcsum","base_name":"t_enable_mcsum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":4709,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_enable_mcsum/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":2919,"date":"2020-03-21","sha1":"5ea6e9dc0aafd1c4906936ff80ddf42754a174ad","md5":"5c8e6ed27de149253af02f271a6b4d27","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_enable_mcsum/name","type":"file","name":"name","base_name":"name","extension":"","size":21,"date":"2020-03-21","sha1":"2ddd72438ff2720b77e120500665594e802a19bb","md5":"812b055a1f1926ffa8dfe14611cc14f8","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_enable_mcsum/script","type":"file","name":"script","base_name":"script","extension":"","size":1769,"date":"2020-03-21","sha1":"bbddc55e3dbfce55a1638ac5e3ebea5030f3585f","md5":"75c50ac4ba3e6965a293a7c2e827ef51","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_enable_mcsum_ext3","type":"directory","name":"t_enable_mcsum_ext3","base_name":"t_enable_mcsum_ext3","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":4694,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_enable_mcsum_ext3/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":2887,"date":"2020-03-21","sha1":"f690a0eaf2a95bce8fe6e92abd26140f4afca9cf","md5":"f22f710a61bda6eafa5e7d5fa676b1f1","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_enable_mcsum_ext3/name","type":"file","name":"name","base_name":"name","extension":"","size":32,"date":"2020-03-21","sha1":"c50d60d18b910427e06e99c8dc3f6394eb479759","md5":"912aa6f56565701610b7672f6667a332","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_enable_mcsum_ext3/script","type":"file","name":"script","base_name":"script","extension":"","size":1775,"date":"2020-03-21","sha1":"dde65b6b1b53d38882ba926ad6d693a4b8cdaa5b","md5":"eeb80b8b6ebd6467872816989eed347c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_enable_mcsum_initbg","type":"directory","name":"t_enable_mcsum_initbg","base_name":"t_enable_mcsum_initbg","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":5409,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_enable_mcsum_initbg/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":3602,"date":"2020-03-21","sha1":"14519829610f2fbc8418b8725310b4422d1b44e8","md5":"e1a5796574991309dfd9b32752b06f52","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_enable_mcsum_initbg/name","type":"file","name":"name","base_name":"name","extension":"","size":37,"date":"2020-03-21","sha1":"2dee20406e3b0cdcb967a6b79a70fe964cb7abf4","md5":"ee95c249974db7fd5021476d745d54b0","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_enable_mcsum_initbg/script","type":"file","name":"script","base_name":"script","extension":"","size":1770,"date":"2020-03-21","sha1":"bcd46ab4172198cf8f3093dee205374a3de4bc7d","md5":"1dc9a3cf9320e45093ff7e4f030f7e65","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_ext_jnl_fail","type":"directory","name":"t_ext_jnl_fail","base_name":"t_ext_jnl_fail","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":897,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_ext_jnl_fail/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":192,"date":"2020-03-21","sha1":"07948caa34634cec4d306fd063757594bc2ac764","md5":"a254cacd8097aa3de6d141f34de4f87a","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_ext_jnl_fail/name","type":"file","name":"name","base_name":"name","extension":"","size":30,"date":"2020-03-21","sha1":"68757c04c7882089d6691ff4513a47d19ccff146","md5":"5b8e42a6779492cf5b51522fc5bba167","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_ext_jnl_fail/script","type":"file","name":"script","base_name":"script","extension":"","size":675,"date":"2020-03-21","sha1":"da744467a7e5094f183f5387ed89450dd3e9bb18","md5":"0312e052dd2adc0755752d0c5c095252","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_ext_jnl_rm","type":"directory","name":"t_ext_jnl_rm","base_name":"t_ext_jnl_rm","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":813,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_ext_jnl_rm/script","type":"file","name":"script","base_name":"script","extension":"","size":813,"date":"2020-03-21","sha1":"8076fee13d6c16853f67b24570ce10a35e957e2b","md5":"e81608c368204eb33b9a76d471e32a7d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_format_csum_seed","type":"directory","name":"t_format_csum_seed","base_name":"t_format_csum_seed","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":1403,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_format_csum_seed/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":369,"date":"2020-03-21","sha1":"342ed1104fbe5e8e963e0278e0b7aa59b1b80b85","md5":"1b9ac64fb2b98863cba91a93596b1678","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_format_csum_seed/script","type":"file","name":"script","base_name":"script","extension":"","size":1034,"date":"2020-03-21","sha1":"4af0bc21d957eb34408a51791b72e10f3d40a1bd","md5":"99b320c847ca105a18cb03fd9a7f333b","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_iexpand_full","type":"directory","name":"t_iexpand_full","base_name":"t_iexpand_full","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":3426,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_iexpand_full/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1215,"date":"2020-03-21","sha1":"ac8661aaa8bf4f410fa5969e387a2572effaae20","md5":"fd90e2ce14dbc08468120ba74dee0499","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_iexpand_full/name","type":"file","name":"name","base_name":"name","extension":"","size":43,"date":"2020-03-21","sha1":"be919d6e2f39259fac61e5a55e9522fe3a6d8a8d","md5":"96ac5ecfc5309b120fd6ac9927ecd7a1","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_iexpand_full/script","type":"file","name":"script","base_name":"script","extension":"","size":2168,"date":"2020-03-21","sha1":"95cf35bd9c2e2c29fd0f28c70351e02b3d98f13e","md5":"365070202e772d91e892b20163c4c6c3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_iexpand_mcsum","type":"directory","name":"t_iexpand_mcsum","base_name":"t_iexpand_mcsum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":4194,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_iexpand_mcsum/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1888,"date":"2020-03-21","sha1":"f36f0cb434c149324692261b08bc7edd0a79ad6c","md5":"dadeeb2090bc4dae54eb1289bba94d86","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_iexpand_mcsum/name","type":"file","name":"name","base_name":"name","extension":"","size":40,"date":"2020-03-21","sha1":"a04dd346918f25872e85ca4edffefbbaa58903db","md5":"6a1f58b3c00902d103df0d010c187271","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_iexpand_mcsum/script","type":"file","name":"script","base_name":"script","extension":"","size":2266,"date":"2020-03-21","sha1":"0dcdba1016669d8f51cc46e2980c091cfe16d1ad","md5":"fd0b3e7563188a2cf6f4ae444c78fcd9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_mmp_1on","type":"directory","name":"t_mmp_1on","base_name":"t_mmp_1on","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":799,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_mmp_1on/name","type":"file","name":"name","base_name":"name","extension":"","size":25,"date":"2020-03-21","sha1":"1338007786fae5f04d25fd280e58000f4c194104","md5":"a5baaf48683862bdb2d0d7fefbdf9933","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_mmp_1on/script","type":"file","name":"script","base_name":"script","extension":"","size":774,"date":"2020-03-21","sha1":"46b620fe2506a451e807c23aa6544c6a718ae836","md5":"63859ae5336f11fa7bcd9169a2922a5d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_mmp_2off","type":"directory","name":"t_mmp_2off","base_name":"t_mmp_2off","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":764,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_mmp_2off/name","type":"file","name":"name","base_name":"name","extension":"","size":26,"date":"2020-03-21","sha1":"46f97a89faef75c6956b1f5f2c674fd6d4947211","md5":"44b0ca68db41cf3645f4454fdfe70bf5","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_mmp_2off/script","type":"file","name":"script","base_name":"script","extension":"","size":738,"date":"2020-03-21","sha1":"431367452c5e73c55707d9a2624cd8c6228c2ed8","md5":"86849e5fc6b98f1488626f13eba132de","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_project_1on","type":"directory","name":"t_project_1on","base_name":"t_project_1on","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":1109,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_project_1on/name","type":"file","name":"name","base_name":"name","extension":"","size":39,"date":"2020-03-21","sha1":"7b50300590083849a7adc4f69bf55847f5bcc2a4","md5":"99a7d462bc147345bab565bcbe07ee2d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_project_1on/script","type":"file","name":"script","base_name":"script","extension":"","size":1070,"date":"2020-03-21","sha1":"7f3f010aa7c0041bc9dcb13179300a6aa9e8aa20","md5":"59d6ea682d7ea70775991dcfe20bcc52","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_project_2off","type":"directory","name":"t_project_2off","base_name":"t_project_2off","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":912,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_project_2off/name","type":"file","name":"name","base_name":"name","extension":"","size":30,"date":"2020-03-21","sha1":"80a828f5c236e20643503990b47b45d28dc73f61","md5":"b9ed1a02c8b5496fc5a4b501bb6c3fa9","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_project_2off/script","type":"file","name":"script","base_name":"script","extension":"","size":882,"date":"2020-03-21","sha1":"8f41c9979d3e4a5828b77f662e7902e628030c47","md5":"201f5c8046708a03347f4097b7abc323","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_project_3on","type":"directory","name":"t_project_3on","base_name":"t_project_3on","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":1106,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_project_3on/name","type":"file","name":"name","base_name":"name","extension":"","size":39,"date":"2020-03-21","sha1":"ef2565b8d5edb75318b1493a722e7d84aedba8f0","md5":"c07e73b6638a89091a357d89e80b9bb6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_project_3on/script","type":"file","name":"script","base_name":"script","extension":"","size":1067,"date":"2020-03-21","sha1":"f8a8bf4bd579d6aa0f10d92bf9fb4a500e6553a3","md5":"37ba4d1c22b68b4c2cf45d7cfa5e34e3","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_project_4off","type":"directory","name":"t_project_4off","base_name":"t_project_4off","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":918,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_project_4off/name","type":"file","name":"name","base_name":"name","extension":"","size":40,"date":"2020-03-21","sha1":"ba9e7c09f93f59cb8a74628fa1270641bf9ff277","md5":"afc46ecd1349ea67b4e3843533dd4e5c","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_project_4off/script","type":"file","name":"script","base_name":"script","extension":"","size":878,"date":"2020-03-21","sha1":"03359f7c4728e056fc68496bb124f060d6a4f5ce","md5":"41af7d102ba79118181a969b804ee861","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_quota_1on","type":"directory","name":"t_quota_1on","base_name":"t_quota_1on","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":1113,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_quota_1on/name","type":"file","name":"name","base_name":"name","extension":"","size":27,"date":"2020-03-21","sha1":"fc51f6e4c202289c0908ae8f8ff8477b7f5103e1","md5":"b8711b746064e170e7f207563b019b12","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_quota_1on/script","type":"file","name":"script","base_name":"script","extension":"","size":1086,"date":"2020-03-21","sha1":"6d5d136077eb58cbddc60e1d3d4a41a4a72e18fb","md5":"44342bde4f52ca51d9cc638bb0286a79","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_quota_2off","type":"directory","name":"t_quota_2off","base_name":"t_quota_2off","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":881,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_quota_2off/name","type":"file","name":"name","base_name":"name","extension":"","size":28,"date":"2020-03-21","sha1":"987054566b0c6cac7f640046180287c02c8deaaa","md5":"2502d4e3815f5f7ccb1b56c474318839","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_quota_2off/script","type":"file","name":"script","base_name":"script","extension":"","size":853,"date":"2020-03-21","sha1":"381e63255b3728b5c842eeb5cb65b39107be14a4","md5":"2d60013bc322e0eb721bee392a5266e2","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_replay_and_set","type":"directory","name":"t_replay_and_set","base_name":"t_replay_and_set","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":3,"dirs_count":0,"size_count":2781,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_replay_and_set/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":1366,"date":"2020-03-21","sha1":"55c4510d3237673f3f32391002a0431d569abcb2","md5":"88fffd1176a7c0578ae1ec1463e9ae7d","mime_type":"text/plain","file_type":"ASCII text, with overstriking","programming_language":null,"is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":false,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_replay_and_set/name","type":"file","name":"name","base_name":"name","extension":"","size":35,"date":"2020-03-21","sha1":"d078bd9c2d6a684215318fb75a4760adcfca1d64","md5":"d0622c8821a01509bc59aa3c28c32b45","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_replay_and_set/script","type":"file","name":"script","base_name":"script","extension":"","size":1380,"date":"2020-03-21","sha1":"22d15535953b780112aa7e40aa3914b94302cb3b","md5":"4100c1cee2e4a7b6fbeb2b3f51c9489d","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_uninit_bg_rm","type":"directory","name":"t_uninit_bg_rm","base_name":"t_uninit_bg_rm","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":2,"dirs_count":0,"size_count":2256,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_uninit_bg_rm/expect","type":"file","name":"expect","base_name":"expect","extension":"","size":806,"date":"2020-03-21","sha1":"243095f6a262a6d687a8fbe50d82eca555a2152f","md5":"9f2eae65fc7266de90d5edcc4b109601","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/t_uninit_bg_rm/script","type":"file","name":"script","base_name":"script","extension":"","size":1450,"date":"2020-03-21","sha1":"22e10bd39a3942911ed7bb32915e3f95ffa55594","md5":"b022f5b5a15fcf2563ac908e558919eb","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_compound_bad_rollback","type":"directory","name":"u_compound_bad_rollback","base_name":"u_compound_bad_rollback","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":2136,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_compound_bad_rollback/script","type":"file","name":"script","base_name":"script","extension":"","size":2136,"date":"2020-03-21","sha1":"7df65d100a5f569464daf7b42bbf68bb0930ac57","md5":"330d5209f19d4dab5150013208210458","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_compound_rollback","type":"directory","name":"u_compound_rollback","base_name":"u_compound_rollback","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":2136,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_compound_rollback/script","type":"file","name":"script","base_name":"script","extension":"","size":2136,"date":"2020-03-21","sha1":"1ab727b1ddedab6bdd9a80ab57b2299c93d4af04","md5":"9c2af29018a195261162e21917670e90","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_corrupt_blk_csum","type":"directory","name":"u_corrupt_blk_csum","base_name":"u_corrupt_blk_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1208,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_corrupt_blk_csum/script","type":"file","name":"script","base_name":"script","extension":"","size":1208,"date":"2020-03-21","sha1":"5cc7c3356c517b372c43a7bf417fb51a30fdb70b","md5":"caa0beddd32c72a04be347c4182052ac","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_corrupt_blk_csum_force","type":"directory","name":"u_corrupt_blk_csum_force","base_name":"u_corrupt_blk_csum_force","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1209,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_corrupt_blk_csum_force/script","type":"file","name":"script","base_name":"script","extension":"","size":1209,"date":"2020-03-21","sha1":"94dc0ef2b338674d0fde55790243152903b5d3e2","md5":"d77cc394686019286e48347d62e341c3","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_corrupt_hdr_csum","type":"directory","name":"u_corrupt_hdr_csum","base_name":"u_corrupt_hdr_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1043,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_corrupt_hdr_csum/script","type":"file","name":"script","base_name":"script","extension":"","size":1043,"date":"2020-03-21","sha1":"86fb3cfb52111942350fea951c25eaf52c7b11f5","md5":"e6b59196fc63ba20cea26c505c040c47","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_corrupt_key_csum","type":"directory","name":"u_corrupt_key_csum","base_name":"u_corrupt_key_csum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1181,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_corrupt_key_csum/script","type":"file","name":"script","base_name":"script","extension":"","size":1181,"date":"2020-03-21","sha1":"4cfd251733aee8d9207d0627f0cf2a48e7d7333d","md5":"0cf29d3638d74ee8478c371af919aeeb","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_debugfs_opt","type":"directory","name":"u_debugfs_opt","base_name":"u_debugfs_opt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1143,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_debugfs_opt/script","type":"file","name":"script","base_name":"script","extension":"","size":1143,"date":"2020-03-21","sha1":"5f87b722458a7094d7ea7908227b0103c9712c6c","md5":"389f548081eb793f32ca3d75b2da2a37","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_dryrun","type":"directory","name":"u_dryrun","base_name":"u_dryrun","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1032,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_dryrun/script","type":"file","name":"script","base_name":"script","extension":"","size":1032,"date":"2020-03-21","sha1":"4d11d47238b11e924bcb6e6c3df171426dfd8536","md5":"424e7e86bcfe6be4a517f637a3c3ec21","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_e2fsck_opt","type":"directory","name":"u_e2fsck_opt","base_name":"u_e2fsck_opt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1019,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_e2fsck_opt/script","type":"file","name":"script","base_name":"script","extension":"","size":1019,"date":"2020-03-21","sha1":"b823e370fc6f9030fcaaac4672153138b4029a52","md5":"4b71318ee7f0a3296757f42afc3c82c9","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_errorout","type":"directory","name":"u_errorout","base_name":"u_errorout","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1554,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_errorout/script","type":"file","name":"script","base_name":"script","extension":"","size":1554,"date":"2020-03-21","sha1":"687fb544688dc2e606b6bc65e9fe723094b4b791","md5":"dded3e25fa0b33a5298ef26e7dd1e249","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_force","type":"directory","name":"u_force","base_name":"u_force","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1351,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_force/script","type":"file","name":"script","base_name":"script","extension":"","size":1351,"date":"2020-03-21","sha1":"0f734517175b2bf8b6b4d4d5c1ca17e5aa581758","md5":"6cb3f3f1acc44a5ccaeeeeef9f22878a","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_force_dryrun","type":"directory","name":"u_force_dryrun","base_name":"u_force_dryrun","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1219,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_force_dryrun/script","type":"file","name":"script","base_name":"script","extension":"","size":1219,"date":"2020-03-21","sha1":"5d6c06316ec0e692e93d0cff95a07b3da7bf1d7a","md5":"9f69cbbf823eeb3b01e8a2299a3a3131","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_incomplete","type":"directory","name":"u_incomplete","base_name":"u_incomplete","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1265,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_incomplete/script","type":"file","name":"script","base_name":"script","extension":"","size":1265,"date":"2020-03-21","sha1":"180018556674989a9e9ee374e5e8e2117aa89cc7","md5":"dd8ae1a1d8ae9e1f97ba7f9e67a31b74","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_mke2fs","type":"directory","name":"u_mke2fs","base_name":"u_mke2fs","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1016,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_mke2fs/script","type":"file","name":"script","base_name":"script","extension":"","size":1016,"date":"2020-03-21","sha1":"3af3424f9293f2624e0d13635dc1ee7a4a0566cc","md5":"80a7bfe6ddb66706bf270f88855e8d50","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_mke2fs_opt","type":"directory","name":"u_mke2fs_opt","base_name":"u_mke2fs_opt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":969,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_mke2fs_opt/script","type":"file","name":"script","base_name":"script","extension":"","size":969,"date":"2020-03-21","sha1":"26e7e0c33ac1a82d45d404d2607e0145c95a72be","md5":"f1703ea6be2e643c50202207c901c67c","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_mke2fs_opt_oddsize","type":"directory","name":"u_mke2fs_opt_oddsize","base_name":"u_mke2fs_opt_oddsize","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":950,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_mke2fs_opt_oddsize/script","type":"file","name":"script","base_name":"script","extension":"","size":950,"date":"2020-03-21","sha1":"128b132c098f367f4831f1bd2320b5e5c6dc89c2","md5":"60a17643640c98a3a1fd3a8baf7bc35e","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_mke2fs_opt_offset","type":"directory","name":"u_mke2fs_opt_offset","base_name":"u_mke2fs_opt_offset","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":3706,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_mke2fs_opt_offset/script","type":"file","name":"script","base_name":"script","extension":"","size":3706,"date":"2020-03-21","sha1":"8d78806c2e41cb0d6cb0c6caad93160ceaa65a8e","md5":"ec4c2601b5b1df7e9fca5a63cc1cc9e6","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_not_undo","type":"directory","name":"u_not_undo","base_name":"u_not_undo","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":728,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_not_undo/script","type":"file","name":"script","base_name":"script","extension":"","size":728,"date":"2020-03-21","sha1":"389cc12ac1991d52ddb547cfec5544017fa6e863","md5":"22ab5c37643564a4c4ddc5b7bd68afe7","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_offset","type":"directory","name":"u_offset","base_name":"u_offset","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":3884,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_offset/script","type":"file","name":"script","base_name":"script","extension":"","size":3884,"date":"2020-03-21","sha1":"c3f2c4e8fdf22128fbdbb1970e274be0bb8f2c13","md5":"f04781c538998cd396de5ae5e18c1426","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_onefile_bad","type":"directory","name":"u_onefile_bad","base_name":"u_onefile_bad","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":4590,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_onefile_bad/script","type":"file","name":"script","base_name":"script","extension":"","size":4590,"date":"2020-03-21","sha1":"7513c7b4897e78b87873520f16c97dbe7341b332","md5":"444b7ab5c53f793eeb85779da323530d","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_resize2fs_opt","type":"directory","name":"u_resize2fs_opt","base_name":"u_resize2fs_opt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1064,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_resize2fs_opt/script","type":"file","name":"script","base_name":"script","extension":"","size":1064,"date":"2020-03-21","sha1":"a80fd1c74336eab602cd58bfab374201c7521dfb","md5":"6c61faff4d602c97cd95f207c97d9ced","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_revert_64bitmcsum_onefile","type":"directory","name":"u_revert_64bitmcsum_onefile","base_name":"u_revert_64bitmcsum_onefile","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":4329,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_revert_64bitmcsum_onefile/script","type":"file","name":"script","base_name":"script","extension":"","size":4329,"date":"2020-03-21","sha1":"a8241c3f8cadbd5468c1bc872a6f0d3704f48a3b","md5":"ddc04432f1567b21b1c6acb550b540f1","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_revert_all_onefile","type":"directory","name":"u_revert_all_onefile","base_name":"u_revert_all_onefile","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":3809,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_revert_all_onefile/script","type":"file","name":"script","base_name":"script","extension":"","size":3809,"date":"2020-03-21","sha1":"442e248522bf8da6222aa0e65ad0d667dccebf3a","md5":"660f6112dbdd19ce117e38a7f77559ee","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_revert_upgrade_to_64bitmcsum","type":"directory","name":"u_revert_upgrade_to_64bitmcsum","base_name":"u_revert_upgrade_to_64bitmcsum","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":5351,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_revert_upgrade_to_64bitmcsum/script","type":"file","name":"script","base_name":"script","extension":"","size":5351,"date":"2020-03-21","sha1":"20acd0afcdf9ab7d4069da197262216111cb018c","md5":"10eb25888313d4adb7452e49c7d785e4","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_tune2fs","type":"directory","name":"u_tune2fs","base_name":"u_tune2fs","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":967,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_tune2fs/script","type":"file","name":"script","base_name":"script","extension":"","size":967,"date":"2020-03-21","sha1":"97ec83e8b8ed9e78fd4d556f97474f2065e84a5e","md5":"0907eefee6c94b67eae2eba90af24bbc","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_tune2fs_opt","type":"directory","name":"u_tune2fs_opt","base_name":"u_tune2fs_opt","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1038,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_tune2fs_opt/script","type":"file","name":"script","base_name":"script","extension":"","size":1038,"date":"2020-03-21","sha1":"937b80acc8451d9cde54556ea06e740eb6fcb4ad","md5":"c55582926ee933bc3c341e32501fef93","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_undo_undo","type":"directory","name":"u_undo_undo","base_name":"u_undo_undo","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1754,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_undo_undo/script","type":"file","name":"script","base_name":"script","extension":"","size":1754,"date":"2020-03-21","sha1":"bdc01599674bfd7f8fa4fed6ef917bb20125bf8d","md5":"3b22238c5833dd50de241beb0bce9ad2","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_wrong_fs","type":"directory","name":"u_wrong_fs","base_name":"u_wrong_fs","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1213,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/tests/u_wrong_fs/script","type":"file","name":"script","base_name":"script","extension":"","size":1213,"date":"2020-03-21","sha1":"0836f2970162d6f37a13d401c935b5161cf7f6dd","md5":"d9310a3bf99535cfd046016f30c5420e","mime_type":"text/plain","file_type":"ASCII text","programming_language":"Prolog","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util","type":"directory","name":"util","base_name":"util","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":18,"dirs_count":1,"size_count":119388,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/all.exclude","type":"file","name":"all.exclude","base_name":"all","extension":".exclude","size":137,"date":"2020-03-21","sha1":"5785204ecfcb2491993e584b8330609fe319ae8a","md5":"82f06710a33aff042e54b2cc52f6d62a","mime_type":"text/troff","file_type":"troff or preprocessor input, ASCII text","programming_language":"GAS","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/android-README.version.in","type":"file","name":"android-README.version.in","base_name":"android-README.version","extension":".in","size":131,"date":"2020-03-21","sha1":"03b94d44b75ac63bc02d8b5511d7f6bb216b7fdc","md5":"121b79124e5f9c5810df8f972dae1fa8","mime_type":"text/plain","file_type":"ASCII text","programming_language":"ActionScript 3","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"FN@.tar.gz","start_line":1,"end_line":1}],"urls":[{"url":"https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v@VER@/e2fsprogs-@FN@.tar.gz","start_line":1,"end_line":1}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/android_config.h","type":"file","name":"android_config.h","base_name":"android_config","extension":".h","size":1601,"date":"2020-03-21","sha1":"10d33ffb9177d9b191eb2ad8a3241992ff7c7f5c","md5":"8566a8280dae9397eed3780d1c6f981d","mime_type":"text/plain","file_type":"ASCII text","programming_language":"C++","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/android_types.h","type":"file","name":"android_types.h","base_name":"android_types","extension":".h","size":1112,"date":"2020-03-21","sha1":"111aa5a7bb8d17cfcc7a37248e224113df7ad61a","md5":"1c9865d695f0f97417085251837f9caa","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/copy_sparse.c","type":"file","name":"copy_sparse.c","base_name":"copy_sparse","extension":".c","size":4380,"date":"2020-03-21","sha1":"96e2baa23be492b5d5479bb0b1f0d1a08716705f","md5":"9103c38242973f71d0ff37672e3b112e","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,"licenses":[{"key":"lgpl-2.0","score":71.43,"name":"GNU Library General Public License 2.0","short_name":"LGPL 2.0","category":"Copyleft Limited","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html","text_url":"http://www.gnu.org/licenses/lgpl-2.0.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:lgpl-2.0","spdx_license_key":"LGPL-2.0-only","spdx_url":"https://spdx.org/licenses/LGPL-2.0-only","start_line":7,"end_line":9,"matched_rule":{"identifier":"lgpl-2.0_29.RULE","license_expression":"lgpl-2.0","licenses":["lgpl-2.0"],"is_license_text":false,"is_license_notice":true,"is_license_reference":false,"is_license_tag":false,"matcher":"3-seq","rule_length":21,"matched_length":15,"match_coverage":71.43,"rule_relevance":100}}],"license_expressions":["lgpl-2.0"],"copyrights":[{"value":"Copyright 2003, 2004 by Theodore Ts'o","start_line":5,"end_line":5}],"holders":[{"value":"Theodore Ts'o","start_line":5,"end_line":5}],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/gen-android-files","type":"file","name":"gen-android-files","base_name":"gen-android-files","extension":"","size":3883,"date":"2020-03-21","sha1":"87a5440e75bced63e086eb3a5bf53dec7f69c008","md5":"d29ac2703312930bc7cbc95d82a7cc38","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/gen-git-tarball","type":"file","name":"gen-git-tarball","base_name":"gen-git-tarball","extension":"","size":344,"date":"2020-03-21","sha1":"1a2e2e009024bf2f48060cee7b1359ac3e9ff7ab","md5":"145464508e44aacfb03dc0d8059cf54f","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/gen-sample-fs","type":"file","name":"gen-sample-fs","base_name":"gen-sample-fs","extension":"","size":1006,"date":"2020-03-21","sha1":"1d6f94c1102ee6ab563951f80b59b0a109f24355","md5":"9200c8cf536584093ca0582819bbd1e8","mime_type":"text/x-shellscript","file_type":"Bourne-Again shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/gen-tarball.in","type":"file","name":"gen-tarball.in","base_name":"gen-tarball","extension":".in","size":1548,"date":"2020-03-21","sha1":"bb2c60ca7e0bd7dfd55ab2ee42081c4e58655b79","md5":"3ca77b4e54ffcdfe32c10cce2ea5a9cc","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"E2FSPROGS_PKGVER@.orig.tar.gz","start_line":24,"end_line":24}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/get-ver","type":"file","name":"get-ver","base_name":"get-ver","extension":"","size":101,"date":"2020-03-21","sha1":"dca323d00bc65a2def1436c1cdd7a21a4b01d62f","md5":"d1e3b631c8195424f938ac70a1d7b41e","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/install-symlink.in","type":"file","name":"install-symlink.in","base_name":"install-symlink","extension":".in","size":1440,"date":"2020-03-21","sha1":"79f431eb4b92c6f070364b0a9603096ee33d211d","md5":"248efcf6a15203becb377b1515227036","mime_type":"text/x-shellscript","file_type":"POSIX shell script, ASCII text executable","programming_language":"Bash","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":true,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/libecho.c","type":"file","name":"libecho.c","base_name":"libecho","extension":".c","size":1291,"date":"2020-03-21","sha1":"5e721848213de06845a031c629d9b59355b7e00d","md5":"cc0ad57d24fab2e8a2ed55d0bca1032e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/Makefile.in","type":"file","name":"Makefile.in","base_name":"Makefile","extension":".in","size":1673,"date":"2020-03-21","sha1":"74a945a1607853469437fb4cf1c7e230a0351987","md5":"84175cfe7c8390124511048d5a4dd2a9","mime_type":"text/x-makefile","file_type":"makefile script, ASCII text","programming_language":"Objective-C","is_binary":false,"is_text":true,"is_archive":false,"is_media":false,"is_source":true,"is_script":false,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/mkutf8data.c","type":"file","name":"mkutf8data.c","base_name":"mkutf8data","extension":".c","size":80722,"date":"2020-03-21","sha1":"94c087b2285a1766046e789018e82fdb3f00078e","md5":"da0db429da8e01608d9f907fb9206404","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,"licenses":[{"key":"gpl-1.0-plus","score":100.0,"name":"GNU General Public License 1.0 or later","short_name":"GPL 1.0 or later","category":"Copyleft","is_exception":false,"owner":"Free Software Foundation (FSF)","homepage_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","text_url":"http://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html","reference_url":"https://enterprise.dejacode.com/urn/urn:dje:license:gpl-1.0-plus","spdx_license_key":"GPL-1.0-or-later","spdx_url":"https://spdx.org/licenses/GPL-1.0-or-later","start_line":5,"end_line":16,"matched_rule":{"identifier":"gpl_139.RULE","license_expression":"gpl-1.0-plus","licenses":["gpl-1.0-plus"],"is_license_text":true,"is_license_notice":false,"is_license_reference":false,"is_license_tag":false,"matcher":"2-aho","rule_length":99,"matched_length":99,"match_coverage":100.0,"rule_relevance":100}}],"license_expressions":["gpl-1.0-plus"],"copyrights":[{"value":"Copyright (c) 2014 SGI.","start_line":2,"end_line":3}],"holders":[{"value":"SGI.","start_line":2,"end_line":3}],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.unicode.org/versions/corrigendum1.html","start_line":245,"end_line":245},{"url":"http://www.unicode.org/Public/UCD/latest/ucd/","start_line":1836,"end_line":1836}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/subst.c","type":"file","name":"subst.c","base_name":"subst","extension":".c","size":9022,"date":"2020-03-21","sha1":"be62a2696613d99c89dad7629356908d461a9b36","md5":"b7700ee666d832e8049f4d8524ed7379","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[{"email":"tytso@mit.edu","start_line":152,"end_line":152}],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/subst.conf.in","type":"file","name":"subst.conf.in","base_name":"subst.conf","extension":".in","size":776,"date":"2020-03-21","sha1":"70dc743e3cbeb9fc1c3c5db1c8b956434032a5a0","md5":"1e2193fb2109260b954f1c4e59da817f","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/symlinks.c","type":"file","name":"symlinks.c","base_name":"symlinks","extension":".c","size":8563,"date":"2020-03-21","sha1":"363ba6f724dbe98ee91e51e765d957641adfff8b","md5":"af6911e209699ae227bd6d7bf6ea4b3e","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/ucd","type":"directory","name":"ucd","base_name":"ucd","extension":"","size":0,"date":null,"sha1":null,"md5":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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[],"files_count":1,"dirs_count":0,"size_count":1658,"scan_errors":[]},{"path":"e2fsprogs-1.45.6.tar.gz-extract/e2fsprogs-1.45.6/util/ucd/README","type":"file","name":"README","base_name":"README","extension":"","size":1658,"date":"2020-03-21","sha1":"61afa548ce6310329ca48fa4947778860b844953","md5":"87bfb04a745fe8e5032c40bfa109a618","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,"licenses":[],"license_expressions":[],"copyrights":[],"holders":[],"authors":[],"packages":[],"emails":[],"urls":[{"url":"http://www.unicode.org/Public/11.0.0/ucd/","start_line":9,"end_line":9},{"url":"http://www.unicode.org/Public/UCD/latest/","start_line":13,"end_line":13},{"url":"http://www.unicode.org/Public/11.0.0/ucd/CaseFolding.txt","start_line":20,"end_line":20},{"url":"http://www.unicode.org/Public/11.0.0/ucd/DerivedAge.txt","start_line":21,"end_line":21},{"url":"http://www.unicode.org/Public/11.0.0/ucd/extracted/DerivedCombiningClass.txt","start_line":22,"end_line":22},{"url":"http://www.unicode.org/Public/11.0.0/ucd/DerivedCoreProperties.txt","start_line":23,"end_line":23},{"url":"http://www.unicode.org/Public/11.0.0/ucd/NormalizationCorrections.txt","start_line":24,"end_line":24},{"url":"http://www.unicode.org/Public/11.0.0/ucd/NormalizationTest.txt","start_line":25,"end_line":25},{"url":"http://www.unicode.org/Public/11.0.0/ucd/UnicodeData.txt","start_line":26,"end_line":26}],"files_count":0,"dirs_count":0,"size_count":0,"scan_errors":[]}]} diff --git a/samples/scancode-31.0.0b4-clipeu-37d4e0a.json b/samples/scancode-31.0.0b4-clipeu-37d4e0a.json deleted file mode 100644 index 931525e1..00000000 --- a/samples/scancode-31.0.0b4-clipeu-37d4e0a.json +++ /dev/null @@ -1,3386 +0,0 @@ -{ - "headers": [ - { - "tool_name": "scancode-toolkit", - "tool_version": "31.0.0b4", - "options": { - "--copyright": true, - "--email": true, - "--info": true, - "--license": true, - "--package": 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.", - "output_format_version": "2.0.0", - "duration": 17.574522972106934, - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.14.0-1032-oem-x86_64-with-glibc2.29", - "platform_version": "#35-Ubuntu SMP Thu Mar 31 12:49:29 UTC 2022", - "python_version": "3.8.10 (default, Mar 15 2022, 12:22:08) \n[GCC 9.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 33 - } - } - ], - "dependencies": [], - "packages": [], - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "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 - } - ], - "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-02-01", - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [ - { - "key": "jboss-eula", - "score": 100.0, - "name": "JBoss EULA", - "short_name": "JBoss EULA", - "category": "Proprietary Free", - "is_exception": false, - "is_unknown": false, - "owner": "JBoss Community", - "homepage_url": null, - "text_url": "http://repository.jboss.org/licenses/jbossorg-eula.txt", - "reference_url": "https://scancode-licensedb.aboutcode.org/jboss-eula", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/jboss-eula.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/jboss-eula.yml", - "spdx_license_key": "LicenseRef-scancode-jboss-eula", - "spdx_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/jboss-eula.LICENSE", - "start_line": 3, - "end_line": 108, - "matched_rule": { - "identifier": "jboss-eula.LICENSE", - "license_expression": "jboss-eula", - "licenses": [ - "jboss-eula" - ], - "referenced_filenames": [], - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 1285, - "matched_length": 1285, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "jboss-eula" - ], - "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": [], - "package_data": [], - "for_packages": [], - "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 - } - ], - "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-02-01", - "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, - "licenses": [ - { - "key": "lgpl-2.1", - "score": 100.0, - "name": "GNU Lesser General Public License 2.1", - "short_name": "LGPL 2.1", - "category": "Copyleft Limited", - "is_exception": false, - "is_unknown": false, - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html", - "text_url": "http://www.gnu.org/licenses/lgpl-2.1.txt", - "reference_url": "https://scancode-licensedb.aboutcode.org/lgpl-2.1", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1.yml", - "spdx_license_key": "LGPL-2.1-only", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1-only", - "start_line": 1, - "end_line": 502, - "matched_rule": { - "identifier": "lgpl-2.1_101.RULE", - "license_expression": "lgpl-2.1", - "licenses": [ - "lgpl-2.1" - ], - "referenced_filenames": [], - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "1-hash", - "rule_length": 4288, - "matched_length": 4288, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "lgpl-2.1" - ], - "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": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [ - { - "key": "apache-1.1", - "score": 100.0, - "name": "Apache License 1.1", - "short_name": "Apache 1.1", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "Apache Software Foundation", - "homepage_url": "http://www.apache.org/licenses/", - "text_url": "http://apache.org/licenses/LICENSE-1.1", - "reference_url": "https://scancode-licensedb.aboutcode.org/apache-1.1", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-1.1.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-1.1.yml", - "spdx_license_key": "Apache-1.1", - "spdx_url": "https://spdx.org/licenses/Apache-1.1", - "start_line": 2, - "end_line": 56, - "matched_rule": { - "identifier": "apache-1.1_71.RULE", - "license_expression": "apache-1.1", - "licenses": [ - "apache-1.1" - ], - "referenced_filenames": [], - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "1-hash", - "rule_length": 361, - "matched_length": 361, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "apache-1.1" - ], - "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 - } - ], - "package_data": [], - "for_packages": [], - "emails": [ - { - "email": "apache@apache.org", - "start_line": 29, - "end_line": 29 - } - ], - "urls": [ - { - "url": "http://www.apache.org/", - "start_line": 22, - "end_line": 22 - } - ], - "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-02-01", - "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, - "licenses": [ - { - "key": "apache-2.0", - "score": 100.0, - "name": "Apache License 2.0", - "short_name": "Apache 2.0", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "Apache Software Foundation", - "homepage_url": "http://www.apache.org/licenses/", - "text_url": "http://www.apache.org/licenses/LICENSE-2.0", - "reference_url": "https://scancode-licensedb.aboutcode.org/apache-2.0", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.yml", - "spdx_license_key": "Apache-2.0", - "spdx_url": "https://spdx.org/licenses/Apache-2.0", - "start_line": 2, - "end_line": 202, - "matched_rule": { - "identifier": "apache-2.0.LICENSE", - "license_expression": "apache-2.0", - "licenses": [ - "apache-2.0" - ], - "referenced_filenames": [], - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "1-hash", - "rule_length": 1584, - "matched_length": 1584, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "apache-2.0" - ], - "percentage_of_license_text": 100.0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "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 - } - ], - "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-02-01", - "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, - "licenses": [ - { - "key": "mit", - "score": 100.0, - "name": "MIT License", - "short_name": "MIT License", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "MIT", - "homepage_url": "http://opensource.org/licenses/mit-license.php", - "text_url": "http://opensource.org/licenses/mit-license.php", - "reference_url": "https://scancode-licensedb.aboutcode.org/mit", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.yml", - "spdx_license_key": "MIT", - "spdx_url": "https://spdx.org/licenses/MIT", - "start_line": 7, - "end_line": 18, - "matched_rule": { - "identifier": "mit.LICENSE", - "license_expression": "mit", - "licenses": [ - "mit" - ], - "referenced_filenames": [], - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 161, - "matched_length": 161, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "mit" - ], - "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": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [ - { - "url": "http://www.bouncycastle.org/", - "start_line": 5, - "end_line": 5 - } - ], - "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-02-01", - "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, - "licenses": [ - { - "key": "cpl-1.0", - "score": 99.94, - "name": "Common Public License 1.0", - "short_name": "CPL 1.0", - "category": "Copyleft Limited", - "is_exception": false, - "is_unknown": false, - "owner": "IBM", - "homepage_url": "http://www.eclipse.org/legal/cpl-v10.html", - "text_url": "http://www.eclipse.org/legal/cpl-v10.html", - "reference_url": "https://scancode-licensedb.aboutcode.org/cpl-1.0", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/cpl-1.0.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/cpl-1.0.yml", - "spdx_license_key": "CPL-1.0", - "spdx_url": "https://spdx.org/licenses/CPL-1.0", - "start_line": 1, - "end_line": 212, - "matched_rule": { - "identifier": "cpl-1.0.SPDX.RULE", - "license_expression": "cpl-1.0", - "licenses": [ - "cpl-1.0" - ], - "referenced_filenames": [], - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "3-seq", - "rule_length": 1721, - "matched_length": 1720, - "match_coverage": 99.94, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "cpl-1.0" - ], - "percentage_of_license_text": 99.94, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [ - { - "key": "lgpl-2.1", - "score": 100.0, - "name": "GNU Lesser General Public License 2.1", - "short_name": "LGPL 2.1", - "category": "Copyleft Limited", - "is_exception": false, - "is_unknown": false, - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/lgpl-2.1.html", - "text_url": "http://www.gnu.org/licenses/lgpl-2.1.txt", - "reference_url": "https://scancode-licensedb.aboutcode.org/lgpl-2.1", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1.yml", - "spdx_license_key": "LGPL-2.1-only", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1-only", - "start_line": 1, - "end_line": 502, - "matched_rule": { - "identifier": "lgpl-2.1_101.RULE", - "license_expression": "lgpl-2.1", - "licenses": [ - "lgpl-2.1" - ], - "referenced_filenames": [], - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "1-hash", - "rule_length": 4288, - "matched_length": 4288, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "lgpl-2.1" - ], - "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": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "name": "GNU Lesser General Public License 2.1 or later", - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "is_exception": false, - "is_unknown": false, - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "reference_url": "https://scancode-licensedb.aboutcode.org/lgpl-2.1-plus", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1-plus.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1-plus.yml", - "spdx_license_key": "LGPL-2.1-or-later", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1-or-later", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_expression": "lgpl-2.1-plus", - "licenses": [ - "lgpl-2.1-plus" - ], - "referenced_filenames": [], - "is_license_text": false, - "is_license_notice": true, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 125, - "matched_length": 125, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "lgpl-2.1-plus" - ], - "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 - } - ], - "package_data": [], - "for_packages": [], - "emails": [ - { - "email": "millsy@jboss.com", - "start_line": 51, - "end_line": 51 - } - ], - "urls": [ - { - "url": "http://www.fsf.org/", - "start_line": 20, - "end_line": 20 - } - ], - "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-02-01", - "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, - "licenses": [ - { - "key": "cc-by-2.5", - "score": 100.0, - "name": "Creative Commons Attribution License 2.5", - "short_name": "CC-BY-2.5", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "Creative Commons", - "homepage_url": "http://creativecommons.org/licenses/by/2.5/", - "text_url": "http://creativecommons.org/licenses/by/2.5/legalcode", - "reference_url": "https://scancode-licensedb.aboutcode.org/cc-by-2.5", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/cc-by-2.5.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/cc-by-2.5.yml", - "spdx_license_key": "CC-BY-2.5", - "spdx_url": "https://spdx.org/licenses/CC-BY-2.5", - "start_line": 10, - "end_line": 11, - "matched_rule": { - "identifier": "cc-by-2.5_4.RULE", - "license_expression": "cc-by-2.5", - "licenses": [ - "cc-by-2.5" - ], - "referenced_filenames": [], - "is_license_text": false, - "is_license_notice": true, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 14, - "matched_length": 14, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "cc-by-2.5" - ], - "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 - } - ], - "package_data": [], - "for_packages": [], - "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 - } - ], - "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-02-01", - "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, - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "name": "GNU Lesser General Public License 2.1 or later", - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "is_exception": false, - "is_unknown": false, - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "reference_url": "https://scancode-licensedb.aboutcode.org/lgpl-2.1-plus", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1-plus.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1-plus.yml", - "spdx_license_key": "LGPL-2.1-or-later", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1-or-later", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_expression": "lgpl-2.1-plus", - "licenses": [ - "lgpl-2.1-plus" - ], - "referenced_filenames": [], - "is_license_text": false, - "is_license_notice": true, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 125, - "matched_length": 125, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "lgpl-2.1-plus" - ], - "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 - } - ], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [ - { - "url": "http://www.fsf.org/", - "start_line": 20, - "end_line": 20 - } - ], - "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-02-01", - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [ - { - "author": "Bela Ban", - "start_line": 16, - "end_line": 16 - } - ], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [ - { - "author": "Bela Ban", - "start_line": 23, - "end_line": 23 - } - ], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [ - { - "url": "https://jira.jboss.org/jira/browse/JGRP-1151", - "start_line": 232, - "end_line": 232 - } - ], - "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-02-01", - "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, - "licenses": [ - { - "key": "lgpl-2.1-plus", - "score": 100.0, - "name": "GNU Lesser General Public License 2.1 or later", - "short_name": "LGPL 2.1 or later", - "category": "Copyleft Limited", - "is_exception": false, - "is_unknown": false, - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", - "reference_url": "https://scancode-licensedb.aboutcode.org/lgpl-2.1-plus", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1-plus.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/lgpl-2.1-plus.yml", - "spdx_license_key": "LGPL-2.1-or-later", - "spdx_url": "https://spdx.org/licenses/LGPL-2.1-or-later", - "start_line": 7, - "end_line": 20, - "matched_rule": { - "identifier": "lgpl-2.1-plus_59.RULE", - "license_expression": "lgpl-2.1-plus", - "licenses": [ - "lgpl-2.1-plus" - ], - "referenced_filenames": [], - "is_license_text": false, - "is_license_notice": true, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 125, - "matched_length": 125, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "lgpl-2.1-plus" - ], - "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": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [ - { - "url": "http://www.fsf.org/", - "start_line": 20, - "end_line": 20 - } - ], - "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-02-01", - "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, - "licenses": [ - { - "key": "public-domain", - "score": 70.0, - "name": "Public Domain", - "short_name": "Public Domain", - "category": "Public Domain", - "is_exception": false, - "is_unknown": false, - "owner": "Unspecified", - "homepage_url": "http://www.linfo.org/publicdomain.html", - "text_url": "", - "reference_url": "https://scancode-licensedb.aboutcode.org/public-domain", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/public-domain.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/public-domain.yml", - "spdx_license_key": "LicenseRef-scancode-public-domain", - "spdx_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/public-domain.LICENSE", - "start_line": 1649, - "end_line": 1649, - "matched_rule": { - "identifier": "public-domain_bare_words.RULE", - "license_expression": "public-domain", - "licenses": [ - "public-domain" - ], - "referenced_filenames": [], - "is_license_text": false, - "is_license_notice": false, - "is_license_reference": true, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 2, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 70 - } - }, - { - "key": "public-domain-disclaimer", - "score": 100.0, - "name": "Public Domain Disclaimer", - "short_name": "Public Domain Disclaimer", - "category": "Public Domain", - "is_exception": false, - "is_unknown": false, - "owner": "Unspecified", - "homepage_url": null, - "text_url": "", - "reference_url": "https://scancode-licensedb.aboutcode.org/public-domain-disclaimer", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/public-domain-disclaimer.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/public-domain-disclaimer.yml", - "spdx_license_key": "LicenseRef-scancode-public-domain-disclaimer", - "spdx_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/public-domain-disclaimer.LICENSE", - "start_line": 1692, - "end_line": 1694, - "matched_rule": { - "identifier": "public-domain-disclaimer_77.RULE", - "license_expression": "public-domain-disclaimer", - "licenses": [ - "public-domain-disclaimer" - ], - "referenced_filenames": [], - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 30, - "matched_length": 30, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "public-domain", - "public-domain-disclaimer" - ], - "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 - } - ], - "package_data": [], - "for_packages": [], - "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 - } - ], - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "name": "ZLIB License", - "short_name": "ZLIB License", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://scancode-licensedb.aboutcode.org/zlib", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.yml", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_expression": "zlib", - "licenses": [ - "zlib" - ], - "referenced_filenames": [ - "zlib.h" - ], - "is_license_text": false, - "is_license_notice": false, - "is_license_reference": true, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 12, - "matched_length": 12, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "zlib" - ], - "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": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "name": "ZLIB License", - "short_name": "ZLIB License", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://scancode-licensedb.aboutcode.org/zlib", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.yml", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_expression": "zlib", - "licenses": [ - "zlib" - ], - "referenced_filenames": [ - "zlib.h" - ], - "is_license_text": false, - "is_license_notice": false, - "is_license_reference": true, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 12, - "matched_length": 12, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "zlib" - ], - "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 - } - ], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [ - { - "url": "http://tools.ietf.org/html/rfc1951", - "start_line": 40, - "end_line": 40 - } - ], - "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-02-01", - "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, - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "name": "ZLIB License", - "short_name": "ZLIB License", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://scancode-licensedb.aboutcode.org/zlib", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.yml", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_expression": "zlib", - "licenses": [ - "zlib" - ], - "referenced_filenames": [ - "zlib.h" - ], - "is_license_text": false, - "is_license_notice": false, - "is_license_reference": true, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 12, - "matched_length": 12, - "match_coverage": 100.0, - "rule_relevance": 100 - } - }, - { - "key": "zlib", - "score": 100.0, - "name": "ZLIB License", - "short_name": "ZLIB License", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://scancode-licensedb.aboutcode.org/zlib", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.yml", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 93, - "end_line": 94, - "matched_rule": { - "identifier": "zlib_21.RULE", - "license_expression": "zlib", - "licenses": [ - "zlib" - ], - "referenced_filenames": [], - "is_license_text": false, - "is_license_notice": false, - "is_license_reference": true, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 28, - "matched_length": 28, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "zlib", - "zlib" - ], - "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": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "name": "ZLIB License", - "short_name": "ZLIB License", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://scancode-licensedb.aboutcode.org/zlib", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.yml", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 6, - "end_line": 23, - "matched_rule": { - "identifier": "zlib_17.RULE", - "license_expression": "zlib", - "licenses": [ - "zlib" - ], - "referenced_filenames": [], - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 144, - "matched_length": 144, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "zlib" - ], - "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": [], - "package_data": [], - "for_packages": [], - "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 - } - ], - "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-02-01", - "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, - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "name": "ZLIB License", - "short_name": "ZLIB License", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://scancode-licensedb.aboutcode.org/zlib", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.yml", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_expression": "zlib", - "licenses": [ - "zlib" - ], - "referenced_filenames": [ - "zlib.h" - ], - "is_license_text": false, - "is_license_notice": false, - "is_license_reference": true, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 12, - "matched_length": 12, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "zlib" - ], - "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": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "name": "ZLIB License", - "short_name": "ZLIB License", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://scancode-licensedb.aboutcode.org/zlib", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.yml", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_expression": "zlib", - "licenses": [ - "zlib" - ], - "referenced_filenames": [ - "zlib.h" - ], - "is_license_text": false, - "is_license_notice": false, - "is_license_reference": true, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 12, - "matched_length": 12, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "zlib" - ], - "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": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [ - { - "key": "gpl-2.0-plus", - "score": 100.0, - "name": "GNU General Public License 2.0 or later", - "short_name": "GPL 2.0 or later", - "category": "Copyleft", - "is_exception": false, - "is_unknown": false, - "owner": "Free Software Foundation (FSF)", - "homepage_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", - "text_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", - "reference_url": "https://scancode-licensedb.aboutcode.org/gpl-2.0-plus", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/gpl-2.0-plus.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/gpl-2.0-plus.yml", - "spdx_license_key": "GPL-2.0-or-later", - "spdx_url": "https://spdx.org/licenses/GPL-2.0-or-later", - "start_line": 6, - "end_line": 25, - "matched_rule": { - "identifier": "gpl-2.0-plus_with_ada-linking-exception_1.RULE", - "license_expression": "gpl-2.0-plus WITH ada-linking-exception", - "licenses": [ - "gpl-2.0-plus", - "ada-linking-exception" - ], - "referenced_filenames": [], - "is_license_text": false, - "is_license_notice": true, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 176, - "matched_length": 176, - "match_coverage": 100.0, - "rule_relevance": 100 - } - }, - { - "key": "ada-linking-exception", - "score": 100.0, - "name": "Ada linking exception to GPL 2.0 or later", - "short_name": "Ada linking exception to GPL 2.0 or later", - "category": "Copyleft Limited", - "is_exception": true, - "is_unknown": false, - "owner": "Dmitriy Anisimkov", - "homepage_url": null, - "text_url": "", - "reference_url": "https://scancode-licensedb.aboutcode.org/ada-linking-exception", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/ada-linking-exception.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/ada-linking-exception.yml", - "spdx_license_key": "LicenseRef-scancode-ada-linking-exception", - "spdx_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/ada-linking-exception.LICENSE", - "start_line": 6, - "end_line": 25, - "matched_rule": { - "identifier": "gpl-2.0-plus_with_ada-linking-exception_1.RULE", - "license_expression": "gpl-2.0-plus WITH ada-linking-exception", - "licenses": [ - "gpl-2.0-plus", - "ada-linking-exception" - ], - "referenced_filenames": [], - "is_license_text": false, - "is_license_notice": true, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 176, - "matched_length": 176, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "gpl-2.0-plus WITH ada-linking-exception" - ], - "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": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [], - "license_expressions": [], - "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": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "name": "Boost Software License 1.0", - "short_name": "Boost 1.0", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://scancode-licensedb.aboutcode.org/boost-1.0", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/boost-1.0.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/boost-1.0.yml", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 4, - "end_line": 5, - "matched_rule": { - "identifier": "boost-1.0_21.RULE", - "license_expression": "boost-1.0", - "licenses": [ - "boost-1.0" - ], - "referenced_filenames": [ - "LICENSE_1_0.txt" - ], - "is_license_text": false, - "is_license_notice": true, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 32, - "matched_length": 32, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "boost-1.0" - ], - "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": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [ - { - "url": "http://www.boost.org/LICENSE_1_0.txt", - "start_line": 5, - "end_line": 5 - } - ], - "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-02-01", - "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, - "licenses": [ - { - "key": "boost-1.0", - "score": 100.0, - "name": "Boost Software License 1.0", - "short_name": "Boost 1.0", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://scancode-licensedb.aboutcode.org/boost-1.0", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/boost-1.0.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/boost-1.0.yml", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 1, - "end_line": 23, - "matched_rule": { - "identifier": "boost-1.0.LICENSE", - "license_expression": "boost-1.0", - "licenses": [ - "boost-1.0" - ], - "referenced_filenames": [], - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "1-hash", - "rule_length": 211, - "matched_length": 211, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "boost-1.0" - ], - "percentage_of_license_text": 100.0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [ - { - "key": "unknown-license-reference", - "score": 100.0, - "name": "Unknown License file reference", - "short_name": "Unknown License reference", - "category": "Unstated License", - "is_exception": false, - "is_unknown": true, - "owner": "Unspecified", - "homepage_url": null, - "text_url": "", - "reference_url": "https://scancode-licensedb.aboutcode.org/unknown-license-reference", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/unknown-license-reference.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/unknown-license-reference.yml", - "spdx_license_key": "LicenseRef-scancode-unknown-license-reference", - "spdx_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/unknown-license-reference.LICENSE", - "start_line": 10, - "end_line": 10, - "matched_rule": { - "identifier": "unknown-license-reference_225.RULE", - "license_expression": "unknown-license-reference", - "licenses": [ - "unknown-license-reference" - ], - "referenced_filenames": [ - "LICENSE_1_0.txt" - ], - "is_license_text": false, - "is_license_notice": false, - "is_license_reference": true, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": true, - "matcher": "2-aho", - "rule_length": 6, - "matched_length": 6, - "match_coverage": 100.0, - "rule_relevance": 100 - } - }, - { - "key": "boost-1.0", - "score": 100.0, - "name": "Boost Software License 1.0", - "short_name": "Boost 1.0", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "Boost", - "homepage_url": "http://www.boost.org/users/license.html", - "text_url": "http://www.boost.org/LICENSE_1_0.txt", - "reference_url": "https://scancode-licensedb.aboutcode.org/boost-1.0", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/boost-1.0.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/boost-1.0.yml", - "spdx_license_key": "BSL-1.0", - "spdx_url": "https://spdx.org/licenses/BSL-1.0", - "start_line": 57, - "end_line": 58, - "matched_rule": { - "identifier": "boost-1.0_21.RULE", - "license_expression": "boost-1.0", - "licenses": [ - "boost-1.0" - ], - "referenced_filenames": [ - "LICENSE_1_0.txt" - ], - "is_license_text": false, - "is_license_notice": true, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 32, - "matched_length": 32, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "unknown-license-reference", - "boost-1.0" - ], - "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": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [ - { - "url": "http://www.boost.org/LICENSE_1_0.txt", - "start_line": 58, - "end_line": 58 - } - ], - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "name": "ZLIB License", - "short_name": "ZLIB License", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://scancode-licensedb.aboutcode.org/zlib", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.yml", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 17, - "end_line": 31, - "matched_rule": { - "identifier": "zlib.LICENSE", - "license_expression": "zlib", - "licenses": [ - "zlib" - ], - "referenced_filenames": [], - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 132, - "matched_length": 132, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "zlib" - ], - "percentage_of_license_text": 5.91, - "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 - } - ], - "package_data": [], - "for_packages": [], - "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 - } - ], - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "name": "ZLIB License", - "short_name": "ZLIB License", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://scancode-licensedb.aboutcode.org/zlib", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.yml", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_expression": "zlib", - "licenses": [ - "zlib" - ], - "referenced_filenames": [ - "zlib.h" - ], - "is_license_text": false, - "is_license_notice": false, - "is_license_reference": true, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 12, - "matched_length": 12, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "zlib" - ], - "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": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [ - { - "key": "zlib", - "score": 100.0, - "name": "ZLIB License", - "short_name": "ZLIB License", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "zlib", - "homepage_url": "http://www.zlib.net/", - "text_url": "http://www.gzip.org/zlib/zlib_license.html", - "reference_url": "https://scancode-licensedb.aboutcode.org/zlib", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/zlib.yml", - "spdx_license_key": "Zlib", - "spdx_url": "https://spdx.org/licenses/Zlib", - "start_line": 3, - "end_line": 3, - "matched_rule": { - "identifier": "zlib_5.RULE", - "license_expression": "zlib", - "licenses": [ - "zlib" - ], - "referenced_filenames": [ - "zlib.h" - ], - "is_license_text": false, - "is_license_notice": false, - "is_license_reference": true, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 12, - "matched_length": 12, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "zlib" - ], - "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": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "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-02-01", - "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, - "licenses": [ - { - "key": "mit-old-style", - "score": 100.0, - "name": "MIT Old Style", - "short_name": "MIT Old Style", - "category": "Permissive", - "is_exception": false, - "is_unknown": false, - "owner": "MIT", - "homepage_url": "http://fedoraproject.org/wiki/Licensing:MIT#Old_Style", - "text_url": "http://fedoraproject.org/wiki/Licensing:MIT#Old_Style", - "reference_url": "https://scancode-licensedb.aboutcode.org/mit-old-style", - "scancode_text_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit-old-style.LICENSE", - "scancode_data_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit-old-style.yml", - "spdx_license_key": "LicenseRef-scancode-mit-old-style", - "spdx_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit-old-style.LICENSE", - "start_line": 9, - "end_line": 15, - "matched_rule": { - "identifier": "mit-old-style_cmr-no_1.RULE", - "license_expression": "mit-old-style", - "licenses": [ - "mit-old-style" - ], - "referenced_filenames": [], - "is_license_text": true, - "is_license_notice": false, - "is_license_reference": false, - "is_license_tag": false, - "is_license_intro": false, - "has_unknown": false, - "matcher": "2-aho", - "rule_length": 71, - "matched_length": 71, - "match_coverage": 100.0, - "rule_relevance": 100 - } - } - ], - "license_expressions": [ - "mit-old-style" - ], - "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": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [ - { - "url": "http://www.cmr.no/", - "start_line": 7, - "end_line": 7 - } - ], - "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-02-01", - "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, - "licenses": [], - "license_expressions": [], - "percentage_of_license_text": 0, - "copyrights": [], - "holders": [], - "authors": [], - "package_data": [], - "for_packages": [], - "emails": [], - "urls": [], - "files_count": 0, - "dirs_count": 0, - "size_count": 0, - "scan_errors": [] - } - ] -} \ No newline at end of file diff --git a/samples/scancode-31.0.0b4-packages-37d4e0a.json b/samples/scancode-31.0.0b4-packages-37d4e0a.json deleted file mode 100644 index ec6022b4..00000000 --- a/samples/scancode-31.0.0b4-packages-37d4e0a.json +++ /dev/null @@ -1,861 +0,0 @@ -{ - "headers": [ - { - "tool_name": "scancode-toolkit", - "tool_version": "31.0.0b4", - "options": { - "--package": 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.", - "output_format_version": "2.0.0", - "duration": 1.3074486255645752, - "message": null, - "errors": [], - "warnings": [], - "extra_data": { - "system_environment": { - "operating_system": "linux", - "cpu_architecture": "64", - "platform": "Linux-5.14.0-1032-oem-x86_64-with-glibc2.29", - "platform_version": "#35-Ubuntu SMP Thu Mar 31 12:49:29 UTC 2022", - "python_version": "3.8.10 (default, Mar 15 2022, 12:22:08) \n[GCC 9.4.0]" - }, - "spdx_license_list_version": "3.16", - "files_count": 12 - } - } - ], - "dependencies": [ - { - "purl": "pkg:pypi/aboutcode-toolkit@6.0.0", - "extracted_requirement": "==6.0.0", - "scope": "development", - "is_runtime": false, - "is_optional": true, - "is_resolved": true, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/aboutcode-toolkit@6.0.0?uuid=4a0a0670-ceba-4ba5-acc4-299e384a53fa", - "for_package_uid": null, - "datafile_path": "python-sample/requirements-dev.txt", - "datasource_id": "pip_requirements" - }, - { - "purl": "pkg:pypi/py@1.10.0", - "extracted_requirement": "==1.10.0", - "scope": "development", - "is_runtime": false, - "is_optional": true, - "is_resolved": true, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/py@1.10.0?uuid=e2836a6f-b630-483e-8d0a-03e9fd0491ea", - "for_package_uid": null, - "datafile_path": "python-sample/requirements-dev.txt", - "datasource_id": "pip_requirements" - }, - { - "purl": "pkg:pypi/pytest@6.2.4", - "extracted_requirement": "==6.2.4", - "scope": "development", - "is_runtime": false, - "is_optional": true, - "is_resolved": true, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/pytest@6.2.4?uuid=5da35db0-bc1a-4552-bcce-2d5d1163711c", - "for_package_uid": null, - "datafile_path": "python-sample/requirements-dev.txt", - "datasource_id": "pip_requirements" - }, - { - "purl": "pkg:pypi/commoncode@30.0.0", - "extracted_requirement": "==30.0.0", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": true, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/commoncode@30.0.0?uuid=9a74538a-0a00-4c1a-adbe-18bec72d80cd", - "for_package_uid": null, - "datafile_path": "python-sample/requirements.txt", - "datasource_id": "pip_requirements" - }, - { - "purl": "pkg:pypi/extractcode@21.7.23", - "extracted_requirement": "==21.7.23", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": true, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/extractcode@21.7.23?uuid=71acfaa0-78aa-46af-a216-45a574233a6f", - "for_package_uid": null, - "datafile_path": "python-sample/requirements.txt", - "datasource_id": "pip_requirements" - }, - { - "purl": "pkg:pypi/license-expression@21.6.14", - "extracted_requirement": "==21.6.14", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": true, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/license-expression@21.6.14?uuid=1d4ba82d-eb31-4ca7-aafd-8a27be545f4f", - "for_package_uid": null, - "datafile_path": "python-sample/requirements.txt", - "datasource_id": "pip_requirements" - }, - { - "purl": "pkg:pypi/plugincode@21.1.21", - "extracted_requirement": "==21.1.21", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": true, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/plugincode@21.1.21?uuid=0e5659ee-8f8e-49ab-b284-9ba87f4fbf36", - "for_package_uid": null, - "datafile_path": "python-sample/requirements.txt", - "datasource_id": "pip_requirements" - }, - { - "purl": "pkg:pypi/typecode@21.6.1", - "extracted_requirement": "==21.6.1", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": true, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/typecode@21.6.1?uuid=9e762641-3eb8-41ba-b48c-13da61695a80", - "for_package_uid": null, - "datafile_path": "python-sample/requirements.txt", - "datasource_id": "pip_requirements" - }, - { - "purl": "pkg:pypi/commoncode", - "extracted_requirement": ">=30.0.0", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/commoncode?uuid=9a3c7ec9-6ada-4fd6-aeb8-bcc04242506f", - "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d", - "datafile_path": "python-sample/setup.cfg", - "datasource_id": "pypi_setup_cfg" - }, - { - "purl": "pkg:pypi/plugincode", - "extracted_requirement": ">=21.1.21", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/plugincode?uuid=c209c0a1-40de-4373-a3dd-9bc4ad01147a", - "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d", - "datafile_path": "python-sample/setup.cfg", - "datasource_id": "pypi_setup_cfg" - }, - { - "purl": "pkg:pypi/typecode", - "extracted_requirement": ">=21.6.1", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/typecode?uuid=44b4224a-45c6-47e1-9571-45ff81ebdde7", - "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d", - "datafile_path": "python-sample/setup.cfg", - "datasource_id": "pypi_setup_cfg" - }, - { - "purl": "pkg:pypi/extractcode", - "extracted_requirement": ">=21.7.23", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/extractcode?uuid=a48de9bd-ea04-403a-ab70-5790eae7a1c8", - "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d", - "datafile_path": "python-sample/setup.cfg", - "datasource_id": "pypi_setup_cfg" - }, - { - "purl": "pkg:pypi/rpm-inspector-rpm", - "extracted_requirement": ">=4.16.1.3", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/rpm-inspector-rpm?uuid=a9bef8a5-c2d3-49aa-9815-73d1ba1f2107", - "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d", - "datafile_path": "python-sample/setup.cfg", - "datasource_id": "pypi_setup_cfg" - }, - { - "purl": "pkg:pypi/regipy", - "extracted_requirement": ">=2.0.0", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/regipy?uuid=ae98c173-6cb7-4289-9e72-70c22bef2e28", - "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d", - "datafile_path": "python-sample/setup.cfg", - "datasource_id": "pypi_setup_cfg" - }, - { - "purl": "pkg:pypi/packagedcode-msitools", - "extracted_requirement": ">=0.101.210706", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/packagedcode-msitools?uuid=70041d69-b034-427c-92b4-239b2318a985", - "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d", - "datafile_path": "python-sample/setup.cfg", - "datasource_id": "pypi_setup_cfg" - }, - { - "purl": "pkg:pypi/pytest", - "extracted_requirement": "pytest", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {}, - "dependency_uid": "pkg:pypi/pytest?uuid=6f58c064-9e85-4ba4-b953-ff597deb859d", - "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d", - "datafile_path": "python-sample/setup.cfg", - "datasource_id": "pypi_setup_cfg" - } - ], - "packages": [ - { - "type": "about", - "namespace": null, - "name": "scancode-toolkit", - "version": null, - "qualifiers": {}, - "subpath": null, - "primary_language": null, - "description": null, - "release_date": null, - "parties": [ - { - "type": "person", - "role": "owner", - "name": "None", - "email": null, - "url": null - } - ], - "keywords": [], - "homepage_url": "https://www.aboutcode.org/", - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": "Copyright (c) nexB Inc. and others.", - "license_expression": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft", - "declared_license": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft", - "notice_text": null, - "source_packages": [], - "extra_data": { - "missing_file_references": [ - { - "path": ".", - "size": 0, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "extra_data": {} - } - ] - }, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:about/scancode-toolkit?uuid=f2148990-9f00-4d56-b388-58e9c8e3c8e0", - "datafile_paths": [ - "python-sample/scancode-toolkit.ABOUT" - ], - "datasource_ids": [ - "about_file" - ], - "purl": "pkg:about/scancode-toolkit" - }, - { - "type": "pypi", - "namespace": null, - "name": "scancode-toolkit", - "version": "30.1.0", - "qualifiers": {}, - "subpath": null, - "primary_language": "Python", - "description": null, - "release_date": null, - "parties": [ - { - "type": "person", - "role": "author", - "name": "ScanCode", - "email": "info@aboutcode.org", - "url": null - } - ], - "keywords": [], - "homepage_url": "https://github.com/nexB/scancode-toolkit", - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "license_expression": null, - "declared_license": null, - "notice_text": null, - "source_packages": [], - "extra_data": {}, - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d", - "datafile_paths": [ - "python-sample/setup.cfg" - ], - "datasource_ids": [ - "pypi_setup_cfg" - ], - "purl": "pkg:pypi/scancode-toolkit@30.1.0" - } - ], - "files": [ - { - "path": "python-sample", - "type": "directory", - "package_data": [], - "for_packages": [], - "scan_errors": [] - }, - { - "path": "python-sample/apache-2.0.LICENSE", - "type": "file", - "package_data": [], - "for_packages": [ - "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d" - ], - "scan_errors": [] - }, - { - "path": "python-sample/cc-by-4.0.LICENSE", - "type": "file", - "package_data": [], - "for_packages": [ - "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d" - ], - "scan_errors": [] - }, - { - "path": "python-sample/MANIFEST.in", - "type": "file", - "package_data": [], - "for_packages": [ - "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d" - ], - "scan_errors": [] - }, - { - "path": "python-sample/NOTICE", - "type": "file", - "package_data": [], - "for_packages": [ - "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d" - ], - "scan_errors": [] - }, - { - "path": "python-sample/pyproject.toml", - "type": "file", - "package_data": [ - { - "type": "pypi", - "namespace": null, - "name": null, - "version": null, - "qualifiers": {}, - "subpath": null, - "primary_language": "Python", - "description": null, - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "license_expression": null, - "declared_license": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "pypi_pyproject_toml", - "purl": null - } - ], - "for_packages": [ - "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d" - ], - "scan_errors": [] - }, - { - "path": "python-sample/README.rst", - "type": "file", - "package_data": [], - "for_packages": [ - "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d" - ], - "scan_errors": [] - }, - { - "path": "python-sample/requirements-dev.txt", - "type": "file", - "package_data": [ - { - "type": "pypi", - "namespace": null, - "name": null, - "version": null, - "qualifiers": {}, - "subpath": null, - "primary_language": "Python", - "description": null, - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "license_expression": null, - "declared_license": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [ - { - "purl": "pkg:pypi/aboutcode-toolkit@6.0.0", - "extracted_requirement": "==6.0.0", - "scope": "development", - "is_runtime": false, - "is_optional": true, - "is_resolved": true, - "resolved_package": {} - }, - { - "purl": "pkg:pypi/py@1.10.0", - "extracted_requirement": "==1.10.0", - "scope": "development", - "is_runtime": false, - "is_optional": true, - "is_resolved": true, - "resolved_package": {} - }, - { - "purl": "pkg:pypi/pytest@6.2.4", - "extracted_requirement": "==6.2.4", - "scope": "development", - "is_runtime": false, - "is_optional": true, - "is_resolved": true, - "resolved_package": {} - } - ], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "pip_requirements", - "purl": null - } - ], - "for_packages": [ - "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d" - ], - "scan_errors": [] - }, - { - "path": "python-sample/requirements.txt", - "type": "file", - "package_data": [ - { - "type": "pypi", - "namespace": null, - "name": null, - "version": null, - "qualifiers": {}, - "subpath": null, - "primary_language": "Python", - "description": null, - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "license_expression": null, - "declared_license": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [ - { - "purl": "pkg:pypi/commoncode@30.0.0", - "extracted_requirement": "==30.0.0", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": true, - "resolved_package": {} - }, - { - "purl": "pkg:pypi/extractcode@21.7.23", - "extracted_requirement": "==21.7.23", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": true, - "resolved_package": {} - }, - { - "purl": "pkg:pypi/license-expression@21.6.14", - "extracted_requirement": "==21.6.14", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": true, - "resolved_package": {} - }, - { - "purl": "pkg:pypi/plugincode@21.1.21", - "extracted_requirement": "==21.1.21", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": true, - "resolved_package": {} - }, - { - "purl": "pkg:pypi/typecode@21.6.1", - "extracted_requirement": "==21.6.1", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": true, - "resolved_package": {} - } - ], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "pip_requirements", - "purl": null - } - ], - "for_packages": [ - "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d" - ], - "scan_errors": [] - }, - { - "path": "python-sample/scancode-toolkit.ABOUT", - "type": "file", - "package_data": [ - { - "type": "about", - "namespace": null, - "name": "scancode-toolkit", - "version": null, - "qualifiers": {}, - "subpath": null, - "primary_language": null, - "description": null, - "release_date": null, - "parties": [ - { - "type": "person", - "role": "owner", - "name": "None", - "email": null, - "url": null - } - ], - "keywords": [], - "homepage_url": "https://www.aboutcode.org/", - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": "Copyright (c) nexB Inc. and others.", - "license_expression": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft", - "declared_license": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft", - "notice_text": null, - "source_packages": [], - "file_references": [ - { - "path": ".", - "size": 0, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "extra_data": {} - } - ], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "about_file", - "purl": "pkg:about/scancode-toolkit" - } - ], - "for_packages": [ - "pkg:about/scancode-toolkit?uuid=f2148990-9f00-4d56-b388-58e9c8e3c8e0", - "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d" - ], - "scan_errors": [] - }, - { - "path": "python-sample/setup-mini.cfg", - "type": "file", - "package_data": [], - "for_packages": [ - "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d" - ], - "scan_errors": [] - }, - { - "path": "python-sample/setup.cfg", - "type": "file", - "package_data": [ - { - "type": "pypi", - "namespace": null, - "name": "scancode-toolkit", - "version": "30.1.0", - "qualifiers": {}, - "subpath": null, - "primary_language": "Python", - "description": null, - "release_date": null, - "parties": [ - { - "type": "person", - "role": "author", - "name": "ScanCode", - "email": "info@aboutcode.org", - "url": null - } - ], - "keywords": [], - "homepage_url": "https://github.com/nexB/scancode-toolkit", - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "license_expression": null, - "declared_license": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [ - { - "purl": "pkg:pypi/commoncode", - "extracted_requirement": ">=30.0.0", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {} - }, - { - "purl": "pkg:pypi/plugincode", - "extracted_requirement": ">=21.1.21", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {} - }, - { - "purl": "pkg:pypi/typecode", - "extracted_requirement": ">=21.6.1", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {} - }, - { - "purl": "pkg:pypi/extractcode", - "extracted_requirement": ">=21.7.23", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {} - }, - { - "purl": "pkg:pypi/rpm-inspector-rpm", - "extracted_requirement": ">=4.16.1.3", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {} - }, - { - "purl": "pkg:pypi/regipy", - "extracted_requirement": ">=2.0.0", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {} - }, - { - "purl": "pkg:pypi/packagedcode-msitools", - "extracted_requirement": ">=0.101.210706", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {} - }, - { - "purl": "pkg:pypi/pytest", - "extracted_requirement": "pytest", - "scope": "install", - "is_runtime": true, - "is_optional": false, - "is_resolved": false, - "resolved_package": {} - } - ], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "pypi_setup_cfg", - "purl": "pkg:pypi/scancode-toolkit@30.1.0" - } - ], - "for_packages": [ - "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d" - ], - "scan_errors": [] - }, - { - "path": "python-sample/setup.py", - "type": "file", - "package_data": [ - { - "type": "pypi", - "namespace": null, - "name": null, - "version": null, - "qualifiers": {}, - "subpath": null, - "primary_language": "Python", - "description": "", - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "license_expression": null, - "declared_license": {}, - "notice_text": null, - "source_packages": [], - "file_references": [], - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "pypi_setup_py", - "purl": null - } - ], - "for_packages": [ - "pkg:pypi/scancode-toolkit@30.1.0?uuid=c46ea0bc-d02a-4ea5-8cdd-8aee9365503d" - ], - "scan_errors": [] - } - ] -} \ No newline at end of file diff --git a/samples/scancode-32.0.0rc4_python_sample-wref.json b/samples/scancode-32.0.0rc4_python_sample-wref.json new file mode 100644 index 00000000..12dfdc89 --- /dev/null +++ b/samples/scancode-32.0.0rc4_python_sample-wref.json @@ -0,0 +1,4140 @@ +{ + "headers": [ + { + "tool_name": "scancode-toolkit", + "tool_version": "32.0.0rc4", + "options": { + "input": [ + "/Users/omkar/projects/aboutcode/sct-ref-scans/scan-data/packages/python-sample" + ], + "--copyright": true, + "--email": true, + "--info": true, + "--json-pp": "scancode-32.0.0rc4_python_sample-wref.json", + "--license": true, + "--license-diagnostics": true, + "--license-references": true, + "--package": true, + "--processes": "4", + "--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-05-10T095453.613306", + "end_timestamp": "2023-05-10T095509.574964", + "output_format_version": "3.0.0", + "duration": 15.961700916290283, + "message": null, + "errors": [], + "warnings": [], + "extra_data": { + "system_environment": { + "operating_system": "mac", + "cpu_architecture": "64", + "platform": "macOS-13.3.1-x86_64-i386-64bit", + "platform_version": "Darwin Kernel Version 22.4.0: Mon Mar 6 21:00:41 PST 2023; root:xnu-8796.101.5~3/RELEASE_ARM64_T8103", + "python_version": "3.9.13 (v3.9.13:6de2ca5339, May 17 2022, 11:37:23) \n[Clang 13.0.0 (clang-1300.0.29.30)]" + }, + "spdx_license_list_version": "3.20", + "files_count": 13 + } + } + ], + "packages": [ + { + "type": "about", + "namespace": null, + "name": "scancode-toolkit", + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": null, + "parties": [ + { + "type": "person", + "role": "owner", + "name": "None", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "https://www.aboutcode.org/", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": "Copyright (c) nexB Inc. and others.", + "holder": "nexB Inc. and others", + "declared_license_expression": "apache-2.0 AND cc-by-4.0", + "declared_license_expression_spdx": "Apache-2.0 AND CC-BY-4.0", + "license_detections": [ + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 3, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE", + "matched_text": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft" + }, + { + "score": 50.0, + "start_line": 1, + "end_line": 1, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "rule_relevance": 50, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "matched_text": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft" + } + ], + "identifier": "apache_2_0_and_cc_by_4_0-9b136727-da14-7f8d-c7e5-319687ed57a5" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft", + "notice_text": null, + "source_packages": [], + "extra_data": { + "missing_file_references": [ + { + "path": ".", + "size": 0, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + } + ] + }, + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "package_uid": "pkg:about/scancode-toolkit?uuid=c6d6bb16-39af-452e-9fe8-74862467ca6b", + "datafile_paths": [ + "python-sample/scancode-toolkit.ABOUT" + ], + "datasource_ids": [ + "about_file" + ], + "purl": "pkg:about/scancode-toolkit" + }, + { + "type": "pypi", + "namespace": null, + "name": "scancode-toolkit", + "version": "30.1.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": null, + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "ScanCode", + "email": "info@aboutcode.org", + "url": null + } + ], + "keywords": [], + "homepage_url": "https://github.com/nexB/scancode-toolkit", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "holder": null, + "declared_license_expression": "apache-2.0 AND cc-by-4.0", + "declared_license_expression_spdx": "Apache-2.0 AND CC-BY-4.0", + "license_detections": [ + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 4, + "end_line": 4, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_65.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_65.RULE" + }, + { + "score": 50.0, + "start_line": 4, + "end_line": 4, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "rule_relevance": 50, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE" + } + ], + "detection_log": [ + "from-package-file" + ], + "identifier": "apache_2_0_and_cc_by_4_0-f9599d77-cb74-1b0d-1431-36a803bc6bc2" + }, + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 37, + "end_line": 37, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_176.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_176.RULE" + }, + { + "score": 50.0, + "start_line": 39, + "end_line": 39, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "rule_relevance": 50, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE" + } + ], + "detection_log": [ + "from-package-file" + ], + "identifier": "apache_2_0_and_cc_by_4_0-49bebfd8-0ea0-905e-8936-32543a843cda" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": null, + "notice_text": null, + "source_packages": [], + "extra_data": {}, + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c", + "datafile_paths": [ + "python-sample/setup.cfg" + ], + "datasource_ids": [ + "pypi_setup_cfg" + ], + "purl": "pkg:pypi/scancode-toolkit@30.1.0" + } + ], + "dependencies": [ + { + "purl": "pkg:pypi/aboutcode-toolkit@6.0.0", + "extracted_requirement": "aboutcode-toolkit==6.0.0", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + }, + "dependency_uid": "pkg:pypi/aboutcode-toolkit@6.0.0?uuid=fd37bddc-5ccc-4fce-bd8c-4bb5e9158349", + "for_package_uid": null, + "datafile_path": "python-sample/requirements-dev.txt", + "datasource_id": "pip_requirements" + }, + { + "purl": "pkg:pypi/py@1.10.0", + "extracted_requirement": "py==1.10.0", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + }, + "dependency_uid": "pkg:pypi/py@1.10.0?uuid=29821180-684f-45d3-866a-ac13a5041978", + "for_package_uid": null, + "datafile_path": "python-sample/requirements-dev.txt", + "datasource_id": "pip_requirements" + }, + { + "purl": "pkg:pypi/pytest@6.2.4", + "extracted_requirement": "pytest==6.2.4", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + }, + "dependency_uid": "pkg:pypi/pytest@6.2.4?uuid=2f006006-8dcb-4f6a-9fc8-aaf879076f24", + "for_package_uid": null, + "datafile_path": "python-sample/requirements-dev.txt", + "datasource_id": "pip_requirements" + }, + { + "purl": "pkg:pypi/commoncode@30.0.0", + "extracted_requirement": "commoncode==30.0.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + }, + "dependency_uid": "pkg:pypi/commoncode@30.0.0?uuid=b0fa7564-3d63-4e21-aa28-7a3a4bd6e32e", + "for_package_uid": null, + "datafile_path": "python-sample/requirements.txt", + "datasource_id": "pip_requirements" + }, + { + "purl": "pkg:pypi/extractcode@21.7.23", + "extracted_requirement": "extractcode==21.7.23", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + }, + "dependency_uid": "pkg:pypi/extractcode@21.7.23?uuid=b06c1b9c-84af-4938-a13c-76e8a379a42e", + "for_package_uid": null, + "datafile_path": "python-sample/requirements.txt", + "datasource_id": "pip_requirements" + }, + { + "purl": "pkg:pypi/license-expression@21.6.14", + "extracted_requirement": "license-expression==21.6.14", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + }, + "dependency_uid": "pkg:pypi/license-expression@21.6.14?uuid=e507f1e7-30c9-4472-a7f1-c4123a5000b0", + "for_package_uid": null, + "datafile_path": "python-sample/requirements.txt", + "datasource_id": "pip_requirements" + }, + { + "purl": "pkg:pypi/plugincode@21.1.21", + "extracted_requirement": "plugincode==21.1.21", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + }, + "dependency_uid": "pkg:pypi/plugincode@21.1.21?uuid=1b46732e-43a7-45ad-94d9-021fb11b1903", + "for_package_uid": null, + "datafile_path": "python-sample/requirements.txt", + "datasource_id": "pip_requirements" + }, + { + "purl": "pkg:pypi/typecode@21.6.1", + "extracted_requirement": "typecode==21.6.1", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + }, + "dependency_uid": "pkg:pypi/typecode@21.6.1?uuid=9f453d21-345b-4a8a-9130-5aa59f3bd959", + "for_package_uid": null, + "datafile_path": "python-sample/requirements.txt", + "datasource_id": "pip_requirements" + }, + { + "purl": "pkg:pypi/commoncode", + "extracted_requirement": "commoncode>=30.0.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/commoncode?uuid=908aa69e-aee6-44cf-bc98-a2a8a2d10bc5", + "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c", + "datafile_path": "python-sample/setup.cfg", + "datasource_id": "pypi_setup_cfg" + }, + { + "purl": "pkg:pypi/plugincode", + "extracted_requirement": "plugincode>=21.1.21", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/plugincode?uuid=73dae5ed-0046-4cdc-9cb5-9fac460ce25c", + "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c", + "datafile_path": "python-sample/setup.cfg", + "datasource_id": "pypi_setup_cfg" + }, + { + "purl": "pkg:pypi/typecode", + "extracted_requirement": "typecode[full]>=21.6.1", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/typecode?uuid=7349581c-1dbf-4bb6-a906-3171b6724e80", + "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c", + "datafile_path": "python-sample/setup.cfg", + "datasource_id": "pypi_setup_cfg" + }, + { + "purl": "pkg:pypi/extractcode", + "extracted_requirement": "extractcode[full]>=21.7.23", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/extractcode?uuid=28ac376c-1267-4b5a-9621-f97fcbebd879", + "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c", + "datafile_path": "python-sample/setup.cfg", + "datasource_id": "pypi_setup_cfg" + }, + { + "purl": "pkg:generic/python", + "extracted_requirement": "python_requires>=3.6.*, <4", + "scope": "python", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:generic/python?uuid=3b63106f-e86c-4f5f-a3d3-63a71521de56", + "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c", + "datafile_path": "python-sample/setup.cfg", + "datasource_id": "pypi_setup_cfg" + }, + { + "purl": "pkg:pypi/rpm-inspector-rpm", + "extracted_requirement": "rpm_inspector_rpm>=4.16.1.3; platform_system == \"Linux\"", + "scope": "packages", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/rpm-inspector-rpm?uuid=1b7c69a6-33e3-4254-912d-99fb865f3dcf", + "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c", + "datafile_path": "python-sample/setup.cfg", + "datasource_id": "pypi_setup_cfg" + }, + { + "purl": "pkg:pypi/regipy", + "extracted_requirement": "regipy>=2.0.0; platform_system == \"Linux\"", + "scope": "packages", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/regipy?uuid=8c4146e2-a053-45eb-85ff-75999de500d7", + "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c", + "datafile_path": "python-sample/setup.cfg", + "datasource_id": "pypi_setup_cfg" + }, + { + "purl": "pkg:pypi/packagedcode-msitools", + "extracted_requirement": "packagedcode_msitools>=0.101.210706; platform_system == \"Linux\"", + "scope": "packages", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/packagedcode-msitools?uuid=b97a7072-2072-44c7-8061-92f165c1801f", + "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c", + "datafile_path": "python-sample/setup.cfg", + "datasource_id": "pypi_setup_cfg" + }, + { + "purl": "pkg:pypi/pytest", + "extracted_requirement": "pytest", + "scope": "dev", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:pypi/pytest?uuid=69555008-2b63-4c30-9b28-fd78f799d25d", + "for_package_uid": "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c", + "datafile_path": "python-sample/setup.cfg", + "datasource_id": "pypi_setup_cfg" + } + ], + "license_detections": [ + { + "identifier": "apache_2_0-ab23f79b-ec38-9a8a-9b23-85059407f34d", + "license_expression": "apache-2.0", + "detection_count": 2, + "detection_log": [] + }, + { + "identifier": "cc_by_4_0-da6cc60f-af35-550c-a524-2da27b9bad12", + "license_expression": "cc-by-4.0", + "detection_count": 2, + "detection_log": [] + }, + { + "identifier": "apache_2_0_and_cc_by_4_0-3f088fe7-b454-272e-c2bd-ba96f8872a9a", + "license_expression": "apache-2.0 AND cc-by-4.0", + "detection_count": 2, + "detection_log": [] + }, + { + "identifier": "cc_by_4_0-03672089-7ed1-8ec3-87d4-b04dc680d1cf", + "license_expression": "cc-by-4.0", + "detection_count": 2, + "detection_log": [] + }, + { + "identifier": "cc_by_4_0-a0d635a7-b1f8-ba63-9065-28b4adbe7deb", + "license_expression": "cc-by-4.0", + "detection_count": 2, + "detection_log": [] + }, + { + "identifier": "apache_2_0_and_cc_by_4_0_and_public_domain_and_lgpl_2_0_plus_and__mit_and_bsd_new__and_gpl_2_0-ec1fd5b3-8a52-10ad-9fd5-273618a2d9ac", + "license_expression": "apache-2.0 AND cc-by-4.0 AND public-domain AND lgpl-2.0-plus AND (mit AND bsd-new) AND gpl-2.0", + "detection_count": 2, + "detection_log": [] + }, + { + "identifier": "apache_2_0_and_cc_by_4_0-9b136727-da14-7f8d-c7e5-319687ed57a5", + "license_expression": "apache-2.0 AND cc-by-4.0", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "apache_2_0_and_cc_by_4_0-f9599d77-cb74-1b0d-1431-36a803bc6bc2", + "license_expression": "apache-2.0 AND cc-by-4.0", + "detection_count": 2, + "detection_log": [] + }, + { + "identifier": "apache_2_0_and_cc_by_4_0-49bebfd8-0ea0-905e-8936-32543a843cda", + "license_expression": "apache-2.0 AND cc-by-4.0", + "detection_count": 2, + "detection_log": [] + } + ], + "license_references": [ + { + "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": "bsd-new", + "language": "en", + "short_name": "BSD-3-Clause", + "name": "BSD-3-Clause", + "category": "Permissive", + "owner": "Regents of the University of California", + "homepage_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "notes": "Per SPDX.org, this license is OSI certified.", + "is_builtin": true, + "is_exception": false, + "is_unknown": false, + "is_generic": false, + "spdx_license_key": "BSD-3-Clause", + "other_spdx_license_keys": [ + "LicenseRef-scancode-libzip" + ], + "osi_license_key": "BSD-3-Clause", + "text_urls": [ + "http://www.opensource.org/licenses/BSD-3-Clause" + ], + "osi_url": "http://www.opensource.org/licenses/BSD-3-Clause", + "faq_url": null, + "other_urls": [ + "http://framework.zend.com/license/new-bsd", + "https://opensource.org/licenses/BSD-3-Clause", + "https://www.eclipse.org/org/documents/edl-v10.php" + ], + "key_aliases": [], + "minimum_coverage": 0, + "standard_notice": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "Redistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list\nof conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\nNeither the name of the ORGANIZATION nor the names of its contributors may be\nused to endorse or promote products derived from this software without specific\nprior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\nGOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\nTHE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", + "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/bsd-new.LICENSE", + "licensedb_url": "https://scancode-licensedb.aboutcode.org/bsd-new", + "spdx_url": "https://spdx.org/licenses/BSD-3-Clause" + }, + { + "key": "cc-by-4.0", + "language": "en", + "short_name": "CC-BY-4.0", + "name": "Creative Commons Attribution 4.0 International Public License", + "category": "Permissive", + "owner": "Creative Commons", + "homepage_url": "http://creativecommons.org/licenses/by/4.0/", + "notes": null, + "is_builtin": true, + "is_exception": false, + "is_unknown": false, + "is_generic": false, + "spdx_license_key": "CC-BY-4.0", + "other_spdx_license_keys": [], + "osi_license_key": null, + "text_urls": [ + "http://creativecommons.org/licenses/by/4.0/legalcode" + ], + "osi_url": null, + "faq_url": null, + "other_urls": [ + "https://creativecommons.org/licenses/by/4.0/legalcode" + ], + "key_aliases": [], + "minimum_coverage": 0, + "standard_notice": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "Attribution 4.0 International\n\n=======================================================================\n\nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide legal services or legal advice. Distribution of\nCreative Commons public licenses does not create a lawyer-client or\nother relationship. Creative Commons makes its licenses and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\nwarranties regarding its licenses, any material licensed under their\nterms and conditions, or any related information. Creative Commons\ndisclaims all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and\nconditions that creators and other rights holders may use to share\noriginal works of authorship and other material subject to copyright\nand certain other rights specified in the public license below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive, and do not form part of our licenses.\n\n Considerations for licensors: Our public licenses are\n intended for use by those authorized to give the public\n permission to use material in ways otherwise restricted by\n copyright and certain other rights. Our licenses are\n irrevocable. Licensors should read and understand the terms\n and conditions of the license they choose before applying it.\n Licensors should also secure all rights necessary before\n applying our licenses so that the public can reuse the\n material as expected. Licensors should clearly mark any\n material not subject to the license. This includes other CC-\n licensed material, or material used under an exception or\n limitation to copyright. More considerations for licensors:\n\twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public: By using one of our public\n licenses, a licensor grants the public permission to use the\n licensed material under specified terms and conditions. If\n the licensor's permission is not necessary for any reason--for\n example, because of any applicable exception or limitation to\n copyright--then that use is not regulated by the license. Our\n licenses grant only permissions under copyright and certain\n other rights that a licensor has authority to grant. Use of\n the licensed material may still be restricted for other\n reasons, including because others have copyright or other\n rights in the material. A licensor may make special requests,\n such as asking that all changes be marked or described.\n Although not required by our licenses, you are encouraged to\n respect those requests where reasonable. More considerations\n for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\nCreative Commons Attribution 4.0 International Public License\n\nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and conditions of this Creative Commons\nAttribution 4.0 International Public License (\"Public License\"). To the\nextent this Public License may be interpreted as a contract, You are\ngranted the Licensed Rights in consideration of Your acceptance of\nthese terms and conditions, and the Licensor grants You such rights in\nconsideration of benefits the Licensor receives from making the\nLicensed Material available under these terms and conditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted Material means material subject to Copyright and Similar\n Rights that is derived from or based upon the Licensed Material\n and in which the Licensed Material is translated, altered,\n arranged, transformed, or otherwise modified in a manner requiring\n permission under the Copyright and Similar Rights held by the\n Licensor. For purposes of this Public License, where the Licensed\n Material is a musical work, performance, or sound recording,\n Adapted Material is always produced where the Licensed Material is\n synched in timed relation with a moving image.\n\n b. Adapter's License means the license You apply to Your Copyright\n and Similar Rights in Your contributions to Adapted Material in\n accordance with the terms and conditions of this Public License.\n\n c. Copyright and Similar Rights means copyright and/or similar rights\n closely related to copyright including, without limitation,\n performance, broadcast, sound recording, and Sui Generis Database\n Rights, without regard to how the rights are labeled or\n categorized. For purposes of this Public License, the rights\n specified in Section 2(b)(1)-(2) are not Copyright and Similar\n Rights.\n\n d. Effective Technological Measures means those measures that, in the\n absence of proper authority, may not be circumvented under laws\n fulfilling obligations under Article 11 of the WIPO Copyright\n Treaty adopted on December 20, 1996, and/or similar international\n agreements.\n\n e. Exceptions and Limitations means fair use, fair dealing, and/or\n any other exception or limitation to Copyright and Similar Rights\n that applies to Your use of the Licensed Material.\n\n f. Licensed Material means the artistic or literary work, database,\n or other material to which the Licensor applied this Public\n License.\n\n g. Licensed Rights means the rights granted to You subject to the\n terms and conditions of this Public License, which are limited to\n all Copyright and Similar Rights that apply to Your use of the\n Licensed Material and that the Licensor has authority to license.\n\n h. Licensor means the individual(s) or entity(ies) granting rights\n under this Public License.\n\n i. Share means to provide material to the public by any means or\n process that requires permission under the Licensed Rights, such\n as reproduction, public display, public performance, distribution,\n dissemination, communication, or importation, and to make material\n available to the public including in ways that members of the\n public may access the material from a place and at a time\n individually chosen by them.\n\n j. Sui Generis Database Rights means rights other than copyright\n resulting from Directive 96/9/EC of the European Parliament and of\n the Council of 11 March 1996 on the legal protection of databases,\n as amended and/or succeeded, as well as other essentially\n equivalent rights anywhere in the world.\n\n k. You means the individual or entity exercising the Licensed Rights\n under this Public License. Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms and conditions of this Public License,\n the Licensor hereby grants You a worldwide, royalty-free,\n non-sublicensable, non-exclusive, irrevocable license to\n exercise the Licensed Rights in the Licensed Material to:\n\n a. reproduce and Share the Licensed Material, in whole or\n in part; and\n\n b. produce, reproduce, and Share Adapted Material.\n\n 2. Exceptions and Limitations. For the avoidance of doubt, where\n Exceptions and Limitations apply to Your use, this Public\n License does not apply, and You do not need to comply with\n its terms and conditions.\n\n 3. Term. The term of this Public License is specified in Section\n 6(a).\n\n 4. Media and formats; technical modifications allowed. The\n Licensor authorizes You to exercise the Licensed Rights in\n all media and formats whether now known or hereafter created,\n and to make technical modifications necessary to do so. The\n Licensor waives and/or agrees not to assert any right or\n authority to forbid You from making technical modifications\n necessary to exercise the Licensed Rights, including\n technical modifications necessary to circumvent Effective\n Technological Measures. For purposes of this Public License,\n simply making modifications authorized by this Section 2(a)\n (4) never produces Adapted Material.\n\n 5. Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material. Every\n recipient of the Licensed Material automatically\n receives an offer from the Licensor to exercise the\n Licensed Rights under the terms and conditions of this\n Public License.\n\n b. No downstream restrictions. You may not offer or impose\n any additional or different terms or conditions on, or\n apply any Effective Technological Measures to, the\n Licensed Material if doing so restricts exercise of the\n Licensed Rights by any recipient of the Licensed\n Material.\n\n 6. No endorsement. Nothing in this Public License constitutes or\n may be construed as permission to assert or imply that You\n are, or that Your use of the Licensed Material is, connected\n with, or sponsored, endorsed, or granted official status by,\n the Licensor or others designated to receive attribution as\n provided in Section 3(a)(1)(A)(i).\n\n b. Other rights.\n\n 1. Moral rights, such as the right of integrity, are not\n licensed under this Public License, nor are publicity,\n privacy, and/or other similar personality rights; however, to\n the extent possible, the Licensor waives and/or agrees not to\n assert any such rights held by the Licensor to the limited\n extent necessary to allow You to exercise the Licensed\n Rights, but not otherwise.\n\n 2. Patent and trademark rights are not licensed under this\n Public License.\n\n 3. To the extent possible, the Licensor waives any right to\n collect royalties from You for the exercise of the Licensed\n Rights, whether directly or through a collecting society\n under any voluntary or waivable statutory or compulsory\n licensing scheme. In all other cases the Licensor expressly\n reserves any right to collect such royalties.\n\n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\n a. Attribution.\n\n 1. If You Share the Licensed Material (including in modified\n form), You must:\n\n a. retain the following if it is supplied by the Licensor\n with the Licensed Material:\n\n i. identification of the creator(s) of the Licensed\n Material and any others designated to receive\n attribution, in any reasonable manner requested by\n the Licensor (including by pseudonym if\n designated);\n\n ii. a copyright notice;\n\n iii. a notice that refers to this Public License;\n\n iv. a notice that refers to the disclaimer of\n warranties;\n\n v. a URI or hyperlink to the Licensed Material to the\n extent reasonably practicable;\n\n b. indicate if You modified the Licensed Material and\n retain an indication of any previous modifications; and\n\n c. indicate the Licensed Material is licensed under this\n Public License, and include the text of, or the URI or\n hyperlink to, this Public License.\n\n 2. You may satisfy the conditions in Section 3(a)(1) in any\n reasonable manner based on the medium, means, and context in\n which You Share the Licensed Material. For example, it may be\n reasonable to satisfy the conditions by providing a URI or\n hyperlink to a resource that includes the required\n information.\n\n 3. If requested by the Licensor, You must remove any of the\n information required by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n 4. If You Share Adapted Material You produce, the Adapter's\n License You apply must not prevent recipients of the Adapted\n Material from complying with this Public License.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\n a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n to extract, reuse, reproduce, and Share all or a substantial\n portion of the contents of the database;\n\n b. if You include all or a substantial portion of the database\n contents in a database in which You have Sui Generis Database\n Rights, then the database in which You have Sui Generis Database\n Rights (but not its individual contents) is Adapted Material; and\n\n c. You must comply with the conditions in Section 3(a) if You Share\n all or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations under this Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\n c. The disclaimer of warranties and limitation of liability provided\n above shall be interpreted in a manner that, to the extent\n possible, most closely approximates an absolute disclaimer and\n waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\n a. This Public License applies for the term of the Copyright and\n Similar Rights licensed here. However, if You fail to comply with\n this Public License, then Your rights under this Public License\n terminate automatically.\n\n b. Where Your right to use the Licensed Material has terminated under\n Section 6(a), it reinstates:\n\n 1. automatically as of the date the violation is cured, provided\n it is cured within 30 days of Your discovery of the\n violation; or\n\n 2. upon express reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section 6(b) does not affect any\n right the Licensor may have to seek remedies for Your violations\n of this Public License.\n\n c. For the avoidance of doubt, the Licensor may also offer the\n Licensed Material under separate terms or conditions or stop\n distributing the Licensed Material at any time; however, doing so\n will not terminate this Public License.\n\n d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\n\nSection 7 -- Other Terms and Conditions.\n\n a. The Licensor shall not be bound by any additional or different\n terms or conditions communicated by You unless expressly agreed.\n\n b. Any arrangements, understandings, or agreements regarding the\n Licensed Material not stated herein are separate from and\n independent of the terms and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit, restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n be made without permission under this Public License.\n\n b. To the extent possible, if any provision of this Public License is\n deemed unenforceable, it shall be automatically reformed to the\n minimum extent necessary to make it enforceable. If the provision\n cannot be reformed, it shall be severed from this Public License\n without affecting the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition of this Public License will be waived and no\n failure to comply consented to unless expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n that apply to the Licensor or You, including from the legal\n processes of any jurisdiction or authority.\n\n\n=======================================================================\n\nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons may elect to apply one of\nits public licenses to material it publishes and in those instances\nwill be considered the \u201cLicensor.\u201d The text of the Creative Commons\npublic licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the limited purpose of indicating that\nmaterial is shared under a Creative Commons public license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies, Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or any other trademark or logo\nof Creative Commons without its prior written consent including,\nwithout limitation, in connection with any unauthorized modifications\nto any of its public licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org.", + "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/cc-by-4.0.LICENSE", + "licensedb_url": "https://scancode-licensedb.aboutcode.org/cc-by-4.0", + "spdx_url": "https://spdx.org/licenses/CC-BY-4.0" + }, + { + "key": "gpl-2.0", + "language": "en", + "short_name": "GPL 2.0", + "name": "GNU General Public License 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "notes": "This is the last version of the GPL text as published by the FSF. This variation was published around about the time of the FSF released the GPL 3 in July 2007. See http://web.archive.org/web/20070716031727/http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt It is found live here https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt and here https://www.gnu.org/licenses/old-licenses/gpl-2.0.html It refers to the Franklin Street address and to the GNU Lesser General Public License everywhere both in the text and HTML formats. There are many other variations of the GPL 2.0 text that were published over the years by the FSF and the gnu.org website. You can find the detailed history of this text at https://github.com/pombredanne/gpl-history and each variant is available as a license detection rule. Per SPDX.org, this license was released June 1991 This license is OSI certified.", + "is_builtin": true, + "is_exception": false, + "is_unknown": false, + "is_generic": false, + "spdx_license_key": "GPL-2.0-only", + "other_spdx_license_keys": [ + "GPL-2.0", + "GPL 2.0", + "LicenseRef-GPL-2.0" + ], + "osi_license_key": "GPL-2.0", + "text_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt", + "http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt" + ], + "osi_url": "http://opensource.org/licenses/gpl-license.php", + "faq_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html", + "other_urls": [ + "http://creativecommons.org/choose/cc-gpl", + "http://creativecommons.org/images/public/cc-GPL-a.png", + "http://creativecommons.org/licenses/GPL/2.0/", + "http://creativecommons.org/licenses/GPL/2.0/legalcode.pt", + "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "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": 0, + "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": " 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.LICENSE", + "licensedb_url": "https://scancode-licensedb.aboutcode.org/gpl-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0-only" + }, + { + "key": "lgpl-2.0-plus", + "language": "en", + "short_name": "LGPL 2.0 or later", + "name": "GNU Library General Public License 2.0 or later", + "category": "Copyleft Limited", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html", + "notes": "Per SPDX.org, this license was released June 1991. This license has been\nsuperseded by LGPL v2.1\n", + "is_builtin": true, + "is_exception": false, + "is_unknown": false, + "is_generic": false, + "spdx_license_key": "LGPL-2.0-or-later", + "other_spdx_license_keys": [ + "LGPL-2.0+", + "LicenseRef-LGPL" + ], + "osi_license_key": null, + "text_urls": [ + "http://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "osi_url": null, + "faq_url": null, + "other_urls": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "key_aliases": [], + "minimum_coverage": 99, + "standard_notice": null, + "ignorable_copyrights": [ + "Copyright (c) 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 library is free software; you can redistribute it and/or modify it under\nthe terms of the GNU Library General Public License as published by the Free\nSoftware Foundation; either version 2 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 Library General Public License for more details.\n\nYou should have received a copy of the GNU Library General Public License along\nwith this library; if not, write to the Free Software Foundation, Inc., 51\nFranklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n\n GNU LIBRARY GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1991 Free Software Foundation, Inc.\n51 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 library GPL. It is\n numbered 2 because it goes with version 2 of the ordinary GPL.]\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 Library General Public License, applies to some\nspecially designated Free Software Foundation software, and to any\nother libraries whose authors decide to use it. You can use it for\nyour libraries, 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\nyou 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 a program 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 Our method of protecting your rights has two steps: (1) copyright\nthe library, and (2) offer you this license which gives you legal\npermission to copy, distribute and/or modify the library.\n\n Also, for each distributor's protection, we want to make certain\nthat everyone understands that there is no warranty for this free\nlibrary. If the library is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original\nversion, so that any problems introduced by others will not reflect on\nthe original authors' reputations.\n\n Finally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that companies distributing free\nsoftware will individually obtain patent licenses, thus in effect\ntransforming the program into proprietary software. To prevent this,\nwe have made it clear that any patent must be licensed for everyone's\nfree use or not licensed at all.\n\n Most GNU software, including some libraries, is covered by the ordinary\nGNU General Public License, which was designed for utility programs. This\nlicense, the GNU Library General Public License, applies to certain\ndesignated libraries. This license is quite different from the ordinary\none; be sure to read it in full, and don't assume that anything in it is\nthe same as in the ordinary license.\n\n The reason we have a separate public license for some libraries is that\nthey blur the distinction we usually make between modifying or adding to a\nprogram and simply using it. Linking a program with a library, without\nchanging the library, is in some sense simply using the library, and is\nanalogous to running a utility program or application program. However, in\na textual and legal sense, the linked executable is a combined work, a\nderivative of the original library, and the ordinary General Public License\ntreats it as such.\n\n Because of this blurred distinction, using the ordinary General\nPublic License for libraries did not effectively promote software\nsharing, because most developers did not use the libraries. We\nconcluded that weaker conditions might promote sharing better.\n\n However, unrestricted linking of non-free programs would deprive the\nusers of those programs of all benefit from the free status of the\nlibraries themselves. This Library General Public License is intended to\npermit developers of non-free programs to use free libraries, while\npreserving your freedom as a user of such programs to change the free\nlibraries that are incorporated in them. (We have not seen how to achieve\nthis as regards changes in header files, but we have achieved it as regards\nchanges in the actual functions of the Library.) The hope is that this\nwill lead to faster development of free libraries.\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, while the latter only\nworks together with the library.\n\n Note that it is possible for a library to be covered by the ordinary\nGeneral Public License rather than by this special one.\n\n GNU LIBRARY GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any software library which\ncontains a notice placed by the copyright holder or other authorized\nparty saying it may be distributed under the terms of this Library\nGeneral Public License (also called \"this License\"). Each licensee is\naddressed 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 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 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 6. As an exception to the Sections above, you may also compile 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) 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 c) 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 d) 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 source code distributed need not include anything that is normally\ndistributed (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 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 to\nthis License.\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 Library 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 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 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 Library General Public\n License as published by the Free Software Foundation; either\n version 2 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 Library General Public License for more details.\n\n You should have received a copy of the GNU Library 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.0-plus.LICENSE", + "licensedb_url": "https://scancode-licensedb.aboutcode.org/lgpl-2.0-plus", + "spdx_url": "https://spdx.org/licenses/LGPL-2.0-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": "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" + } + ], + "license_rule_references": [ + { + "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": "apache-2.0", + "identifier": "apache-2.0_176.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_176.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": 4, + "relevance": 100, + "minimum_coverage": 80, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "Apache 2.0 license." + }, + { + "license_expression": "apache-2.0", + "identifier": "apache-2.0_65.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_65.RULE", + "is_license_text": false, + "is_license_notice": false, + "is_license_reference": false, + "is_license_tag": true, + "is_license_intro": false, + "is_continuous": false, + "is_builtin": true, + "is_from_license": false, + "is_synthetic": false, + "length": 4, + "relevance": 100, + "minimum_coverage": 80, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "license: Apache-2.0" + }, + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "identifier": "apache-2.0_and_cc-by-4.0_1.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_and_cc-by-4.0_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": 53, + "relevance": 100, + "minimum_coverage": 0, + "referenced_filenames": [], + "notes": "ScanCode notice", + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [ + "https://creativecommons.org/licenses/by/4.0/legalcode", + "https://www.apache.org/licenses/LICENSE-2.0" + ], + "ignorable_emails": [], + "text": "ScanCode software is licensed under the Apache License version 2.0.\nScanCode data is licensed under CC-BY-4.0.\n\nSee https://www.apache.org/licenses/LICENSE-2.0 for the Apache-2.0 license text.\nSee https://creativecommons.org/licenses/by/4.0/legalcode for the CC-BY-4.0 license text." + }, + { + "license_expression": "cc-by-4.0", + "identifier": "cc-by-4.0.LICENSE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/cc-by-4.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": 2570, + "relevance": 100, + "minimum_coverage": 0, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "Attribution 4.0 International\n\n=======================================================================\n\nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide legal services or legal advice. Distribution of\nCreative Commons public licenses does not create a lawyer-client or\nother relationship. Creative Commons makes its licenses and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\nwarranties regarding its licenses, any material licensed under their\nterms and conditions, or any related information. Creative Commons\ndisclaims all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and\nconditions that creators and other rights holders may use to share\noriginal works of authorship and other material subject to copyright\nand certain other rights specified in the public license below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive, and do not form part of our licenses.\n\nConsiderations for licensors: Our public licenses are\nintended for use by those authorized to give the public\npermission to use material in ways otherwise restricted by\ncopyright and certain other rights. Our licenses are\nirrevocable. Licensors should read and understand the terms\nand conditions of the license they choose before applying it.\nLicensors should also secure all rights necessary before\napplying our licenses so that the public can reuse the\nmaterial as expected. Licensors should clearly mark any\nmaterial not subject to the license. This includes other CC-\nlicensed material, or material used under an exception or\nlimitation to copyright. More considerations for licensors:\nwiki.creativecommons.org/Considerations_for_licensors\n\nConsiderations for the public: By using one of our public\nlicenses, a licensor grants the public permission to use the\nlicensed material under specified terms and conditions. If\nthe licensor's permission is not necessary for any reason--for\nexample, because of any applicable exception or limitation to\ncopyright--then that use is not regulated by the license. Our\nlicenses grant only permissions under copyright and certain\nother rights that a licensor has authority to grant. Use of\nthe licensed material may still be restricted for other\nreasons, including because others have copyright or other\nrights in the material. A licensor may make special requests,\nsuch as asking that all changes be marked or described.\nAlthough not required by our licenses, you are encouraged to\nrespect those requests where reasonable. More considerations\nfor the public:\nwiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\nCreative Commons Attribution 4.0 International Public License\n\nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and conditions of this Creative Commons\nAttribution 4.0 International Public License (\"Public License\"). To the\nextent this Public License may be interpreted as a contract, You are\ngranted the Licensed Rights in consideration of Your acceptance of\nthese terms and conditions, and the Licensor grants You such rights in\nconsideration of benefits the Licensor receives from making the\nLicensed Material available under these terms and conditions.\n\n\nSection 1 -- Definitions.\n\na. Adapted Material means material subject to Copyright and Similar\nRights that is derived from or based upon the Licensed Material\nand in which the Licensed Material is translated, altered,\narranged, transformed, or otherwise modified in a manner requiring\npermission under the Copyright and Similar Rights held by the\nLicensor. For purposes of this Public License, where the Licensed\nMaterial is a musical work, performance, or sound recording,\nAdapted Material is always produced where the Licensed Material is\nsynched in timed relation with a moving image.\n\nb. Adapter's License means the license You apply to Your Copyright\nand Similar Rights in Your contributions to Adapted Material in\naccordance with the terms and conditions of this Public License.\n\nc. Copyright and Similar Rights means copyright and/or similar rights\nclosely related to copyright including, without limitation,\nperformance, broadcast, sound recording, and Sui Generis Database\nRights, without regard to how the rights are labeled or\ncategorized. For purposes of this Public License, the rights\nspecified in Section 2(b)(1)-(2) are not Copyright and Similar\nRights.\n\nd. Effective Technological Measures means those measures that, in the\nabsence of proper authority, may not be circumvented under laws\nfulfilling obligations under Article 11 of the WIPO Copyright\nTreaty adopted on December 20, 1996, and/or similar international\nagreements.\n\ne. Exceptions and Limitations means fair use, fair dealing, and/or\nany other exception or limitation to Copyright and Similar Rights\nthat applies to Your use of the Licensed Material.\n\nf. Licensed Material means the artistic or literary work, database,\nor other material to which the Licensor applied this Public\nLicense.\n\ng. Licensed Rights means the rights granted to You subject to the\nterms and conditions of this Public License, which are limited to\nall Copyright and Similar Rights that apply to Your use of the\nLicensed Material and that the Licensor has authority to license.\n\nh. Licensor means the individual(s) or entity(ies) granting rights\nunder this Public License.\n\ni. Share means to provide material to the public by any means or\nprocess that requires permission under the Licensed Rights, such\nas reproduction, public display, public performance, distribution,\ndissemination, communication, or importation, and to make material\navailable to the public including in ways that members of the\npublic may access the material from a place and at a time\nindividually chosen by them.\n\nj. Sui Generis Database Rights means rights other than copyright\nresulting from Directive 96/9/EC of the European Parliament and of\nthe Council of 11 March 1996 on the legal protection of databases,\nas amended and/or succeeded, as well as other essentially\nequivalent rights anywhere in the world.\n\nk. You means the individual or entity exercising the Licensed Rights\nunder this Public License. Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\na. License grant.\n\n1. Subject to the terms and conditions of this Public License,\nthe Licensor hereby grants You a worldwide, royalty-free,\nnon-sublicensable, non-exclusive, irrevocable license to\nexercise the Licensed Rights in the Licensed Material to:\n\na. reproduce and Share the Licensed Material, in whole or\nin part; and\n\nb. produce, reproduce, and Share Adapted Material.\n\n2. Exceptions and Limitations. For the avoidance of doubt, where\nExceptions and Limitations apply to Your use, this Public\nLicense does not apply, and You do not need to comply with\nits terms and conditions.\n\n3. Term. The term of this Public License is specified in Section\n6(a).\n\n4. Media and formats; technical modifications allowed. The\nLicensor authorizes You to exercise the Licensed Rights in\nall media and formats whether now known or hereafter created,\nand to make technical modifications necessary to do so. The\nLicensor waives and/or agrees not to assert any right or\nauthority to forbid You from making technical modifications\nnecessary to exercise the Licensed Rights, including\ntechnical modifications necessary to circumvent Effective\nTechnological Measures. For purposes of this Public License,\nsimply making modifications authorized by this Section 2(a)\n(4) never produces Adapted Material.\n\n5. Downstream recipients.\n\na. Offer from the Licensor -- Licensed Material. Every\nrecipient of the Licensed Material automatically\nreceives an offer from the Licensor to exercise the\nLicensed Rights under the terms and conditions of this\nPublic License.\n\nb. No downstream restrictions. You may not offer or impose\nany additional or different terms or conditions on, or\napply any Effective Technological Measures to, the\nLicensed Material if doing so restricts exercise of the\nLicensed Rights by any recipient of the Licensed\nMaterial.\n\n6. No endorsement. Nothing in this Public License constitutes or\nmay be construed as permission to assert or imply that You\nare, or that Your use of the Licensed Material is, connected\nwith, or sponsored, endorsed, or granted official status by,\nthe Licensor or others designated to receive attribution as\nprovided in Section 3(a)(1)(A)(i).\n\nb. Other rights.\n\n1. Moral rights, such as the right of integrity, are not\nlicensed under this Public License, nor are publicity,\nprivacy, and/or other similar personality rights; however, to\nthe extent possible, the Licensor waives and/or agrees not to\nassert any such rights held by the Licensor to the limited\nextent necessary to allow You to exercise the Licensed\nRights, but not otherwise.\n\n2. Patent and trademark rights are not licensed under this\nPublic License.\n\n3. To the extent possible, the Licensor waives any right to\ncollect royalties from You for the exercise of the Licensed\nRights, whether directly or through a collecting society\nunder any voluntary or waivable statutory or compulsory\nlicensing scheme. In all other cases the Licensor expressly\nreserves any right to collect such royalties.\n\n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\na. Attribution.\n\n1. If You Share the Licensed Material (including in modified\nform), You must:\n\na. retain the following if it is supplied by the Licensor\nwith the Licensed Material:\n\ni. identification of the creator(s) of the Licensed\nMaterial and any others designated to receive\nattribution, in any reasonable manner requested by\nthe Licensor (including by pseudonym if\ndesignated);\n\nii. a copyright notice;\n\niii. a notice that refers to this Public License;\n\niv. a notice that refers to the disclaimer of\nwarranties;\n\nv. a URI or hyperlink to the Licensed Material to the\nextent reasonably practicable;\n\nb. indicate if You modified the Licensed Material and\nretain an indication of any previous modifications; and\n\nc. indicate the Licensed Material is licensed under this\nPublic License, and include the text of, or the URI or\nhyperlink to, this Public License.\n\n2. You may satisfy the conditions in Section 3(a)(1) in any\nreasonable manner based on the medium, means, and context in\nwhich You Share the Licensed Material. For example, it may be\nreasonable to satisfy the conditions by providing a URI or\nhyperlink to a resource that includes the required\ninformation.\n\n3. If requested by the Licensor, You must remove any of the\ninformation required by Section 3(a)(1)(A) to the extent\nreasonably practicable.\n\n4. If You Share Adapted Material You produce, the Adapter's\nLicense You apply must not prevent recipients of the Adapted\nMaterial from complying with this Public License.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\na. for the avoidance of doubt, Section 2(a)(1) grants You the right\nto extract, reuse, reproduce, and Share all or a substantial\nportion of the contents of the database;\n\nb. if You include all or a substantial portion of the database\ncontents in a database in which You have Sui Generis Database\nRights, then the database in which You have Sui Generis Database\nRights (but not its individual contents) is Adapted Material; and\n\nc. You must comply with the conditions in Section 3(a) if You Share\nall or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations under this Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\na. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\nEXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\nAND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\nANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\nIMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\nWARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\nPURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\nACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\nKNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\nALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\nb. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\nTO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\nNEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\nINCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\nCOSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\nUSE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\nADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\nDAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\nIN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\nc. The disclaimer of warranties and limitation of liability provided\nabove shall be interpreted in a manner that, to the extent\npossible, most closely approximates an absolute disclaimer and\nwaiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\na. This Public License applies for the term of the Copyright and\nSimilar Rights licensed here. However, if You fail to comply with\nthis Public License, then Your rights under this Public License\nterminate automatically.\n\nb. Where Your right to use the Licensed Material has terminated under\nSection 6(a), it reinstates:\n\n1. automatically as of the date the violation is cured, provided\nit is cured within 30 days of Your discovery of the\nviolation; or\n\n2. upon express reinstatement by the Licensor.\n\nFor the avoidance of doubt, this Section 6(b) does not affect any\nright the Licensor may have to seek remedies for Your violations\nof this Public License.\n\nc. For the avoidance of doubt, the Licensor may also offer the\nLicensed Material under separate terms or conditions or stop\ndistributing the Licensed Material at any time; however, doing so\nwill not terminate this Public License.\n\nd. Sections 1, 5, 6, 7, and 8 survive termination of this Public\nLicense.\n\n\nSection 7 -- Other Terms and Conditions.\n\na. The Licensor shall not be bound by any additional or different\nterms or conditions communicated by You unless expressly agreed.\n\nb. Any arrangements, understandings, or agreements regarding the\nLicensed Material not stated herein are separate from and\nindependent of the terms and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\na. For the avoidance of doubt, this Public License does not, and\nshall not be interpreted to, reduce, limit, restrict, or impose\nconditions on any use of the Licensed Material that could lawfully\nbe made without permission under this Public License.\n\nb. To the extent possible, if any provision of this Public License is\ndeemed unenforceable, it shall be automatically reformed to the\nminimum extent necessary to make it enforceable. If the provision\ncannot be reformed, it shall be severed from this Public License\nwithout affecting the enforceability of the remaining terms and\nconditions.\n\nc. No term or condition of this Public License will be waived and no\nfailure to comply consented to unless expressly agreed to by the\nLicensor.\n\nd. Nothing in this Public License constitutes or may be interpreted\nas a limitation upon, or waiver of, any privileges and immunities\nthat apply to the Licensor or You, including from the legal\nprocesses of any jurisdiction or authority.\n\n\n=======================================================================\n\nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons may elect to apply one of\nits public licenses to material it publishes and in those instances\nwill be considered the \u201cLicensor.\u201d The text of the Creative Commons\npublic licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the limited purpose of indicating that\nmaterial is shared under a Creative Commons public license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies, Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or any other trademark or logo\nof Creative Commons without its prior written consent including,\nwithout limitation, in connection with any unauthorized modifications\nto any of its public licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org." + }, + { + "license_expression": "cc-by-4.0", + "identifier": "cc-by-4.0_103.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_103.RULE", + "is_license_text": false, + "is_license_notice": false, + "is_license_reference": false, + "is_license_tag": true, + "is_license_intro": false, + "is_continuous": true, + "is_builtin": true, + "is_from_license": false, + "is_synthetic": false, + "length": 5, + "relevance": 100, + "minimum_coverage": 100, + "referenced_filenames": [], + "notes": "Rule based on an SPDX license identifier and name", + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "license: CC-BY-4.0" + }, + { + "license_expression": "cc-by-4.0", + "identifier": "cc-by-4.0_53.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_53.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": 6, + "relevance": 100, + "minimum_coverage": 80, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "licensed under CC-BY 4.0" + }, + { + "license_expression": "cc-by-4.0", + "identifier": "cc-by-4.0_70.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_70.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": 13, + "relevance": 100, + "minimum_coverage": 50, + "referenced_filenames": [], + "notes": "ScanCode notice", + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [ + "https://creativecommons.org/licenses/by/4.0/legalcode" + ], + "ignorable_emails": [], + "text": "See https://creativecommons.org/licenses/by/4.0/legalcode for the license text." + }, + { + "license_expression": "gpl-2.0", + "identifier": "gpl-2.0_620.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_620.RULE", + "is_license_text": false, + "is_license_notice": false, + "is_license_reference": false, + "is_license_tag": true, + "is_license_intro": false, + "is_continuous": false, + "is_builtin": true, + "is_from_license": false, + "is_synthetic": false, + "length": 2, + "relevance": 100, + "minimum_coverage": 100, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "GPL-2" + }, + { + "license_expression": "lgpl-2.0-plus", + "identifier": "lgpl_bare_single_word.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_bare_single_word.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": 1, + "relevance": 75, + "minimum_coverage": 100, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "LGPL" + }, + { + "license_expression": "mit AND bsd-new", + "identifier": "mit_and_bsd-new_modernizr_2.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_2.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": 2, + "relevance": 80, + "minimum_coverage": 100, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "MIT & BSD" + }, + { + "license_expression": "public-domain", + "identifier": "public-domain_298.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_298.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": 4, + "relevance": 100, + "minimum_coverage": 80, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "in the public domain." + }, + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "identifier": "spdx-license-identifier-apache-2.0 AND cc-by-4.0-7d12f34a5f4affd910e4c155e43479878e3f7817", + "language": "en", + "rule_url": null, + "is_license_text": false, + "is_license_notice": false, + "is_license_reference": false, + "is_license_tag": true, + "is_license_intro": false, + "is_continuous": false, + "is_builtin": true, + "is_from_license": false, + "is_synthetic": true, + "length": 11, + "relevance": 100, + "minimum_coverage": 0, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": null + }, + { + "license_expression": "cc-by-4.0", + "identifier": "spdx-license-identifier-cc-by-4.0-131a65e1463dacbde06da4a5413bcfbc1fbcc21c", + "language": "en", + "rule_url": null, + "is_license_text": false, + "is_license_notice": false, + "is_license_reference": false, + "is_license_tag": true, + "is_license_intro": false, + "is_continuous": false, + "is_builtin": true, + "is_from_license": false, + "is_synthetic": true, + "length": 7, + "relevance": 100, + "minimum_coverage": 0, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": null + }, + { + "license_expression": "apache-2.0", + "identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.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": 3, + "relevance": 100, + "minimum_coverage": 100, + "referenced_filenames": [], + "notes": "Used to detect a bare SPDX license id", + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "apache-2.0" + }, + { + "license_expression": "cc-by-4.0", + "identifier": "spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.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": 4, + "relevance": 50, + "minimum_coverage": 100, + "referenced_filenames": [], + "notes": "Used to detect a bare SPDX license id", + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "cc-by-4.0" + } + ], + "files": [ + { + "path": "python-sample", + "type": "directory", + "name": "python-sample", + "base_name": "python-sample", + "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": [], + "files_count": 13, + "dirs_count": 1, + "size_count": 62727, + "scan_errors": [] + }, + { + "path": "python-sample/.DS_Store", + "type": "file", + "name": ".DS_Store", + "base_name": ".DS_Store", + "extension": "", + "size": 6148, + "date": "2023-03-31", + "sha1": "886a5b2ce7475885a48303ba4ad7954c6a63410a", + "md5": "b05300dd898565920774e02b36f9255a", + "sha256": "da6de2b8bd945dc256f2a383233d394564862c4692a52a5f5883d519e39becb1", + "mime_type": "application/octet-stream", + "file_type": "Apple Desktop Services Store", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "emails": [], + "urls": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "python-sample/apache-2.0.LICENSE", + "type": "file", + "name": "apache-2.0.LICENSE", + "base_name": "apache-2.0", + "extension": ".LICENSE", + "size": 11358, + "date": "2022-08-07", + "sha1": "2b8b815229aa8a61e483fb4ba0588b8b6c491890", + "md5": "3b83ef96387f14655fc854ddc3c6bd57", + "sha256": "cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30", + "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": [ + "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c" + ], + "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" + } + ], + "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 + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "python-sample/cc-by-4.0.LICENSE", + "type": "file", + "name": "cc-by-4.0.LICENSE", + "base_name": "cc-by-4.0", + "extension": ".LICENSE", + "size": 18651, + "date": "2022-08-07", + "sha1": "6e55f0780239c6f263c1ab27a55205efb0204d6d", + "md5": "c2b69cea79405efd14cca910fbc5c070", + "sha256": "2a82ac9bbc3e3ee066908381e8d373896db5a6025d083fbd59692fe9ccfb9111", + "mime_type": "text/plain", + "file_type": "UTF-8 Unicode 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": [ + "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c" + ], + "detected_license_expression": "cc-by-4.0", + "detected_license_expression_spdx": "CC-BY-4.0", + "license_detections": [ + { + "license_expression": "cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 395, + "matched_length": 2570, + "match_coverage": 100.0, + "matcher": "1-hash", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0.LICENSE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/cc-by-4.0.LICENSE" + } + ], + "detection_log": [], + "identifier": "cc_by_4_0-da6cc60f-af35-550c-a524-2da27b9bad12" + } + ], + "license_clues": [], + "percentage_of_license_text": 100.0, + "copyrights": [], + "holders": [], + "authors": [], + "emails": [], + "urls": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "python-sample/empty-folder", + "type": "directory", + "name": "empty-folder", + "base_name": "empty-folder", + "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": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "python-sample/MANIFEST.in", + "type": "file", + "name": "MANIFEST.in", + "base_name": "MANIFEST", + "extension": ".in", + "size": 443, + "date": "2022-08-07", + "sha1": "856ef847e6d507769e9319bdc65c405b20aae677", + "md5": "14ac5781eb279c1f76232895ce1948ad", + "sha256": "cd25168bf9ea9ab8afd18b97176121f6cbf15095e604ea79622d7b4a75285ead", + "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": [ + "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "emails": [], + "urls": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "python-sample/NOTICE", + "type": "file", + "name": "NOTICE", + "base_name": "NOTICE", + "extension": "", + "size": 2333, + "date": "2022-08-07", + "sha1": "58e0c169a3d304169d5c9abc36f28eb603da7a56", + "md5": "da825e8d0e20b6f71daab410ce16ba77", + "sha256": "9049f9f2fca9ff13140af12a552d015fda6d4db09ae38e5a0323d73f69874691", + "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": [ + "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c" + ], + "detected_license_expression": "(apache-2.0 AND cc-by-4.0) AND cc-by-4.0", + "detected_license_expression_spdx": "(Apache-2.0 AND CC-BY-4.0) AND CC-BY-4.0", + "license_detections": [ + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 7, + "end_line": 7, + "matched_length": 11, + "match_coverage": 100.0, + "matcher": "1-spdx-id", + "license_expression": "apache-2.0 AND cc-by-4.0", + "rule_identifier": "spdx-license-identifier-apache-2.0 AND cc-by-4.0-0054309bd758401f4a37f1ae75b73f0aa0f00c7a", + "rule_relevance": 100, + "rule_url": null + }, + { + "score": 100.0, + "start_line": 9, + "end_line": 13, + "matched_length": 53, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0 AND cc-by-4.0", + "rule_identifier": "apache-2.0_and_cc-by-4.0_1.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_and_cc-by-4.0_1.RULE" + } + ], + "detection_log": [], + "identifier": "apache_2_0_and_cc_by_4_0-3f088fe7-b454-272e-c2bd-ba96f8872a9a" + }, + { + "license_expression": "cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 52, + "end_line": 53, + "matched_length": 6, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0_53.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_53.RULE" + } + ], + "detection_log": [], + "identifier": "cc_by_4_0-03672089-7ed1-8ec3-87d4-b04dc680d1cf" + }, + { + "license_expression": "cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 59, + "end_line": 59, + "matched_length": 7, + "match_coverage": 100.0, + "matcher": "1-spdx-id", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx-license-identifier-cc-by-4.0-8efd33ea3057ef8989beb8ac174d82fce93d6d69", + "rule_relevance": 100, + "rule_url": null + }, + { + "score": 100.0, + "start_line": 60, + "end_line": 60, + "matched_length": 13, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0_70.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_70.RULE" + } + ], + "detection_log": [], + "identifier": "cc_by_4_0-a0d635a7-b1f8-ba63-9065-28b4adbe7deb" + } + ], + "license_clues": [], + "percentage_of_license_text": 25.57, + "copyrights": [ + { + "copyright": "Copyright (c) nexB Inc. and others", + "start_line": 4, + "end_line": 4 + }, + { + "copyright": "Copyright (c) nexB Inc. and others", + "start_line": 57, + "end_line": 57 + } + ], + "holders": [ + { + "holder": "nexB Inc. and others", + "start_line": 4, + "end_line": 4 + }, + { + "holder": "nexB Inc. and others", + "start_line": 57, + "end_line": 57 + } + ], + "authors": [], + "emails": [ + { + "email": "info@nexb.com", + "start_line": 39, + "end_line": 39 + } + ], + "urls": [ + { + "url": "https://www.apache.org/licenses/LICENSE-2.0", + "start_line": 12, + "end_line": 12 + }, + { + "url": "https://creativecommons.org/licenses/by/4.0/legalcode", + "start_line": 13, + "end_line": 13 + }, + { + "url": "https://github.com/nexB/scancode-toolkit", + "start_line": 15, + "end_line": 15 + }, + { + "url": "https://aboutcode.org/", + "start_line": 16, + "end_line": 16 + }, + { + "url": "https://github.com/nexB/scancode-toolkit/", + "start_line": 31, + "end_line": 31 + }, + { + "url": "https://pypi.org/project/scancode-toolkit/", + "start_line": 32, + "end_line": 32 + }, + { + "url": "https://thirdparty.aboutcode.org/pypi/", + "start_line": 33, + "end_line": 33 + }, + { + "url": "https://github.com/nexB/thirdparty-packages/pypi/", + "start_line": 34, + "end_line": 34 + }, + { + "url": "https://github.com/nexB/scancode-plugins/", + "start_line": 35, + "end_line": 35 + }, + { + "url": "https://github.com/nexB/scancode-thirdparty-src/", + "start_line": 36, + "end_line": 36 + }, + { + "url": "https://github.com/nexB/thirdparty-packages/", + "start_line": 37, + "end_line": 37 + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "python-sample/pyproject.toml", + "type": "file", + "name": "pyproject.toml", + "base_name": "pyproject", + "extension": ".toml", + "size": 91, + "date": "2022-08-07", + "sha1": "3f6b3b08bdbb417c4264e070662ab88bbb1c9482", + "md5": "84b79a997ca949afd42cc9c68723af55", + "sha256": "29d344503100852b9bcd1b6801a6415adabd4c1541e2ae64f387c97d2f8782b6", + "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": [ + { + "type": "pypi", + "namespace": null, + "name": null, + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": null, + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "holder": null, + "declared_license_expression": "apache-2.0 AND cc-by-4.0 AND (apache-2.0 AND cc-by-4.0) AND (apache-2.0 AND cc-by-4.0 AND public-domain AND lgpl-2.0-plus AND (mit AND bsd-new) AND gpl-2.0)", + "declared_license_expression_spdx": "Apache-2.0 AND CC-BY-4.0 AND (Apache-2.0 AND CC-BY-4.0) AND (Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-public-domain AND LGPL-2.0-or-later AND (MIT AND BSD-3-Clause) AND GPL-2.0-only)", + "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" + } + ], + "detection_log": [], + "identifier": "apache_2_0-ab23f79b-ec38-9a8a-9b23-85059407f34d" + }, + { + "license_expression": "cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 395, + "matched_length": 2570, + "match_coverage": 100.0, + "matcher": "1-hash", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0.LICENSE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/cc-by-4.0.LICENSE" + } + ], + "detection_log": [], + "identifier": "cc_by_4_0-da6cc60f-af35-550c-a524-2da27b9bad12" + }, + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 7, + "end_line": 7, + "matched_length": 11, + "match_coverage": 100.0, + "matcher": "1-spdx-id", + "license_expression": "apache-2.0 AND cc-by-4.0", + "rule_identifier": "spdx-license-identifier-apache-2.0 AND cc-by-4.0-0054309bd758401f4a37f1ae75b73f0aa0f00c7a", + "rule_relevance": 100, + "rule_url": null + }, + { + "score": 100.0, + "start_line": 9, + "end_line": 13, + "matched_length": 53, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0 AND cc-by-4.0", + "rule_identifier": "apache-2.0_and_cc-by-4.0_1.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_and_cc-by-4.0_1.RULE" + } + ], + "detection_log": [], + "identifier": "apache_2_0_and_cc_by_4_0-3f088fe7-b454-272e-c2bd-ba96f8872a9a" + }, + { + "license_expression": "cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 52, + "end_line": 53, + "matched_length": 6, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0_53.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_53.RULE" + } + ], + "detection_log": [], + "identifier": "cc_by_4_0-03672089-7ed1-8ec3-87d4-b04dc680d1cf" + }, + { + "license_expression": "cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 59, + "end_line": 59, + "matched_length": 7, + "match_coverage": 100.0, + "matcher": "1-spdx-id", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx-license-identifier-cc-by-4.0-8efd33ea3057ef8989beb8ac174d82fce93d6d69", + "rule_relevance": 100, + "rule_url": null + }, + { + "score": 100.0, + "start_line": 60, + "end_line": 60, + "matched_length": 13, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0_70.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_70.RULE" + } + ], + "detection_log": [], + "identifier": "cc_by_4_0-a0d635a7-b1f8-ba63-9065-28b4adbe7deb" + }, + { + "license_expression": "apache-2.0 AND cc-by-4.0 AND public-domain AND lgpl-2.0-plus AND (mit AND bsd-new) AND gpl-2.0", + "matches": [ + { + "score": 100.0, + "start_line": 216, + "end_line": 219, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_65.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_65.RULE" + }, + { + "score": 100.0, + "start_line": 219, + "end_line": 220, + "matched_length": 5, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0_103.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_103.RULE" + }, + { + "score": 100.0, + "start_line": 220, + "end_line": 220, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "public-domain", + "rule_identifier": "public-domain_298.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_298.RULE" + }, + { + "score": 75.0, + "start_line": 221, + "end_line": 221, + "matched_length": 1, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "lgpl-2.0-plus", + "rule_identifier": "lgpl_bare_single_word.RULE", + "rule_relevance": 75, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_bare_single_word.RULE" + }, + { + "score": 80.0, + "start_line": 221, + "end_line": 222, + "matched_length": 2, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "mit AND bsd-new", + "rule_identifier": "mit_and_bsd-new_modernizr_2.RULE", + "rule_relevance": 80, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_2.RULE" + }, + { + "score": 100.0, + "start_line": 222, + "end_line": 222, + "matched_length": 2, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "gpl-2.0", + "rule_identifier": "gpl-2.0_620.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_620.RULE" + } + ], + "detection_log": [], + "identifier": "apache_2_0_and_cc_by_4_0_and_public_domain_and_lgpl_2_0_plus_and__mit_and_bsd_new__and_gpl_2_0-ec1fd5b3-8a52-10ad-9fd5-273618a2d9ac" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": null, + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "pypi_pyproject_toml", + "purl": null + } + ], + "for_packages": [ + "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "emails": [], + "urls": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "python-sample/README.rst", + "type": "file", + "name": "README.rst", + "base_name": "README", + "extension": ".rst", + "size": 10400, + "date": "2022-08-07", + "sha1": "a1814f892798bd72a55ac0959778b1129ecde3a2", + "md5": "d550530d2c823260f68c75c4b1be33c1", + "sha256": "b6cf713b7b091e12de1e3690cdd3c20565460770982ce5d88dc3441ace7e43cb", + "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": [ + "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c" + ], + "detected_license_expression": "apache-2.0 AND cc-by-4.0 AND public-domain AND lgpl-2.0-plus AND (mit AND bsd-new) AND gpl-2.0", + "detected_license_expression_spdx": "Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-public-domain AND LGPL-2.0-or-later AND (MIT AND BSD-3-Clause) AND GPL-2.0-only", + "license_detections": [ + { + "license_expression": "apache-2.0 AND cc-by-4.0 AND public-domain AND lgpl-2.0-plus AND (mit AND bsd-new) AND gpl-2.0", + "matches": [ + { + "score": 100.0, + "start_line": 216, + "end_line": 219, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_65.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_65.RULE" + }, + { + "score": 100.0, + "start_line": 219, + "end_line": 220, + "matched_length": 5, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0_103.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_103.RULE" + }, + { + "score": 100.0, + "start_line": 220, + "end_line": 220, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "public-domain", + "rule_identifier": "public-domain_298.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_298.RULE" + }, + { + "score": 75.0, + "start_line": 221, + "end_line": 221, + "matched_length": 1, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "lgpl-2.0-plus", + "rule_identifier": "lgpl_bare_single_word.RULE", + "rule_relevance": 75, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_bare_single_word.RULE" + }, + { + "score": 80.0, + "start_line": 221, + "end_line": 222, + "matched_length": 2, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "mit AND bsd-new", + "rule_identifier": "mit_and_bsd-new_modernizr_2.RULE", + "rule_relevance": 80, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_2.RULE" + }, + { + "score": 100.0, + "start_line": 222, + "end_line": 222, + "matched_length": 2, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "gpl-2.0", + "rule_identifier": "gpl-2.0_620.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_620.RULE" + } + ], + "detection_log": [], + "identifier": "apache_2_0_and_cc_by_4_0_and_public_domain_and_lgpl_2_0_plus_and__mit_and_bsd_new__and_gpl_2_0-ec1fd5b3-8a52-10ad-9fd5-273618a2d9ac" + } + ], + "license_clues": [], + "percentage_of_license_text": 1.27, + "copyrights": [], + "holders": [], + "authors": [], + "emails": [], + "urls": [ + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/", + "start_line": 10, + "end_line": 10 + }, + { + "url": "https://github.com/nexB/scancode-toolkit", + "start_line": 12, + "end_line": 12 + }, + { + "url": "https://www.eclipse.org/", + "start_line": 23, + "end_line": 23 + }, + { + "url": "https://www.openembedded.org/", + "start_line": 24, + "end_line": 24 + }, + { + "url": "https://www.fsfe.org/", + "start_line": 25, + "end_line": 25 + }, + { + "url": "https://www.fsf.org/", + "start_line": 26, + "end_line": 26 + }, + { + "url": "http://oss-review-toolkit.org/", + "start_line": 27, + "end_line": 27 + }, + { + "url": "https://clearlydefined.io/", + "start_line": 28, + "end_line": 28 + }, + { + "url": "https://github.com/fabric8-analytics", + "start_line": 29, + "end_line": 29 + }, + { + "url": "https://github.com/nexB/scancode.io", + "start_line": 50, + "end_line": 50 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/contribute/roadmap.html", + "start_line": 74, + "end_line": 74 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/getting-started/newcomer.html", + "start_line": 96, + "end_line": 96 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/cli-reference/synopsis.html", + "start_line": 100, + "end_line": 100 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/tutorials/how_to_run_a_scan.html", + "start_line": 105, + "end_line": 105 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/tutorials/how_to_visualize_scan_results.html", + "start_line": 106, + "end_line": 106 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/cli-reference/list-options.html", + "start_line": 108, + "end_line": 108 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/contribute/contrib_dev.html", + "start_line": 110, + "end_line": 110 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/plugins/plugin_arch.html", + "start_line": 112, + "end_line": 112 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/misc/faq.html", + "start_line": 114, + "end_line": 114 + }, + { + "url": "https://aboutcode.org/", + "start_line": 116, + "end_line": 116 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/getting-started/install.html#prerequisites", + "start_line": 125, + "end_line": 125 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/getting-started/install.html", + "start_line": 128, + "end_line": 128 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/getting-started/install.html#installation-as-an-application-downloading-releases", + "start_line": 131, + "end_line": 131 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/getting-started/install.html#installation-from-source-code-git-clone", + "start_line": 134, + "end_line": 134 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/getting-started/install.html#pip-install", + "start_line": 137, + "end_line": 137 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/getting-started/install.html#installation-via-docker", + "start_line": 140, + "end_line": 140 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/getting-started/install.html#commands-variation", + "start_line": 146, + "end_line": 146 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/tutorials/how_to_set_what_will_be_detected_in_a_scan.html", + "start_line": 162, + "end_line": 162 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/tutorials/how_to_format_scan_output.html", + "start_line": 163, + "end_line": 163 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/cli-reference/list-options.html#all-extractcode-options", + "start_line": 184, + "end_line": 184 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/tutorials/how_to_extract_archives.html", + "start_line": 185, + "end_line": 185 + }, + { + "url": "https://github.com/nexB/scancode-toolkit/issues", + "start_line": 192, + "end_line": 192 + }, + { + "url": "https://gitter.im/aboutcode-org/discuss", + "start_line": 197, + "end_line": 197 + }, + { + "url": "https://irc.gitter.im/", + "start_line": 198, + "end_line": 198 + }, + { + "url": "https://web.libera.chat/#aboutcode", + "start_line": 204, + "end_line": 204 + }, + { + "url": "https://github.com/nexB/scancode-toolkit/releases", + "start_line": 210, + "end_line": 210 + }, + { + "url": "https://github.com/nexB/scancode-toolkit.git", + "start_line": 211, + "end_line": 211 + }, + { + "url": "https://pypi.org/project/scancode-toolkit/", + "start_line": 212, + "end_line": 212 + }, + { + "url": "https://github.com/nexB/scancode-thirdparty-src.git", + "start_line": 213, + "end_line": 213 + }, + { + "url": "https://ci.appveyor.com/api/projects/status/4webymu0l2ip8utr?svg=true", + "start_line": 229, + "end_line": 229 + }, + { + "url": "https://travis-ci.org/nexB/scancode-toolkit", + "start_line": 230, + "end_line": 230 + }, + { + "url": "https://dev.azure.com/nexB/scancode-toolkit/_apis/build/status/nexB.scancode-toolkit?branchName=develop", + "start_line": 233, + "end_line": 233 + }, + { + "url": "https://dev.azure.com/nexB/scancode-toolkit/_build/latest?definitionId=1&branchName=develop", + "start_line": 234, + "end_line": 234 + }, + { + "url": "https://readthedocs.org/projects/scancode-toolkit/badge/?version=latest", + "start_line": 237, + "end_line": 237 + }, + { + "url": "https://scancode-toolkit.readthedocs.io/en/latest/?badge=latest", + "start_line": 238, + "end_line": 238 + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "python-sample/requirements-dev.txt", + "type": "file", + "name": "requirements-dev.txt", + "base_name": "requirements-dev", + "extension": ".txt", + "size": 50, + "date": "2022-08-07", + "sha1": "c824e095706197a246d951b0abbf5314949672d4", + "md5": "aca7906ce91d84981718f4171db1ee98", + "sha256": "31fb690ca2f05ffeb36a67d21d552155d9089b740fb4310492325835dcc7b47c", + "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": [ + { + "type": "pypi", + "namespace": null, + "name": null, + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": null, + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "holder": null, + "declared_license_expression": "apache-2.0 AND cc-by-4.0 AND (apache-2.0 AND cc-by-4.0) AND (apache-2.0 AND cc-by-4.0 AND public-domain AND lgpl-2.0-plus AND (mit AND bsd-new) AND gpl-2.0)", + "declared_license_expression_spdx": "Apache-2.0 AND CC-BY-4.0 AND (Apache-2.0 AND CC-BY-4.0) AND (Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-public-domain AND LGPL-2.0-or-later AND (MIT AND BSD-3-Clause) AND GPL-2.0-only)", + "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" + } + ], + "detection_log": [], + "identifier": "apache_2_0-ab23f79b-ec38-9a8a-9b23-85059407f34d" + }, + { + "license_expression": "cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 395, + "matched_length": 2570, + "match_coverage": 100.0, + "matcher": "1-hash", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0.LICENSE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/cc-by-4.0.LICENSE" + } + ], + "detection_log": [], + "identifier": "cc_by_4_0-da6cc60f-af35-550c-a524-2da27b9bad12" + }, + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 7, + "end_line": 7, + "matched_length": 11, + "match_coverage": 100.0, + "matcher": "1-spdx-id", + "license_expression": "apache-2.0 AND cc-by-4.0", + "rule_identifier": "spdx-license-identifier-apache-2.0 AND cc-by-4.0-0054309bd758401f4a37f1ae75b73f0aa0f00c7a", + "rule_relevance": 100, + "rule_url": null + }, + { + "score": 100.0, + "start_line": 9, + "end_line": 13, + "matched_length": 53, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0 AND cc-by-4.0", + "rule_identifier": "apache-2.0_and_cc-by-4.0_1.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_and_cc-by-4.0_1.RULE" + } + ], + "detection_log": [], + "identifier": "apache_2_0_and_cc_by_4_0-3f088fe7-b454-272e-c2bd-ba96f8872a9a" + }, + { + "license_expression": "cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 52, + "end_line": 53, + "matched_length": 6, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0_53.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_53.RULE" + } + ], + "detection_log": [], + "identifier": "cc_by_4_0-03672089-7ed1-8ec3-87d4-b04dc680d1cf" + }, + { + "license_expression": "cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 59, + "end_line": 59, + "matched_length": 7, + "match_coverage": 100.0, + "matcher": "1-spdx-id", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx-license-identifier-cc-by-4.0-8efd33ea3057ef8989beb8ac174d82fce93d6d69", + "rule_relevance": 100, + "rule_url": null + }, + { + "score": 100.0, + "start_line": 60, + "end_line": 60, + "matched_length": 13, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0_70.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_70.RULE" + } + ], + "detection_log": [], + "identifier": "cc_by_4_0-a0d635a7-b1f8-ba63-9065-28b4adbe7deb" + }, + { + "license_expression": "apache-2.0 AND cc-by-4.0 AND public-domain AND lgpl-2.0-plus AND (mit AND bsd-new) AND gpl-2.0", + "matches": [ + { + "score": 100.0, + "start_line": 216, + "end_line": 219, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_65.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_65.RULE" + }, + { + "score": 100.0, + "start_line": 219, + "end_line": 220, + "matched_length": 5, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0_103.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_103.RULE" + }, + { + "score": 100.0, + "start_line": 220, + "end_line": 220, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "public-domain", + "rule_identifier": "public-domain_298.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_298.RULE" + }, + { + "score": 75.0, + "start_line": 221, + "end_line": 221, + "matched_length": 1, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "lgpl-2.0-plus", + "rule_identifier": "lgpl_bare_single_word.RULE", + "rule_relevance": 75, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_bare_single_word.RULE" + }, + { + "score": 80.0, + "start_line": 221, + "end_line": 222, + "matched_length": 2, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "mit AND bsd-new", + "rule_identifier": "mit_and_bsd-new_modernizr_2.RULE", + "rule_relevance": 80, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_2.RULE" + }, + { + "score": 100.0, + "start_line": 222, + "end_line": 222, + "matched_length": 2, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "gpl-2.0", + "rule_identifier": "gpl-2.0_620.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_620.RULE" + } + ], + "detection_log": [], + "identifier": "apache_2_0_and_cc_by_4_0_and_public_domain_and_lgpl_2_0_plus_and__mit_and_bsd_new__and_gpl_2_0-ec1fd5b3-8a52-10ad-9fd5-273618a2d9ac" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": null, + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [ + { + "purl": "pkg:pypi/aboutcode-toolkit@6.0.0", + "extracted_requirement": "aboutcode-toolkit==6.0.0", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/py@1.10.0", + "extracted_requirement": "py==1.10.0", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/pytest@6.2.4", + "extracted_requirement": "pytest==6.2.4", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + } + ], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "pip_requirements", + "purl": null + } + ], + "for_packages": [ + "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "emails": [], + "urls": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "python-sample/requirements.txt", + "type": "file", + "name": "requirements.txt", + "base_name": "requirements", + "extension": ".txt", + "size": 105, + "date": "2022-08-07", + "sha1": "7e7a2887c8f54042452b4a15820359df1e516b1e", + "md5": "84fa27418802c52bd307f72e2bc6750a", + "sha256": "6c1cede3b555a0fdb618f13bf7a3733d12d9a7685ba9d1966f881f1c5a919c05", + "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": [ + { + "type": "pypi", + "namespace": null, + "name": null, + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": null, + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "holder": null, + "declared_license_expression": "apache-2.0 AND cc-by-4.0 AND (apache-2.0 AND cc-by-4.0) AND (apache-2.0 AND cc-by-4.0 AND public-domain AND lgpl-2.0-plus AND (mit AND bsd-new) AND gpl-2.0)", + "declared_license_expression_spdx": "Apache-2.0 AND CC-BY-4.0 AND (Apache-2.0 AND CC-BY-4.0) AND (Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-public-domain AND LGPL-2.0-or-later AND (MIT AND BSD-3-Clause) AND GPL-2.0-only)", + "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" + } + ], + "detection_log": [], + "identifier": "apache_2_0-ab23f79b-ec38-9a8a-9b23-85059407f34d" + }, + { + "license_expression": "cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 395, + "matched_length": 2570, + "match_coverage": 100.0, + "matcher": "1-hash", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0.LICENSE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/cc-by-4.0.LICENSE" + } + ], + "detection_log": [], + "identifier": "cc_by_4_0-da6cc60f-af35-550c-a524-2da27b9bad12" + }, + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 7, + "end_line": 7, + "matched_length": 11, + "match_coverage": 100.0, + "matcher": "1-spdx-id", + "license_expression": "apache-2.0 AND cc-by-4.0", + "rule_identifier": "spdx-license-identifier-apache-2.0 AND cc-by-4.0-0054309bd758401f4a37f1ae75b73f0aa0f00c7a", + "rule_relevance": 100, + "rule_url": null + }, + { + "score": 100.0, + "start_line": 9, + "end_line": 13, + "matched_length": 53, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0 AND cc-by-4.0", + "rule_identifier": "apache-2.0_and_cc-by-4.0_1.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_and_cc-by-4.0_1.RULE" + } + ], + "detection_log": [], + "identifier": "apache_2_0_and_cc_by_4_0-3f088fe7-b454-272e-c2bd-ba96f8872a9a" + }, + { + "license_expression": "cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 52, + "end_line": 53, + "matched_length": 6, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0_53.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_53.RULE" + } + ], + "detection_log": [], + "identifier": "cc_by_4_0-03672089-7ed1-8ec3-87d4-b04dc680d1cf" + }, + { + "license_expression": "cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 59, + "end_line": 59, + "matched_length": 7, + "match_coverage": 100.0, + "matcher": "1-spdx-id", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx-license-identifier-cc-by-4.0-8efd33ea3057ef8989beb8ac174d82fce93d6d69", + "rule_relevance": 100, + "rule_url": null + }, + { + "score": 100.0, + "start_line": 60, + "end_line": 60, + "matched_length": 13, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0_70.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_70.RULE" + } + ], + "detection_log": [], + "identifier": "cc_by_4_0-a0d635a7-b1f8-ba63-9065-28b4adbe7deb" + }, + { + "license_expression": "apache-2.0 AND cc-by-4.0 AND public-domain AND lgpl-2.0-plus AND (mit AND bsd-new) AND gpl-2.0", + "matches": [ + { + "score": 100.0, + "start_line": 216, + "end_line": 219, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_65.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_65.RULE" + }, + { + "score": 100.0, + "start_line": 219, + "end_line": 220, + "matched_length": 5, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0_103.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_103.RULE" + }, + { + "score": 100.0, + "start_line": 220, + "end_line": 220, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "public-domain", + "rule_identifier": "public-domain_298.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_298.RULE" + }, + { + "score": 75.0, + "start_line": 221, + "end_line": 221, + "matched_length": 1, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "lgpl-2.0-plus", + "rule_identifier": "lgpl_bare_single_word.RULE", + "rule_relevance": 75, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_bare_single_word.RULE" + }, + { + "score": 80.0, + "start_line": 221, + "end_line": 222, + "matched_length": 2, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "mit AND bsd-new", + "rule_identifier": "mit_and_bsd-new_modernizr_2.RULE", + "rule_relevance": 80, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_2.RULE" + }, + { + "score": 100.0, + "start_line": 222, + "end_line": 222, + "matched_length": 2, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "gpl-2.0", + "rule_identifier": "gpl-2.0_620.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_620.RULE" + } + ], + "detection_log": [], + "identifier": "apache_2_0_and_cc_by_4_0_and_public_domain_and_lgpl_2_0_plus_and__mit_and_bsd_new__and_gpl_2_0-ec1fd5b3-8a52-10ad-9fd5-273618a2d9ac" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": null, + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [ + { + "purl": "pkg:pypi/commoncode@30.0.0", + "extracted_requirement": "commoncode==30.0.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/extractcode@21.7.23", + "extracted_requirement": "extractcode==21.7.23", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/license-expression@21.6.14", + "extracted_requirement": "license-expression==21.6.14", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/plugincode@21.1.21", + "extracted_requirement": "plugincode==21.1.21", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/typecode@21.6.1", + "extracted_requirement": "typecode==21.6.1", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + } + ], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "pip_requirements", + "purl": null + } + ], + "for_packages": [ + "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "emails": [], + "urls": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "python-sample/scancode-toolkit.ABOUT", + "type": "file", + "name": "scancode-toolkit.ABOUT", + "base_name": "scancode-toolkit", + "extension": ".ABOUT", + "size": 353, + "date": "2022-08-07", + "sha1": "5f0e9b012d33aa14dfd1e592f3b221d14425fe0f", + "md5": "f6bad3138152083c45f05f45a1a87089", + "sha256": "2f99237867129b4a4d9abee5e3dc5bfb8f9b4d62f5be8f73d1c8728f695f0323", + "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": [ + { + "type": "about", + "namespace": null, + "name": "scancode-toolkit", + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": null, + "parties": [ + { + "type": "person", + "role": "owner", + "name": "None", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "https://www.aboutcode.org/", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": "Copyright (c) nexB Inc. and others.", + "holder": "nexB Inc. and others", + "declared_license_expression": "apache-2.0 AND cc-by-4.0", + "declared_license_expression_spdx": "Apache-2.0 AND CC-BY-4.0", + "license_detections": [ + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 3, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE", + "matched_text": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft" + }, + { + "score": 50.0, + "start_line": 1, + "end_line": 1, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "rule_relevance": 50, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "matched_text": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft" + } + ], + "identifier": "apache_2_0_and_cc_by_4_0-9b136727-da14-7f8d-c7e5-319687ed57a5" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft", + "notice_text": null, + "source_packages": [], + "file_references": [ + { + "path": ".", + "size": 0, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + } + ], + "extra_data": {}, + "dependencies": [], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "about_file", + "purl": "pkg:about/scancode-toolkit" + } + ], + "for_packages": [ + "pkg:about/scancode-toolkit?uuid=c6d6bb16-39af-452e-9fe8-74862467ca6b", + "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c" + ], + "detected_license_expression": "apache-2.0 AND cc-by-4.0", + "detected_license_expression_spdx": "Apache-2.0 AND CC-BY-4.0", + "license_detections": [ + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 3, + "end_line": 3, + "matched_length": 3, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE" + }, + { + "score": 50.0, + "start_line": 3, + "end_line": 3, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "rule_relevance": 50, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE" + } + ], + "detection_log": [], + "identifier": "apache_2_0_and_cc_by_4_0-9b136727-da14-7f8d-c7e5-319687ed57a5" + } + ], + "license_clues": [], + "percentage_of_license_text": 12.73, + "copyrights": [ + { + "copyright": "Copyright (c) nexB Inc. and others", + "start_line": 4, + "end_line": 4 + } + ], + "holders": [ + { + "holder": "nexB Inc. and others", + "start_line": 4, + "end_line": 4 + } + ], + "authors": [], + "emails": [], + "urls": [ + { + "url": "https://www.aboutcode.org/", + "start_line": 5, + "end_line": 5 + }, + { + "url": "https://github.com/nexB/scancode-toolkit", + "start_line": 6, + "end_line": 6 + }, + { + "url": "https://github.com/nexB/scancode-toolkit/issues", + "start_line": 7, + "end_line": 7 + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "python-sample/setup-mini.cfg", + "type": "file", + "name": "setup-mini.cfg", + "base_name": "setup-mini", + "extension": ".cfg", + "size": 7132, + "date": "2022-08-07", + "sha1": "320913236a95e370b7ecfb5583346182e1f602d7", + "md5": "0098b1dc74f90c7579d29d8e7fab8552", + "sha256": "c03ec581f5f4561232ff5242215b317247b6b7365b48a228bba4dc3938ac92a5", + "mime_type": "text/plain", + "file_type": "ASCII text, with very long lines", + "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": [ + "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c" + ], + "detected_license_expression": "apache-2.0 AND cc-by-4.0", + "detected_license_expression_spdx": "Apache-2.0 AND CC-BY-4.0", + "license_detections": [ + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 4, + "end_line": 4, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_65.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_65.RULE" + }, + { + "score": 50.0, + "start_line": 4, + "end_line": 4, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "rule_relevance": 50, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE" + } + ], + "detection_log": [], + "identifier": "apache_2_0_and_cc_by_4_0-f9599d77-cb74-1b0d-1431-36a803bc6bc2" + }, + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 37, + "end_line": 37, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_176.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_176.RULE" + }, + { + "score": 50.0, + "start_line": 39, + "end_line": 39, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "rule_relevance": 50, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE" + } + ], + "detection_log": [], + "identifier": "apache_2_0_and_cc_by_4_0-49bebfd8-0ea0-905e-8936-32543a843cda" + } + ], + "license_clues": [], + "percentage_of_license_text": 1.73, + "copyrights": [], + "holders": [], + "authors": [], + "emails": [ + { + "email": "info@aboutcode.org", + "start_line": 10, + "end_line": 10 + } + ], + "urls": [ + { + "url": "https://github.com/nexB/scancode-toolkit", + "start_line": 11, + "end_line": 11 + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "python-sample/setup.cfg", + "type": "file", + "name": "setup.cfg", + "base_name": "setup", + "extension": ".cfg", + "size": 5600, + "date": "2022-08-07", + "sha1": "882ae9bf36c677414b2e8b6ce4c4dfe3af9da560", + "md5": "8ee821c3a79f2297cf67e74202eb7328", + "sha256": "08993d48c2ef1440f0b7156862eebd5f4c365f5a0dd149f7895a7e6b3a312de7", + "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": [ + { + "type": "pypi", + "namespace": null, + "name": "scancode-toolkit", + "version": "30.1.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": null, + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "ScanCode", + "email": "info@aboutcode.org", + "url": null + } + ], + "keywords": [], + "homepage_url": "https://github.com/nexB/scancode-toolkit", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "holder": null, + "declared_license_expression": "apache-2.0 AND cc-by-4.0", + "declared_license_expression_spdx": "Apache-2.0 AND CC-BY-4.0", + "license_detections": [ + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 4, + "end_line": 4, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_65.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_65.RULE" + }, + { + "score": 50.0, + "start_line": 4, + "end_line": 4, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "rule_relevance": 50, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE" + } + ], + "detection_log": [ + "from-package-file" + ], + "identifier": "apache_2_0_and_cc_by_4_0-f9599d77-cb74-1b0d-1431-36a803bc6bc2" + }, + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 37, + "end_line": 37, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_176.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_176.RULE" + }, + { + "score": 50.0, + "start_line": 39, + "end_line": 39, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "rule_relevance": 50, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE" + } + ], + "detection_log": [ + "from-package-file" + ], + "identifier": "apache_2_0_and_cc_by_4_0-49bebfd8-0ea0-905e-8936-32543a843cda" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": null, + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [ + { + "purl": "pkg:pypi/commoncode", + "extracted_requirement": "commoncode>=30.0.0", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/plugincode", + "extracted_requirement": "plugincode>=21.1.21", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/typecode", + "extracted_requirement": "typecode[full]>=21.6.1", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/extractcode", + "extracted_requirement": "extractcode[full]>=21.7.23", + "scope": "install", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:generic/python", + "extracted_requirement": "python_requires>=3.6.*, <4", + "scope": "python", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/rpm-inspector-rpm", + "extracted_requirement": "rpm_inspector_rpm>=4.16.1.3; platform_system == \"Linux\"", + "scope": "packages", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/regipy", + "extracted_requirement": "regipy>=2.0.0; platform_system == \"Linux\"", + "scope": "packages", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/packagedcode-msitools", + "extracted_requirement": "packagedcode_msitools>=0.101.210706; platform_system == \"Linux\"", + "scope": "packages", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:pypi/pytest", + "extracted_requirement": "pytest", + "scope": "dev", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + } + ], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "pypi_setup_cfg", + "purl": "pkg:pypi/scancode-toolkit@30.1.0" + } + ], + "for_packages": [ + "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c" + ], + "detected_license_expression": "apache-2.0 AND cc-by-4.0", + "detected_license_expression_spdx": "Apache-2.0 AND CC-BY-4.0", + "license_detections": [ + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 4, + "end_line": 4, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_65.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_65.RULE" + }, + { + "score": 50.0, + "start_line": 4, + "end_line": 4, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "rule_relevance": 50, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE" + } + ], + "detection_log": [ + "from-package-file" + ], + "identifier": "apache_2_0_and_cc_by_4_0-f9599d77-cb74-1b0d-1431-36a803bc6bc2" + }, + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 37, + "end_line": 37, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_176.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_176.RULE" + }, + { + "score": 50.0, + "start_line": 39, + "end_line": 39, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "rule_relevance": 50, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE" + } + ], + "detection_log": [ + "from-package-file" + ], + "identifier": "apache_2_0_and_cc_by_4_0-49bebfd8-0ea0-905e-8936-32543a843cda" + } + ], + "license_clues": [], + "percentage_of_license_text": 2.37, + "copyrights": [], + "holders": [], + "authors": [], + "emails": [ + { + "email": "info@aboutcode.org", + "start_line": 10, + "end_line": 10 + } + ], + "urls": [ + { + "url": "https://github.com/nexB/scancode-toolkit", + "start_line": 11, + "end_line": 11 + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "python-sample/setup.py", + "type": "file", + "name": "setup.py", + "base_name": "setup", + "extension": ".py", + "size": 63, + "date": "2022-08-07", + "sha1": "3dbf5f1304689a081e361ec9e6f88a442b1b1ef4", + "md5": "599f0c04f31d69c6c9a6251dc6403358", + "sha256": "ba31cbe0aecec0cde5d7362c76411d7664c70fc2413fef33c89bb59f9e16ab9b", + "mime_type": "text/x-script.python", + "file_type": "Python script, ASCII text executable", + "programming_language": "Python", + "is_binary": false, + "is_text": true, + "is_archive": false, + "is_media": false, + "is_source": true, + "is_script": true, + "package_data": [ + { + "type": "pypi", + "namespace": null, + "name": null, + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": "", + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "holder": null, + "declared_license_expression": "apache-2.0 AND cc-by-4.0 AND (apache-2.0 AND cc-by-4.0) AND (apache-2.0 AND cc-by-4.0 AND public-domain AND lgpl-2.0-plus AND (mit AND bsd-new) AND gpl-2.0)", + "declared_license_expression_spdx": "Apache-2.0 AND CC-BY-4.0 AND (Apache-2.0 AND CC-BY-4.0) AND (Apache-2.0 AND CC-BY-4.0 AND LicenseRef-scancode-public-domain AND LGPL-2.0-or-later AND (MIT AND BSD-3-Clause) AND GPL-2.0-only)", + "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" + } + ], + "detection_log": [], + "identifier": "apache_2_0-ab23f79b-ec38-9a8a-9b23-85059407f34d" + }, + { + "license_expression": "cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 395, + "matched_length": 2570, + "match_coverage": 100.0, + "matcher": "1-hash", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0.LICENSE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/cc-by-4.0.LICENSE" + } + ], + "detection_log": [], + "identifier": "cc_by_4_0-da6cc60f-af35-550c-a524-2da27b9bad12" + }, + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 7, + "end_line": 7, + "matched_length": 11, + "match_coverage": 100.0, + "matcher": "1-spdx-id", + "license_expression": "apache-2.0 AND cc-by-4.0", + "rule_identifier": "spdx-license-identifier-apache-2.0 AND cc-by-4.0-0054309bd758401f4a37f1ae75b73f0aa0f00c7a", + "rule_relevance": 100, + "rule_url": null + }, + { + "score": 100.0, + "start_line": 9, + "end_line": 13, + "matched_length": 53, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0 AND cc-by-4.0", + "rule_identifier": "apache-2.0_and_cc-by-4.0_1.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_and_cc-by-4.0_1.RULE" + } + ], + "detection_log": [], + "identifier": "apache_2_0_and_cc_by_4_0-3f088fe7-b454-272e-c2bd-ba96f8872a9a" + }, + { + "license_expression": "cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 52, + "end_line": 53, + "matched_length": 6, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0_53.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_53.RULE" + } + ], + "detection_log": [], + "identifier": "cc_by_4_0-03672089-7ed1-8ec3-87d4-b04dc680d1cf" + }, + { + "license_expression": "cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 59, + "end_line": 59, + "matched_length": 7, + "match_coverage": 100.0, + "matcher": "1-spdx-id", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx-license-identifier-cc-by-4.0-8efd33ea3057ef8989beb8ac174d82fce93d6d69", + "rule_relevance": 100, + "rule_url": null + }, + { + "score": 100.0, + "start_line": 60, + "end_line": 60, + "matched_length": 13, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0_70.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_70.RULE" + } + ], + "detection_log": [], + "identifier": "cc_by_4_0-a0d635a7-b1f8-ba63-9065-28b4adbe7deb" + }, + { + "license_expression": "apache-2.0 AND cc-by-4.0 AND public-domain AND lgpl-2.0-plus AND (mit AND bsd-new) AND gpl-2.0", + "matches": [ + { + "score": 100.0, + "start_line": 216, + "end_line": 219, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_65.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_65.RULE" + }, + { + "score": 100.0, + "start_line": 219, + "end_line": 220, + "matched_length": 5, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "cc-by-4.0_103.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-4.0_103.RULE" + }, + { + "score": 100.0, + "start_line": 220, + "end_line": 220, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "public-domain", + "rule_identifier": "public-domain_298.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/public-domain_298.RULE" + }, + { + "score": 75.0, + "start_line": 221, + "end_line": 221, + "matched_length": 1, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "lgpl-2.0-plus", + "rule_identifier": "lgpl_bare_single_word.RULE", + "rule_relevance": 75, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_bare_single_word.RULE" + }, + { + "score": 80.0, + "start_line": 221, + "end_line": 222, + "matched_length": 2, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "mit AND bsd-new", + "rule_identifier": "mit_and_bsd-new_modernizr_2.RULE", + "rule_relevance": 80, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_and_bsd-new_modernizr_2.RULE" + }, + { + "score": 100.0, + "start_line": 222, + "end_line": 222, + "matched_length": 2, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "gpl-2.0", + "rule_identifier": "gpl-2.0_620.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_620.RULE" + } + ], + "detection_log": [], + "identifier": "apache_2_0_and_cc_by_4_0_and_public_domain_and_lgpl_2_0_plus_and__mit_and_bsd_new__and_gpl_2_0-ec1fd5b3-8a52-10ad-9fd5-273618a2d9ac" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": null, + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "pypi_setup_py", + "purl": null + } + ], + "for_packages": [ + "pkg:pypi/scancode-toolkit@30.1.0?uuid=c30350dd-a2c5-4bb8-bb58-bd6db817432c" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "emails": [], + "urls": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} \ No newline at end of file diff --git a/samples/zjsonpatch-0.3.0.jar-v32rc4results.json b/samples/zjsonpatch-0.3.0.jar-v32rc4results.json new file mode 100644 index 00000000..49139776 --- /dev/null +++ b/samples/zjsonpatch-0.3.0.jar-v32rc4results.json @@ -0,0 +1,2312 @@ +{ + "headers": [ + { + "tool_name": "scancode-toolkit", + "tool_version": "32.0.0rc4", + "options": { + "input": [ + "/repo1.maven.org/maven2/io/fabric8/zjsonpatch/0.3.0/zjsonpatch-0.3.0.jar-extract/" + ], + "--classify": true, + "--copyright": true, + "--csv": "/repo1.maven.org-results/maven2/io/fabric8/zjsonpatch/0.3.0/zjsonpatch-0.3.0.jar-v32rc4results.csv", + "--info": true, + "--json-pp": "/repo1.maven.org-results/maven2/io/fabric8/zjsonpatch/0.3.0/zjsonpatch-0.3.0.jar-v32rc4results.json", + "--license": true, + "--license-diagnostics": true, + "--license-references": true, + "--license-text": true, + "--license-text-diagnostics": true, + "--package": true, + "--processes": "16", + "--summary": true, + "--yaml": "/repo1.maven.org-results/maven2/io/fabric8/zjsonpatch/0.3.0/zjsonpatch-0.3.0.jar-v32rc4results.yaml" + }, + "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-04-21T022056.303886", + "end_timestamp": "2023-04-21T022058.560930", + "output_format_version": "3.0.0", + "duration": 2.2570528984069824, + "message": null, + "errors": [], + "warnings": [], + "extra_data": { + "system_environment": { + "operating_system": "linux", + "cpu_architecture": "64", + "platform": "Linux-5.4.0-146-generic-x86_64-with-glibc2.27", + "platform_version": "#163-Ubuntu SMP Fri Mar 17 18:26:02 UTC 2023", + "python_version": "3.8.16 (default, Dec 7 2022, 01:12:13) \n[GCC 7.5.0]" + }, + "spdx_license_list_version": "3.20", + "files_count": 27 + } + } + ], + "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": false, + "ambiguous_compound_licensing": true + }, + "declared_holder": "", + "primary_language": null, + "other_license_expressions": [ + { + "value": "apache-2.0", + "count": 2 + } + ], + "other_holders": [ + { + "value": null, + "count": 26 + }, + { + "value": "flipkart.com", + "count": 1 + } + ], + "other_languages": [] + }, + "packages": [ + { + "type": "maven", + "namespace": "io.fabric8", + "name": "zjsonpatch", + "version": "0.3.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "zjsonpatch\nJava Library to find / apply JSON Patches according to RFC 6902", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "developper", + "name": "Gopi Vishwakarma", + "email": "vishwakarma.iiita@gmail.com", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Jimmi Dyson", + "email": "jimmidyson@gmail.com", + "url": null + } + ], + "keywords": [], + "homepage_url": "https://github.com/fabric8io/zjsonpatch/", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": "https://github.com/fabric8io/zjsonpatch", + "vcs_url": "git+https://github.com/fabric8io/zjsonpatch.git", + "copyright": null, + "holder": null, + "declared_license_expression": "apache-2.0", + "declared_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 7, + "match_coverage": 100.0, + "matcher": "1-hash", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_5.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_5.RULE", + "matched_text": "The Apache Software License, Version 2.0" + } + ], + "identifier": "apache_2_0-daaaee76-1395-c8c8-e06a-3f3f76e079b1" + }, + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 80.0, + "start_line": 1, + "end_line": 1, + "matched_length": 9, + "match_coverage": 100.0, + "matcher": "1-hash", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_42.RULE", + "rule_relevance": 80, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_42.RULE", + "matched_text": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "identifier": "apache_2_0-e6b67d43-b657-21c0-8d8b-17f617aef8ce" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "[{'name': 'The Apache Software License, Version 2.0', 'url': 'http://www.apache.org/licenses/LICENSE-2.0.txt', 'comments': None, 'distribution': 'repo'}]", + "notice_text": null, + "source_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?classifier=sources" + ], + "extra_data": {}, + "repository_homepage_url": "https://repo1.maven.org/maven2/io/fabric8/zjsonpatch/0.3.0/", + "repository_download_url": "https://repo1.maven.org/maven2/io/fabric8/zjsonpatch/0.3.0/zjsonpatch-0.3.0.jar", + "api_data_url": "https://repo1.maven.org/maven2/io/fabric8/zjsonpatch/0.3.0/zjsonpatch-0.3.0.pom", + "package_uid": "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7", + "datafile_paths": [ + "zjsonpatch-0.3.0.jar-extract/META-INF/maven/io.fabric8/zjsonpatch/pom.xml" + ], + "datasource_ids": [ + "maven_pom" + ], + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0" + } + ], + "dependencies": [ + { + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.3.2", + "extracted_requirement": "2.3.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.3.2?uuid=dff01326-9e0c-44b8-96c3-afb5f438da12", + "for_package_uid": "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7", + "datafile_path": "zjsonpatch-0.3.0.jar-extract/META-INF/maven/io.fabric8/zjsonpatch/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.3.2", + "extracted_requirement": "2.3.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.3.2?uuid=f76cd879-abb8-4813-9f33-d89506ab9d02", + "for_package_uid": "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7", + "datafile_path": "zjsonpatch-0.3.0.jar-extract/META-INF/maven/io.fabric8/zjsonpatch/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/commons-io/commons-io@2.4", + "extracted_requirement": "2.4", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/commons-io/commons-io@2.4?uuid=7064523b-58bc-436a-af3e-34046b6f563a", + "for_package_uid": "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7", + "datafile_path": "zjsonpatch-0.3.0.jar-extract/META-INF/maven/io.fabric8/zjsonpatch/pom.xml", + "datasource_id": "maven_pom" + }, + { + "purl": "pkg:maven/junit/junit@4.8.2", + "extracted_requirement": "4.8.2", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {}, + "dependency_uid": "pkg:maven/junit/junit@4.8.2?uuid=d4bc0cac-4afa-4d5c-a632-bdbea3b35d67", + "for_package_uid": "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7", + "datafile_path": "zjsonpatch-0.3.0.jar-extract/META-INF/maven/io.fabric8/zjsonpatch/pom.xml", + "datasource_id": "maven_pom" + } + ], + "license_detections": [ + { + "identifier": "apache_2_0-8352cbe6-d199-3a43-cdc8-b14a837e2ce6", + "license_expression": "apache-2.0", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d", + "license_expression": "apache-2.0", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "apache_2_0-124b45cb-8e44-0374-5bd8-c5f8ae55fad0", + "license_expression": "apache-2.0", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "apache_2_0-daaaee76-1395-c8c8-e06a-3f3f76e079b1", + "license_expression": "apache-2.0", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "apache_2_0-e6b67d43-b657-21c0-8d8b-17f617aef8ce", + "license_expression": "apache-2.0", + "detection_count": 1, + "detection_log": [] + } + ], + "license_references": [ + { + "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" + } + ], + "license_rule_references": [ + { + "license_expression": "apache-2.0", + "identifier": "apache-2.0_149.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_149.RULE", + "is_license_text": false, + "is_license_notice": false, + "is_license_reference": false, + "is_license_tag": true, + "is_license_intro": false, + "is_continuous": false, + "is_builtin": true, + "is_from_license": false, + "is_synthetic": false, + "length": 27, + "relevance": 100, + "minimum_coverage": 70, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [ + "http://www.apache.org/licenses/LICENSE-2.0.txt" + ], + "ignorable_emails": [], + "text": "\n \n The Apache Software License, Version 2.0\n http://www.apache.org/licenses/LICENSE-2.0.txt\n repo\n \n " + }, + { + "license_expression": "apache-2.0", + "identifier": "apache-2.0_42.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_42.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": 9, + "relevance": 80, + "minimum_coverage": 100, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [ + "http://www.apache.org/licenses/LICENSE-2.0.txt" + ], + "ignorable_emails": [], + "text": "http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + { + "license_expression": "apache-2.0", + "identifier": "apache-2.0_5.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_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": 7, + "relevance": 100, + "minimum_coverage": 80, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "The Apache Software License, Version 2.0" + }, + { + "license_expression": "apache-2.0", + "identifier": "apache-2.0_7.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.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": 85, + "relevance": 100, + "minimum_coverage": 0, + "referenced_filenames": [], + "notes": "apache 2.0 with disclaimer", + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [ + "http://www.apache.org/licenses/LICENSE-2.0" + ], + "ignorable_emails": [], + "text": "# 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." + }, + { + "license_expression": "apache-2.0", + "identifier": "apache-2.0_osgi.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_osgi.RULE", + "is_license_text": false, + "is_license_notice": false, + "is_license_reference": false, + "is_license_tag": true, + "is_license_intro": false, + "is_continuous": false, + "is_builtin": true, + "is_from_license": false, + "is_synthetic": false, + "length": 11, + "relevance": 100, + "minimum_coverage": 50, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [ + "http://www.apache.org/licenses/LICENSE-2.0.txt" + ], + "ignorable_emails": [], + "text": "Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "files": [ + { + "path": "zjsonpatch-0.3.0.jar-extract", + "type": "directory", + "name": "zjsonpatch-0.3.0.jar-extract", + "base_name": "zjsonpatch-0.3.0.jar-extract", + "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": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": true, + "is_key_file": false, + "files_count": 27, + "dirs_count": 11, + "size_count": 73442, + "scan_errors": [] + }, + { + "path": "zjsonpatch-0.3.0.jar-extract/io", + "type": "directory", + "name": "io", + "base_name": "io", + "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": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": true, + "is_key_file": false, + "files_count": 24, + "dirs_count": 6, + "size_count": 58167, + "scan_errors": [] + }, + { + "path": "zjsonpatch-0.3.0.jar-extract/io/fabric8", + "type": "directory", + "name": "fabric8", + "base_name": "fabric8", + "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": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "files_count": 24, + "dirs_count": 5, + "size_count": 58167, + "scan_errors": [] + }, + { + "path": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch", + "type": "directory", + "name": "zjsonpatch", + "base_name": "zjsonpatch", + "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": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "files_count": 24, + "dirs_count": 4, + "size_count": 58167, + "scan_errors": [] + }, + { + "path": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/Constants.class", + "type": "file", + "name": "Constants.class", + "base_name": "Constants", + "extension": ".class", + "size": 537, + "date": "2017-01-04", + "sha1": "cf1aa6ecd3408663045a53e464fbe47ac8f01afd", + "md5": "5fc9680a2a593425cb272f7bad33e75f", + "sha256": "b83d0b0b09e4feb5a0555b9b2bf7403d8108c9293516cdc27842b6067708429c", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/Diff.class", + "type": "file", + "name": "Diff.class", + "base_name": "Diff", + "extension": ".class", + "size": 2209, + "date": "2017-01-04", + "sha1": "25de8a96a638e985209b03d7d38b35cffc7a9922", + "md5": "56f030d897f7ff861d8648e730e63c1a", + "sha256": "229f7eecbff7b4ae3371e91d2cef61415e999f4b921f85aae730d9a2fc57185e", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/JsonDiff$1.class", + "type": "file", + "name": "JsonDiff$1.class", + "base_name": "JsonDiff$1", + "extension": ".class", + "size": 216, + "date": "2017-01-04", + "sha1": "d9aa9267d734c82b7ccec39082bbfcc3fa1cd9bb", + "md5": "0339903e6acfa25fa7223899230d5cc1", + "sha256": "d312ad0a97bbebfc053bff3754794dcc78913b0ef264b1b7c7530442ae398bdf", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/JsonDiff$EncodePathFunction.class", + "type": "file", + "name": "JsonDiff$EncodePathFunction.class", + "base_name": "JsonDiff$EncodePathFunction", + "extension": ".class", + "size": 1009, + "date": "2017-01-04", + "sha1": "e23026933b6fbb2e25cb5d9bf70e6deb8cf06ba3", + "md5": "45fb3a8581261ed61678467aba342fc1", + "sha256": "d15e417c1561035ee8b4187225f205edbbf40c3dd435ce57f6fee2e706e9fd8a", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/JsonDiff.class", + "type": "file", + "name": "JsonDiff.class", + "base_name": "JsonDiff", + "extension": ".class", + "size": 12908, + "date": "2017-01-04", + "sha1": "440d8595e62ec4859d84d937172473d25086334a", + "md5": "824d115638048e08c5cb1ade4b9d0e37", + "sha256": "162f772747d01648861b35cbd3fae872ac74eb3bfe3323c90024995b9a6eb8dd", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/JsonPatch$1.class", + "type": "file", + "name": "JsonPatch$1.class", + "base_name": "JsonPatch$1", + "extension": ".class", + "size": 806, + "date": "2017-01-04", + "sha1": "46403b7d18bfff0928e514c44ff325841cea0166", + "md5": "8c55c95806bb8b16b47b99fc18ba2a54", + "sha256": "dfff2407f05708e1289b50e2f3a30f08ea3090a273b0e91579032692c7c056f2", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/JsonPatch.class", + "type": "file", + "name": "JsonPatch.class", + "base_name": "JsonPatch", + "extension": ".class", + "size": 9045, + "date": "2017-01-04", + "sha1": "c47ce73f4de22dd215be02d926ff153019de2e13", + "md5": "93f199ffe5dabfa4813c343b8dd7f9cf", + "sha256": "79eb1d4c0260b855288b417f806960519e05893725152bb836591d07ca0d9cde", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/NodeType.class", + "type": "file", + "name": "NodeType.class", + "base_name": "NodeType", + "extension": ".class", + "size": 3165, + "date": "2017-01-04", + "sha1": "43c0c64ca295fd77563c099a96f2467aa9f5d380", + "md5": "03768a79d561a11cf0c7a973aca974c3", + "sha256": "bf68f5e5188b4852a176bb2bdbb6e70130c5cc7705548d4cb98f7c596f5564f7", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/Operation.class", + "type": "file", + "name": "Operation.class", + "base_name": "Operation", + "extension": ".class", + "size": 2811, + "date": "2017-01-04", + "sha1": "3387b8b22ba62a0b76dd512102752791a166fabf", + "md5": "50b2d52fe422a4f75518df8757ed936e", + "sha256": "c4013833f32b855fa8ef8db40ecb981ba00b69a511770f33ba324e59c43c5336", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal", + "type": "directory", + "name": "internal", + "base_name": "internal", + "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": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "files_count": 15, + "dirs_count": 3, + "size_count": 25461, + "scan_errors": [] + }, + { + "path": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/collections4", + "type": "directory", + "name": "collections4", + "base_name": "collections4", + "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": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "files_count": 12, + "dirs_count": 1, + "size_count": 21663, + "scan_errors": [] + }, + { + "path": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/collections4/DefaultEquator.class", + "type": "file", + "name": "DefaultEquator.class", + "base_name": "DefaultEquator", + "extension": ".class", + "size": 1751, + "date": "2017-01-04", + "sha1": "23980c54ce83201da8d2609d266f8485ad5d4b51", + "md5": "c7f581ad3808b90ff043c091575bbb14", + "sha256": "faf7599611d05c956209ba26354f2b73e4db9da9681389435210ecdf1345ba40", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/collections4/Equator.class", + "type": "file", + "name": "Equator.class", + "base_name": "Equator", + "extension": ".class", + "size": 337, + "date": "2017-01-04", + "sha1": "7023ec93f615537631069a03d68715d3fd8176de", + "md5": "31d1e20b888ba0cfe5a192e9520f00f7", + "sha256": "c36e61d433cc1c84c1a59ff9ff0a1c352b7004093f54097af3f634ec2cb7f05f", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/collections4/ListUtils$LcsVisitor.class", + "type": "file", + "name": "ListUtils$LcsVisitor.class", + "base_name": "ListUtils$LcsVisitor", + "extension": ".class", + "size": 1576, + "date": "2017-01-04", + "sha1": "30517d69b6bce76381b5089958469f202eb69a27", + "md5": "0a94f696fa8a03ab014e1c5cdc6b38b9", + "sha256": "ed9cd764aba620a753272dca0df66641af3fb0bff2bbeda7a59969d65c4b8348", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/collections4/ListUtils.class", + "type": "file", + "name": "ListUtils.class", + "base_name": "ListUtils", + "extension": ".class", + "size": 2772, + "date": "2017-01-04", + "sha1": "0eef2e099ece20545a697f7883f8bdc134b0196e", + "md5": "c6f69b86819e1ac322472dc0e3779020", + "sha256": "254e4bfc33162ca497b3594e6aea21b982e9487f08e15ad48d0a45008178c7d8", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/collections4/sequence", + "type": "directory", + "name": "sequence", + "base_name": "sequence", + "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": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "files_count": 8, + "dirs_count": 0, + "size_count": 15227, + "scan_errors": [] + }, + { + "path": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/collections4/sequence/CommandVisitor.class", + "type": "file", + "name": "CommandVisitor.class", + "base_name": "CommandVisitor", + "extension": ".class", + "size": 367, + "date": "2017-01-04", + "sha1": "15bd17c96bdd99099e1e6bfd841f4e338ce656d7", + "md5": "bd11b79e61b644aa358dd3b8dae59d0f", + "sha256": "346f12b93cda47b8013a30c828712534fd87162407a9bfa79043b3bf5c12f08e", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/collections4/sequence/DeleteCommand.class", + "type": "file", + "name": "DeleteCommand.class", + "base_name": "DeleteCommand", + "extension": ".class", + "size": 1338, + "date": "2017-01-04", + "sha1": "162db1c4f91bd71f62ecb59bbf7f9ea0c6b35139", + "md5": "8e127844dba21d88852f4e29d4825b62", + "sha256": "cb349a5ba7c03ff9f8a58941156f7ef1c14e77a24b92d15d9642fe30ec23e053", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/collections4/sequence/EditCommand.class", + "type": "file", + "name": "EditCommand.class", + "base_name": "EditCommand", + "extension": ".class", + "size": 990, + "date": "2017-01-04", + "sha1": "2579b80fb284d7ac321daddaa46e8a75668251ea", + "md5": "200384ed58c950abced3e9546690ba8b", + "sha256": "d5e8662f5d15d2616b9c2b21292f8d4cbbbe48c7a19dfe8ffc53551ce572b21c", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/collections4/sequence/EditScript.class", + "type": "file", + "name": "EditScript.class", + "base_name": "EditScript", + "extension": ".class", + "size": 3286, + "date": "2017-01-04", + "sha1": "71a3435f3f9d3ce72a661daf9a666b6622d8ebf6", + "md5": "d1aec5bd7e5704c0fea29c11b8784725", + "sha256": "e6437a6309463d6bf5fcaf9e6b1ec0f68f7440838147a0b001f69f397b1869ce", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/collections4/sequence/InsertCommand.class", + "type": "file", + "name": "InsertCommand.class", + "base_name": "InsertCommand", + "extension": ".class", + "size": 1338, + "date": "2017-01-04", + "sha1": "e8274c43defb1ac1ed267d7535a00f12374d4afd", + "md5": "1d3a873e2e1e0a8c0f7aa927d8b22778", + "sha256": "efe72948c0a65436e03c80a1eced27e5e2c882e9f2bc747c6b945c0af6aeda0f", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/collections4/sequence/KeepCommand.class", + "type": "file", + "name": "KeepCommand.class", + "base_name": "KeepCommand", + "extension": ".class", + "size": 1328, + "date": "2017-01-04", + "sha1": "cc06f662910034bda091461636ccc20a3a36d93d", + "md5": "2d2e6c4c4f3c6c6da904f65c255aedf3", + "sha256": "72034f870361b55160616db60193259b32cb83dd5328e0216d3598b4dbe35596", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/collections4/sequence/SequencesComparator$Snake.class", + "type": "file", + "name": "SequencesComparator$Snake.class", + "base_name": "SequencesComparator$Snake", + "extension": ".class", + "size": 885, + "date": "2017-01-04", + "sha1": "e4edfa9c905a836d8257cc760803fe2c39d97dd6", + "md5": "7e16208d0766531e0b4f109552444ebe", + "sha256": "d7a39a3b26307b7df9d3eed16011fc07d238be2bf5f521dd2f12aead3e859949", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/collections4/sequence/SequencesComparator.class", + "type": "file", + "name": "SequencesComparator.class", + "base_name": "SequencesComparator", + "extension": ".class", + "size": 5695, + "date": "2017-01-04", + "sha1": "83ebf85dfc211d0db52589828b3574a25a25e05b", + "md5": "f54116582587fe8d21776160eecd5f54", + "sha256": "de77288dbf81a2d1c4d65bd2370d606f937646ebab72e81266962c16fe3311af", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/guava", + "type": "directory", + "name": "guava", + "base_name": "guava", + "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": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "files_count": 3, + "dirs_count": 0, + "size_count": 3798, + "scan_errors": [] + }, + { + "path": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/guava/Lists.class", + "type": "file", + "name": "Lists.class", + "base_name": "Lists", + "extension": ".class", + "size": 1103, + "date": "2017-01-04", + "sha1": "243265d67a324ec12970c522b701298d35b33788", + "md5": "c8a9dc6827c0737510a7e935622e1919", + "sha256": "55a37a056c161d49d0d052bbb9938521e0e664d6db4b6c18bd83062adff7e5d2", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/guava/Preconditions.class", + "type": "file", + "name": "Preconditions.class", + "base_name": "Preconditions", + "extension": ".class", + "size": 2156, + "date": "2017-01-04", + "sha1": "ff28d396a305eb52994ea7acff84bc1710148d1e", + "md5": "37d4099e9a4dd6dc1b24c351ddcc46db", + "sha256": "397a3c35ad330eddebaf5034cdc65cd8238554e7329767b8881c499a92d0254d", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/io/fabric8/zjsonpatch/internal/guava/Strings.class", + "type": "file", + "name": "Strings.class", + "base_name": "Strings", + "extension": ".class", + "size": 539, + "date": "2017-01-04", + "sha1": "e03b29fc8cd8aa782a9cf51e59de4f149cfd053d", + "md5": "1ebfb5a7a58ca10f4d8430dfbfec4840", + "sha256": "3905cc20a6a37cf9daa6a37507434aa78f267fc97528939edda9565e114322be", + "mime_type": "application/x-java-applet", + "file_type": "compiled Java class data, version 51.0 (Java 1.7)", + "programming_language": null, + "is_binary": true, + "is_text": false, + "is_archive": false, + "is_media": false, + "is_source": false, + "is_script": false, + "package_data": [], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/META-INF", + "type": "directory", + "name": "META-INF", + "base_name": "META-INF", + "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": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": true, + "is_key_file": false, + "files_count": 3, + "dirs_count": 3, + "size_count": 15275, + "scan_errors": [] + }, + { + "path": "zjsonpatch-0.3.0.jar-extract/META-INF/MANIFEST.MF", + "type": "file", + "name": "MANIFEST.MF", + "base_name": "MANIFEST", + "extension": ".MF", + "size": 1297, + "date": "2017-01-04", + "sha1": "d04cfa9c31eee7326eb65e8d459f20dded1fff95", + "md5": "b182ec79d2e72c7336c4a4a9de1bf12c", + "sha256": "cf79e273ce5e909faf4dbae7b795fa657a6e79d34a13a023670f14b524fe745b", + "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": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "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": 8, + "end_line": 8, + "matched_length": 11, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_osgi.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_osgi.RULE", + "matched_text": "Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "detection_log": [], + "identifier": "apache_2_0-8352cbe6-d199-3a43-cdc8-b14a837e2ce6" + } + ], + "license_clues": [], + "percentage_of_license_text": 5.58, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": true, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "zjsonpatch-0.3.0.jar-extract/META-INF/maven", + "type": "directory", + "name": "maven", + "base_name": "maven", + "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": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "files_count": 2, + "dirs_count": 2, + "size_count": 13978, + "scan_errors": [] + }, + { + "path": "zjsonpatch-0.3.0.jar-extract/META-INF/maven/io.fabric8", + "type": "directory", + "name": "io.fabric8", + "base_name": "io.fabric8", + "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": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "is_legal": false, + "is_manifest": false, + "is_readme": false, + "is_top_level": false, + "is_key_file": false, + "files_count": 2, + "dirs_count": 1, + "size_count": 13978, + "scan_errors": [] + }, + { + "path": "zjsonpatch-0.3.0.jar-extract/META-INF/maven/io.fabric8/zjsonpatch", + "type": "directory", + "name": "zjsonpatch", + "base_name": "zjsonpatch", + "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": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": 13978, + "scan_errors": [] + }, + { + "path": "zjsonpatch-0.3.0.jar-extract/META-INF/maven/io.fabric8/zjsonpatch/pom.properties", + "type": "file", + "name": "pom.properties", + "base_name": "pom", + "extension": ".properties", + "size": 129, + "date": "2017-01-04", + "sha1": "58728c09375ce0c5040685d27629c9b92e662038", + "md5": "34fff9a71a077409664df86f481bd998", + "sha256": "7367a3bd244c0aa601f07d46599f92b8e5bf7b84fd6fa449a94b345739ecd407", + "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": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "copyrights": [], + "holders": [], + "authors": [], + "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": "zjsonpatch-0.3.0.jar-extract/META-INF/maven/io.fabric8/zjsonpatch/pom.xml", + "type": "file", + "name": "pom.xml", + "base_name": "pom", + "extension": ".xml", + "size": 13849, + "date": "2017-01-04", + "sha1": "1385fb99630e407ae2821c9a16ccff56c879cdc9", + "md5": "c9d97d57f1c0175143e2ac1327c45db9", + "sha256": "26fdb79456d6915409685d46f467f72d410a0851a440b45109e6eef2496b0b3d", + "mime_type": "text/plain", + "file_type": "exported SGML document, 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": [ + { + "type": "maven", + "namespace": "io.fabric8", + "name": "zjsonpatch", + "version": "0.3.0", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "zjsonpatch\nJava Library to find / apply JSON Patches according to RFC 6902", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "developper", + "name": "Gopi Vishwakarma", + "email": "vishwakarma.iiita@gmail.com", + "url": null + }, + { + "type": "person", + "role": "developper", + "name": "Jimmi Dyson", + "email": "jimmidyson@gmail.com", + "url": null + } + ], + "keywords": [], + "homepage_url": "https://github.com/fabric8io/zjsonpatch/", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": "https://github.com/fabric8io/zjsonpatch", + "vcs_url": "git+https://github.com/fabric8io/zjsonpatch.git", + "copyright": null, + "holder": null, + "declared_license_expression": "apache-2.0", + "declared_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 7, + "match_coverage": 100.0, + "matcher": "1-hash", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_5.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_5.RULE", + "matched_text": "The Apache Software License, Version 2.0" + } + ], + "identifier": "apache_2_0-daaaee76-1395-c8c8-e06a-3f3f76e079b1" + }, + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 80.0, + "start_line": 1, + "end_line": 1, + "matched_length": 9, + "match_coverage": 100.0, + "matcher": "1-hash", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_42.RULE", + "rule_relevance": 80, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_42.RULE", + "matched_text": "http://www.apache.org/licenses/LICENSE-2.0.txt" + } + ], + "identifier": "apache_2_0-e6b67d43-b657-21c0-8d8b-17f617aef8ce" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "[{'name': 'The Apache Software License, Version 2.0', 'url': 'http://www.apache.org/licenses/LICENSE-2.0.txt', 'comments': None, 'distribution': 'repo'}]", + "notice_text": null, + "source_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?classifier=sources" + ], + "file_references": [], + "extra_data": {}, + "dependencies": [ + { + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.3.2", + "extracted_requirement": "2.3.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.3.2", + "extracted_requirement": "2.3.2", + "scope": "compile", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/commons-io/commons-io@2.4", + "extracted_requirement": "2.4", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {} + }, + { + "purl": "pkg:maven/junit/junit@4.8.2", + "extracted_requirement": "4.8.2", + "scope": "test", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": {} + } + ], + "repository_homepage_url": "https://repo1.maven.org/maven2/io/fabric8/zjsonpatch/0.3.0/", + "repository_download_url": "https://repo1.maven.org/maven2/io/fabric8/zjsonpatch/0.3.0/zjsonpatch-0.3.0.jar", + "api_data_url": "https://repo1.maven.org/maven2/io/fabric8/zjsonpatch/0.3.0/zjsonpatch-0.3.0.pom", + "datasource_id": "maven_pom", + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0" + } + ], + "for_packages": [ + "pkg:maven/io.fabric8/zjsonpatch@0.3.0?uuid=634b1ff2-c337-45a0-b4bc-e3fbc6bba7e7" + ], + "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": 5, + "end_line": 15, + "matched_length": 85, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_7.RULE", + "matched_text": "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." + } + ], + "detection_log": [], + "identifier": "apache_2_0-c4e30bcd-ccfd-bbc3-d2f1-196ab911e47d" + }, + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 100.0, + "start_line": 58, + "end_line": 64, + "matched_length": 27, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_149.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_149.RULE", + "matched_text": "licenses>\n \n The Apache Software License, Version 2.0\n http://www.apache.org/licenses/LICENSE-2.0.txt\n repo\n \n " + } + ], + "detection_log": [], + "identifier": "apache_2_0-124b45cb-8e44-0374-5bd8-c5f8ae55fad0" + } + ], + "license_clues": [], + "percentage_of_license_text": 9.03, + "copyrights": [ + { + "copyright": "Copyright 2016 flipkart.com", + "start_line": 3, + "end_line": 3 + } + ], + "holders": [ + { + "holder": "flipkart.com", + "start_line": 3, + "end_line": 3 + } + ], + "authors": [], + "is_legal": false, + "is_manifest": true, + "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 diff --git a/src/App.tsx b/src/App.tsx index 9bcd4693..eb337b77 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -28,9 +28,9 @@ import "rc-tree/assets/index.css"; import "react-toastify/dist/ReactToastify.css"; import "bootstrap/dist/css/bootstrap.min.css"; import "react-tooltip/dist/react-tooltip.css"; -import "./app.css"; -import "./dashStyles.css"; -import "./customFaColors.css"; +import "./styles/app.css"; +import "./styles/dashStyles.css"; +import "./styles/customFaColors.css"; const App = () => { return ( diff --git a/src/components/DropZone/DropZone.tsx b/src/components/DropZone/DropZone.tsx index 85ac0f1e..e0e60f5a 100644 --- a/src/components/DropZone/DropZone.tsx +++ b/src/components/DropZone/DropZone.tsx @@ -2,15 +2,7 @@ import { toast } from "react-toastify"; import React, { DragEvent } from "react"; import { useWorkbenchDB } from "../../contexts/dbContext"; - -const lastLogs: { [key: string]: number } = {}; -export const CustomLogger = (id: string, ...args: unknown[]) => { - const currentTime = new Date().getTime(); - if (!(lastLogs[id] && currentTime < lastLogs[id] + 1000)) { - console.log(id, ...args); - lastLogs[id] = currentTime; - } -}; +import { filterValidFiles, getFileType } from "../../utils/files"; const DropZone = (props: React.PropsWithChildren) => { const { sqliteParser, importJsonFile } = useWorkbenchDB(); @@ -18,26 +10,21 @@ const DropZone = (props: React.PropsWithChildren) => { function DragOverHandler(e: DragEvent) { e.preventDefault(); e.stopPropagation(); - // CustomLogger("Drag detected", e, e.dataTransfer.files); + // TimeThrottledLogger("Drag detected", e, e.dataTransfer.files); } + function DropHandler(e: DragEvent) { e.preventDefault(); e.stopPropagation(); - const regex = { - json: /\.(json)+$/i, - sqlite: /\.(sqlite)+$/i, - }; - - const validFiles = Array.from(e.dataTransfer.files) - .filter( - (file) => file.name.match(regex.json) || file.name.match(regex.sqlite) - ) - .filter((file) => file !== null); + const validFiles = filterValidFiles(e.dataTransfer.files); const fileToImport = validFiles[0]; - console.log("Dropped files:", e, e.dataTransfer.files); - console.log("Valid files:", validFiles); + console.log({ + validFiles, + droppedFiles: e.dataTransfer.files, + fileToImport, + }); if (!validFiles.length) { return toast.error("Only json/sqlite file can be imported !", { @@ -51,10 +38,12 @@ const DropZone = (props: React.PropsWithChildren) => { }); } - if (regex.sqlite.test(fileToImport.name)) { + const fileType = getFileType(fileToImport); + + if (fileType === "sqlite") { console.log("Parsing sqlite file:", fileToImport.name); sqliteParser(fileToImport.path); - } else { + } else if (fileType === "json") { console.log("Parsing json file:", fileToImport.name); importJsonFile(fileToImport.path); } diff --git a/src/components/FileTree/FileTree.css b/src/components/FileTree/FileTree.css index 815edddd..8803e721 100644 --- a/src/components/FileTree/FileTree.css +++ b/src/components/FileTree/FileTree.css @@ -1,10 +1,9 @@ - .file-tree-container { padding: 15px; border: 0; - min-height: 80vh!important; - /* border-right: 2px solid black; */ + min-height: 80vh !important; } + .file-tree-loader { display: flex; width: 100%; @@ -12,13 +11,13 @@ align-items: center; height: 100%; } + .file-tree-loader .loader { justify-content: center; } + .filetree-node-wrapper { - scroll-margin-left: 150px; - scroll-margin-top: 150px; - scroll-margin-bottom: 150px; + scroll-margin-left: 20px; } .rc-tree-child-tree { @@ -35,9 +34,11 @@ max-width: 300px; min-height: 80vh; } + .rc-tree-focused:not(.rc-tree-active-focused) { border-color: cyan; } + .rc-tree .rc-tree-treenode { margin: 0; padding: 0; @@ -46,6 +47,7 @@ list-style: none; outline: 0; } + .rc-tree .rc-tree-treenode .draggable { color: #333; -moz-user-select: none; @@ -53,10 +55,12 @@ -webkit-user-select: none; user-select: none; } + .rc-tree .rc-tree-treenode.dragging { - background: rgba(100,100,255,0.1); + background: rgba(100, 100, 255, 0.1); } -.rc-tree .rc-tree-treenode.drop-container > .draggable::after { + +.rc-tree .rc-tree-treenode.drop-container>.draggable::after { position: absolute; top: 0; right: 0; @@ -65,23 +69,29 @@ box-shadow: inset 0 0 0 2px red; content: ''; } -.rc-tree .rc-tree-treenode.drop-container ~ .rc-tree-treenode { + +.rc-tree .rc-tree-treenode.drop-container~.rc-tree-treenode { border-left: 2px solid chocolate; } + .rc-tree .rc-tree-treenode.drop-target { background-color: yellowgreen; } -.rc-tree .rc-tree-treenode.drop-target ~ .rc-tree-treenode { + +.rc-tree .rc-tree-treenode.drop-target~.rc-tree-treenode { border-left: none; } -.rc-tree .rc-tree-treenode.filter-node > .rc-tree-node-content-wrapper { + +.rc-tree .rc-tree-treenode.filter-node>.rc-tree-node-content-wrapper { color: #a60000 !important; font-weight: bold !important; } + .rc-tree .rc-tree-treenode ul { margin: 0; padding: 0 0 0 18px; } + .rc-tree .rc-tree-treenode .rc-tree-node-content-wrapper { position: relative; display: inline-block; @@ -92,7 +102,10 @@ vertical-align: top; cursor: pointer; } -.rc-tree .rc-tree-treenode span.rc-tree-switcher, .rc-tree .rc-tree-treenode span.rc-tree-checkbox, .rc-tree .rc-tree-treenode span.rc-tree-iconEle { + +.rc-tree .rc-tree-treenode span.rc-tree-switcher, +.rc-tree .rc-tree-treenode span.rc-tree-checkbox, +.rc-tree .rc-tree-treenode span.rc-tree-iconEle { display: inline-block; width: 16px; height: 16px; @@ -106,45 +119,59 @@ outline: none; cursor: pointer; } -.rc-tree .rc-tree-treenode span.rc-tree-switcher.rc-tree-icon__customize, .rc-tree .rc-tree-treenode span.rc-tree-checkbox.rc-tree-icon__customize, .rc-tree .rc-tree-treenode span.rc-tree-iconEle.rc-tree-icon__customize { + +.rc-tree .rc-tree-treenode span.rc-tree-switcher.rc-tree-icon__customize, +.rc-tree .rc-tree-treenode span.rc-tree-checkbox.rc-tree-icon__customize, +.rc-tree .rc-tree-treenode span.rc-tree-iconEle.rc-tree-icon__customize { background-image: none; } + .rc-tree .rc-tree-treenode span.rc-tree-icon_loading { margin-right: 2px; vertical-align: top; } + .rc-tree .rc-tree-treenode span.rc-tree-switcher.rc-tree-switcher-noop { cursor: auto; } + .rc-tree .rc-tree-treenode span.rc-tree-switcher.rc-tree-switcher_open { background-position: -93px -56px; } + .rc-tree .rc-tree-treenode span.rc-tree-switcher.rc-tree-switcher_close { background-position: -75px -56px; } + .rc-tree .rc-tree-treenode span.rc-tree-checkbox { width: 13px; height: 13px; margin: 0 3px; background-position: 0 0; } + .rc-tree .rc-tree-treenode span.rc-tree-checkbox-checked { background-position: -14px 0; } + .rc-tree .rc-tree-treenode span.rc-tree-checkbox-indeterminate { background-position: -14px -28px; } + .rc-tree .rc-tree-treenode span.rc-tree-checkbox-disabled { background-position: 0 -56px; } + .rc-tree .rc-tree-treenode span.rc-tree-checkbox.rc-tree-checkbox-checked.rc-tree-checkbox-disabled { background-position: -14px -56px; } + .rc-tree .rc-tree-treenode span.rc-tree-checkbox.rc-tree-checkbox-indeterminate.rc-tree-checkbox-disabled { position: relative; background: #ccc; border-radius: 3px; } + .rc-tree .rc-tree-treenode span.rc-tree-checkbox.rc-tree-checkbox-indeterminate.rc-tree-checkbox-disabled::after { position: absolute; top: 5px; @@ -158,67 +185,86 @@ transform: scale(1); content: ' '; } + .rc-tree:not(.rc-tree-show-line) .rc-tree-treenode .rc-tree-switcher-noop { background: none; } -.rc-tree.rc-tree-show-line .rc-tree-treenode:not(:last-child) > ul { + +.rc-tree.rc-tree-show-line .rc-tree-treenode:not(:last-child)>ul { background: url('data:image/gif;base64,R0lGODlhCQACAIAAAMzMzP///yH5BAEAAAEALAAAAAAJAAIAAAIEjI9pUAA7') 0 0 repeat-y; } -.rc-tree.rc-tree-show-line .rc-tree-treenode:not(:last-child) > .rc-tree-switcher-noop { + +.rc-tree.rc-tree-show-line .rc-tree-treenode:not(:last-child)>.rc-tree-switcher-noop { background-position: -56px -18px; } -.rc-tree.rc-tree-show-line .rc-tree-treenode:last-child > .rc-tree-switcher-noop { + +.rc-tree.rc-tree-show-line .rc-tree-treenode:last-child>.rc-tree-switcher-noop { background-position: -56px -36px; } + .rc-tree-child-tree { display: none; } + .rc-tree-child-tree-open { display: block; } -.rc-tree-treenode-disabled > span:not(.rc-tree-switcher), .rc-tree-treenode-disabled > a, .rc-tree-treenode-disabled > a span { + +.rc-tree-treenode-disabled>span:not(.rc-tree-switcher), +.rc-tree-treenode-disabled>a, +.rc-tree-treenode-disabled>a span { color: #767676; cursor: not-allowed; } + .rc-tree-treenode-active { - background: rgba(0,0,0,0.1); + background: rgba(0, 0, 0, 0.1); } + .rc-tree-node-selected { background-color: rgba(230, 250, 255, 1) !important; box-shadow: 0 0 0 1px rgba(61, 216, 254, 1) !important; opacity: 1 !important; } + .rc-tree-icon__open { margin-right: 2px; vertical-align: top; background-position: -110px -16px; } + .rc-tree-icon__close { margin-right: 2px; vertical-align: top; background-position: -110px 0; } + .rc-tree-icon__docu { margin-right: 2px; vertical-align: top; background-position: -110px -32px; } + .rc-tree-icon__customize { margin-right: 2px; vertical-align: top; } + .rc-tree-title { display: inline-block; } + .rc-tree-indent { display: inline-block; height: 0; vertical-align: bottom; } + .rc-tree-indent-unit { display: inline-block; width: 16px; } + .rc-tree-draggable-icon { display: inline-flex; justify-content: center; @@ -229,6 +275,7 @@ /* visibility: hidden; */ display: none !important; } + .rc-tree-node-content-wrapper { margin-left: 2px !important; padding-left: 5px !important; diff --git a/src/components/FileTree/FileTree.tsx b/src/components/FileTree/FileTree.tsx index 0c34a4ae..1dd4ded9 100644 --- a/src/components/FileTree/FileTree.tsx +++ b/src/components/FileTree/FileTree.tsx @@ -1,63 +1,102 @@ import RcTree from "rc-tree"; -import { DataNode, Key } from "rc-tree/lib/interface"; -import React, { useEffect, useState } from "react"; +import { Key } from "rc-tree/lib/interface"; +import React, { useEffect, useLayoutEffect, useState } from "react"; import { Element } from "react-scroll"; +import scrollIntoView from "scroll-into-view-if-needed"; import EllipticLoader from "../EllipticLoader"; -import { PathType, useWorkbenchDB } from "../../contexts/dbContext"; - import SwitcherIcon from "./SwitcherIcon"; +import { PathType, useWorkbenchDB } from "../../contexts/dbContext"; +import { FileDataNode } from "../../services/workbenchDB"; import "./FileTree.css"; +const FOCUS_ATTEMPT_DELAY = 500; + const FileTree = (props: React.HTMLProps) => { const { db, initialized, importedSqliteFilePath, currentPath, + startProcessing, + endProcessing, updateCurrentPath, } = useWorkbenchDB(); - const [treeData, setTreeData] = useState(null); + const [treeData, setTreeData] = useState(null); const [expandedKeys, setExpandedKeys] = useState([]); - useEffect(() => { + useLayoutEffect(() => { + if (currentPath.length === 0) return; + + // Show working indicator while the FileTree Node is being rendered and focused + startProcessing(); + setExpandedKeys((keys) => { return [...keys, currentPath.substring(0, currentPath.lastIndexOf("/"))]; }); - if (currentPath.length) { - setTimeout(() => { + + function scrollTreeNode(targetNode: HTMLElement) { + scrollIntoView(targetNode, { + scrollMode: "if-needed", + behavior: "smooth", + block: "center", + inline: "start", + }); + } + + // Timeout ensures that targetNode is accessed only after its rendered + let pendingScrollerTimeoutId: NodeJS.Timeout; + + const alreadyRenderedTargetNode = + document.getElementsByName(currentPath)[0]; + + if (alreadyRenderedTargetNode) { + // Immediate scroll possible + scrollTreeNode(alreadyRenderedTargetNode); + endProcessing(); + } else { + // Wait for target node to render + pendingScrollerTimeoutId = setTimeout(() => { const targetNode = document.getElementsByName(currentPath)[0]; + if (targetNode) { - targetNode.scrollIntoView({ - behavior: "smooth", - block: "start", - inline: "start", - }); + pendingScrollerTimeoutId = setTimeout(() => { + scrollTreeNode(targetNode); + }, FOCUS_ATTEMPT_DELAY); + + // Hide working indicator after the FileTree Node is focused + endProcessing(); } - }, 1000); + }); } + + return () => { + clearTimeout(pendingScrollerTimeoutId); + }; }, [currentPath]); useEffect(() => { - if (!initialized || !db || !importedSqliteFilePath) return; - - db.findAllJSTree() - .then((treeData) => { - // Wrap with react-scroll wrapper - function wrapNode(node: DataNode) { - const key = String(node.key); - node.title = ( - - {String(node.title)} - - ); - node.children?.forEach(wrapNode); - } - treeData.forEach(wrapNode); - setTreeData(treeData as unknown as DataNode[]); - }) + if (!initialized || !db || !importedSqliteFilePath) { + setTreeData(null); + return; + } + + db.findAllJSTree().then((treeData) => { + // Wrap with react-scroll wrapper + function wrapNode(node: FileDataNode) { + const key = String(node.key); + node.title = ( + + {String(node.title)} + + ); + node.children?.forEach(wrapNode); + } + treeData.forEach(wrapNode); + setTreeData(treeData); + }); }, [importedSqliteFilePath]); function selectPath(path: string, pathType: PathType) { @@ -99,7 +138,7 @@ const FileTree = (props: React.HTMLProps) => { selectedKeys={[currentPath]} onSelect={(keys, info) => { if (keys && keys[0]) { - selectPath(keys[0].toString(), (info.node as any).dataValues.type); + selectPath(keys[0].toString(), info.node.type as PathType); } }} motion={{ diff --git a/src/components/FileTree/SwitcherIcon.tsx b/src/components/FileTree/SwitcherIcon.tsx index 0dd0b9bf..e7a8a028 100644 --- a/src/components/FileTree/SwitcherIcon.tsx +++ b/src/components/FileTree/SwitcherIcon.tsx @@ -1,14 +1,14 @@ import React from 'react'; -import { DataNode } from 'rc-tree/lib/interface'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faFileLines } from '@fortawesome/free-regular-svg-icons'; import { faFolder, faFolderOpen } from '@fortawesome/free-solid-svg-icons'; +import { FileDataNode } from '../../services/workbenchDB'; import { FontAwesomeTreeNodeStyles } from './iconGenerators'; const SwitcherIcon = (obj: unknown) => { - const node = obj as DataNode & { expanded: boolean }; + const node = obj as FileDataNode & { expanded: boolean }; if (node.isLeaf) { // return diff --git a/src/components/Layout/Layout.tsx b/src/components/Layout/Layout.tsx index d142d947..583b24b9 100644 --- a/src/components/Layout/Layout.tsx +++ b/src/components/Layout/Layout.tsx @@ -1,4 +1,4 @@ -import React, { useEffect } from "react"; +import React from "react"; import { useLocation } from "react-router-dom"; // eslint-disable-next-line import/namespace @@ -30,10 +30,6 @@ const Layout = (props: React.PropsWithChildren) => { const showFileTree = FILE_TREE_ROUTES.find((route) => pathname.includes(route)) !== undefined; - // useEffect(() => { - // console.log("Loader status", processingQuery ? "Showing" : "Hiding"); - // }, [processingQuery]); - return (

diff --git a/src/components/LicenseEntity/LicenseEntity.tsx b/src/components/LicenseEntity/LicenseEntity.tsx index bbe0c85d..a7d36b0e 100644 --- a/src/components/LicenseEntity/LicenseEntity.tsx +++ b/src/components/LicenseEntity/LicenseEntity.tsx @@ -2,7 +2,7 @@ import ReactJson from "@microlink/react-json-view"; import { AgGridReact } from "ag-grid-react"; import React, { useEffect, useState } from "react"; -import { ActiveLicense } from "../../pages/Licenses/licenseDefinitions"; +import { ActiveLicenseEntity } from "../../pages/Licenses/licenseDefinitions"; import { DEFAULT_FILE_REGION_COL_DEF, DetectionFileRegionCols, @@ -22,10 +22,10 @@ import "./licenseEntity.css"; import "../../styles/entityCommonStyles.css"; interface LicenseDetectionEntityProps { - activeLicense: ActiveLicense | null; + activeLicenseEntity: ActiveLicenseEntity | null; } const LicenseEntity = (props: LicenseDetectionEntityProps) => { - const { activeLicense } = props; + const { activeLicenseEntity } = props; const { scanInfo } = useWorkbenchDB(); const [matchesTableColumnApi, setMatchesTableColumnApi] = useState(null); @@ -34,15 +34,17 @@ const LicenseEntity = (props: LicenseDetectionEntityProps) => { if (!scanInfo || !matchesTableColumnApi) return; matchesTableColumnApi.setColumnVisible( MATCH_COLS.matched_text.colId, - Boolean(scanInfo.optionsMap.get(ScanOptionKeys.LICENSE_TEXT)) + Boolean(scanInfo.optionsMap.get(ScanOptionKeys.LICENSE_TEXT)) || + matches[0]?.matched_text?.length > 0 || + false ); }, [scanInfo, matchesTableColumnApi]); - const license = activeLicense?.license; - const matches = activeLicense?.license?.matches; - const file_regions = activeLicense?.license?.file_regions; + const license = activeLicenseEntity?.license; + const matches = activeLicenseEntity?.license?.matches; + const file_regions = activeLicenseEntity?.license?.file_regions; - if (!activeLicense) { + if (!activeLicenseEntity) { return (
No License detection / clue selected
@@ -57,21 +59,24 @@ const LicenseEntity = (props: LicenseDetectionEntityProps) => {
- {(activeLicense.type === "detection" + {(activeLicenseEntity.type === "detection" ? [ - ["License Identifier:", activeLicense.license.identifier || "NA"], + [ + "License Identifier:", + activeLicenseEntity.license.identifier || "NA", + ], [ "Instances:", - (activeLicense.license.detection_count || 0).toString(), + (activeLicenseEntity.license.detection_count || 0).toString(), ], - ...(activeLicense.license.detection_log && - Array.isArray(activeLicense.license.detection_log) && - activeLicense.license.detection_log.length && [ + ...(activeLicenseEntity.license.detection_log && + Array.isArray(activeLicenseEntity.license.detection_log) && + activeLicenseEntity.license.detection_log.length && [ [ "Detection log ", <>
    - {activeLicense.license.detection_log.map( + {activeLicenseEntity.license.detection_log.map( (log_item, idx) => (
  • {log_item}
  • ) @@ -84,9 +89,9 @@ const LicenseEntity = (props: LicenseDetectionEntityProps) => { : [ [ "Rule Identifier:", - activeLicense.license.rule_identifier || "NA", + activeLicenseEntity.license.rule_identifier || "NA", ], - ["Score:", (activeLicense.license.score || 0).toString()], + ["Score:", (activeLicenseEntity.license.score || 0).toString()], ] ).map((entry) => ( @@ -102,12 +107,12 @@ const LicenseEntity = (props: LicenseDetectionEntityProps) => { setMatchesTableColumnApi(params.columnApi)} - className="ag-theme-alpine ag-grid-customClass matches-table" + className="ag-theme-alpine ag-grid-customClass entity-table" ensureDomOrder enableCellTextSelection pagination={false} @@ -115,26 +120,30 @@ const LicenseEntity = (props: LicenseDetectionEntityProps) => { />
    +
    File regions params.api.sizeColumnsToFit()} onGridSizeChanged={(params) => params.api.sizeColumnsToFit()} - className="ag-theme-alpine ag-grid-customClass file-regions-table" + className="ag-theme-alpine ag-grid-customClass entity-table" ensureDomOrder + suppressHorizontalScroll enableCellTextSelection pagination={false} defaultColDef={DEFAULT_FILE_REGION_COL_DEF} />
    - Raw license {activeLicense.type} - +
    + Raw license {activeLicenseEntity.type} + +
); }; diff --git a/src/components/LicenseEntity/MatchedTextContext.tsx b/src/components/LicenseEntity/MatchedTextContext.tsx index 5eec95e9..5f319983 100644 --- a/src/components/LicenseEntity/MatchedTextContext.tsx +++ b/src/components/LicenseEntity/MatchedTextContext.tsx @@ -7,15 +7,12 @@ import { BelongsIndicator, DiffComponents, diffStrings, - normalizeAndSplitDiffIntoLines, + splitDiffIntoLines, } from "../../utils/text"; import { ScanOptionKeys } from "../../utils/parsers"; +import { SYNTHETIC_RULE_PREFIXES } from "../../constants/licenseRules"; -const SYNTHETIC_RULE_PREFIXES = [ - "spdx-license-identifier", - "license-detection-unknown", - "package-manifest-unknown", -]; +import "./matchedText.css"; interface MatchedTextContextProperties { showDiffWindow: boolean; @@ -77,18 +74,18 @@ export const MatchedTextProvider = ( }); } - const ruleText = ruleRef.getDataValue("text")?.toString({}) || ""; + const ruleText = ruleRef.getDataValue("text") || ""; const matchedText = matchDetails.matched_text; const diffs = diffStrings(ruleText, matchedText); - const normalizedRuleTextLines = normalizeAndSplitDiffIntoLines( + const newRuleTextLines = splitDiffIntoLines( diffs.filter( (diff) => diff.belongsTo === BelongsIndicator.BOTH || diff.belongsTo === BelongsIndicator.ORIGINAL ) ); - const normalizedModifiedTextLines = normalizeAndSplitDiffIntoLines( + const newModifiedTextLines = splitDiffIntoLines( diffs.filter( (diff) => diff.belongsTo === BelongsIndicator.BOTH || @@ -96,11 +93,11 @@ export const MatchedTextProvider = ( ) ); - setRuleDiffLines(normalizedRuleTextLines); - setModifiedDiffLines(normalizedModifiedTextLines); + setRuleDiffLines(newRuleTextLines); + setModifiedDiffLines(newModifiedTextLines); setRuleDetails({ processing: false, - ruleText: ruleRef.getDataValue("text").toString({}), + ruleText, }); } ); @@ -108,7 +105,7 @@ export const MatchedTextProvider = ( function closeDiffWindow() { setShowDiffWindow(false); - // Prevents showing fallbacks inside modal, for the transition period + // Hiding diff winodw first, ensures fallbacks inside modal are hidden during the transition setTimeout(() => { setRuleDiffLines(null); setModifiedDiffLines(null); @@ -122,7 +119,7 @@ export const MatchedTextProvider = ( ruleText: null, processing: false, }); - }, 200); + }, 100); } const isSyntheticRule = diff --git a/src/components/LicenseEntity/MatchesTableCols.ts b/src/components/LicenseEntity/MatchesTableCols.ts index bda4761e..5192922b 100644 --- a/src/components/LicenseEntity/MatchesTableCols.ts +++ b/src/components/LicenseEntity/MatchesTableCols.ts @@ -87,7 +87,6 @@ export const MATCH_COLS: MatchColumns = { width: 250, }, }; - export const LicenseDetectionMatchCols: ColDef[] = [ MATCH_COLS.license_expression, MATCH_COLS.score, diff --git a/src/components/LicenseEntity/licenseEntity.css b/src/components/LicenseEntity/licenseEntity.css index 10ea09b3..db539c06 100644 --- a/src/components/LicenseEntity/licenseEntity.css +++ b/src/components/LicenseEntity/licenseEntity.css @@ -15,73 +15,3 @@ margin-right: 5px; } -.matches-table, -.file-regions-table { - max-height: 30vh; -} - -.matched-text-diff-modal { - overflow: auto; - max-height: calc(100vh - 120px); -} - -.matched-text-diff-modal .row { - padding: 5px; -} - -.matched-text-diff-modal .rule-text-section { - background-color: #f6feff; - padding: 0; -} - -.matched-text-diff-modal .matched-text-section { - background-color: #f9fffc; - padding: 0; -} - -.matched-text-diff-modal .diff-table { - table-layout: fixed; - width: 100%; -} - -.matched-text-diff-modal .diff-table th { - padding: 15px; - padding-left: 10px; - font-weight: 500; - background-color: #fafbfc; -} - -.matched-text-diff-modal .diff-line { - display: table-row-group; - margin: 0; - vertical-align: top; - white-space: pre; - overflow-wrap: anywhere; -} - -.matched-text-diff-modal .line-number { - margin-right: 15px; - padding-left: 10px; - padding-right: 10px; - opacity: 0.9; -} - -.matched-text-diff-modal .line-content { - padding-left: 10px; - padding-right: 10px; -} - -.matched-text-diff-modal .diff-line .line-content .line-text { - margin: 0; - display: inline-block; - white-space: pre-wrap; - line-height: 20px; -} - -.matched-text-diff-modal .diff-line .line-content .removed-snippet { - background-color: #fdb8c0; -} - -.matched-text-diff-modal .diff-line .line-content .added-snippet { - background-color: #acf2bd; -} \ No newline at end of file diff --git a/src/components/LicenseEntity/matchedText.css b/src/components/LicenseEntity/matchedText.css new file mode 100644 index 00000000..338a6a4a --- /dev/null +++ b/src/components/LicenseEntity/matchedText.css @@ -0,0 +1,62 @@ +.matched-text-diff-modal .row { + padding: 5px; + max-height: calc(100vh - 20vh); + overflow: auto; +} + +.matched-text-diff-modal .rule-text-section { + background-color: #f6feff; + padding: 0; +} + +.matched-text-diff-modal .matched-text-section { + background-color: #f9fffc; + padding: 0; +} + +.matched-text-diff-modal .diff-table { + table-layout: fixed; + width: 100%; +} + +.matched-text-diff-modal .diff-table th { + padding: 15px; + padding-left: 10px; + font-weight: 500; + background-color: #fafbfc; +} + +.matched-text-diff-modal .diff-line { + display: table-row-group; + margin: 0; + vertical-align: top; + white-space: pre; + overflow-wrap: anywhere; +} + +.matched-text-diff-modal .line-number { + margin-right: 15px; + padding-left: 10px; + padding-right: 10px; + opacity: 0.9; +} + +.matched-text-diff-modal .line-content { + padding-left: 10px; + padding-right: 10px; +} + +.matched-text-diff-modal .diff-line .line-content .line-text { + margin: 0; + display: inline-block; + white-space: pre-wrap; + line-height: 20px; +} + +.matched-text-diff-modal .diff-line .line-content .removed-snippet { + background-color: #fdb8c0; +} + +.matched-text-diff-modal .diff-line .line-content .added-snippet { + background-color: #acf2bd; +} \ No newline at end of file diff --git a/src/components/PackagesEntityDetails/DependenciesTableCols.ts.ts b/src/components/PackagesEntityDetails/DependenciesTableCols.ts.ts index d6c58f43..00dc8e25 100644 --- a/src/components/PackagesEntityDetails/DependenciesTableCols.ts.ts +++ b/src/components/PackagesEntityDetails/DependenciesTableCols.ts.ts @@ -29,36 +29,36 @@ export const DependenciesTableCols: DepsColDef[] = [ { headerName: "Scope", field: "scope", - width: 130, + width: 160, }, { headerName: "Resolved", field: "is_resolved", cellRenderer: TickRenderer, - maxWidth: 95, + maxWidth: 92, }, { headerName: "Runtime", field: "is_runtime", cellRenderer: TickRenderer, - maxWidth: 95, + maxWidth: 92, }, { headerName: "Optional", field: "is_optional", cellRenderer: TickRenderer, - maxWidth: 95, + maxWidth: 92, }, { headerName: "Data source ID", field: "datasource_id", - width: 130, + width: 165, }, { headerName: "Data file", field: "datafile_path", cellRenderer: FilePathRenderer, - width: 200, + width: 400, }, { headerName: "Extracted requirement", diff --git a/src/components/PackagesEntityDetails/DependencyEntity.tsx b/src/components/PackagesEntityDetails/DependencyEntity.tsx index d2c52b2a..bf055e98 100644 --- a/src/components/PackagesEntityDetails/DependencyEntity.tsx +++ b/src/components/PackagesEntityDetails/DependencyEntity.tsx @@ -97,14 +97,15 @@ const DependencyEntity = (props: DependencyEntityProps) => { />
)} -
- Raw dependency: - +
+ Raw dependency: + +
); }; diff --git a/src/components/PackagesEntityDetails/PackageEntity.tsx b/src/components/PackagesEntityDetails/PackageEntity.tsx index 3a01b53f..2f83ac89 100644 --- a/src/components/PackagesEntityDetails/PackageEntity.tsx +++ b/src/components/PackagesEntityDetails/PackageEntity.tsx @@ -18,11 +18,11 @@ import "../../styles/entityCommonStyles.css"; import "./packageEntity.css"; interface PackageEntityProps { - package: PackageDetails; + activePackage: PackageDetails; goToDependency: (dependency: DependencyDetails) => void; } const PackageEntity = (props: PackageEntityProps) => { - const { package: activePackage } = props; + const { activePackage } = props; const { goToFileInTableView } = useWorkbenchDB(); if (!activePackage) { @@ -122,24 +122,26 @@ const PackageEntity = (props: PackageEntityProps) => { ? "1 Dependency:" : `${activePackage.dependencies.length} Dependencies:`} -
- -
- Raw package: - + {activePackage.dependencies.length > 0 && ( + + )} +
+ Raw package: + +
); }; diff --git a/src/components/PackagesEntityDetails/packageEntity.css b/src/components/PackagesEntityDetails/packageEntity.css index e863919a..26a4230f 100644 --- a/src/components/PackagesEntityDetails/packageEntity.css +++ b/src/components/PackagesEntityDetails/packageEntity.css @@ -4,4 +4,5 @@ .dependencies-table { max-height: 40vh; + margin-bottom: 22px; } \ No newline at end of file diff --git a/src/components/ProgressLoader/ProgressLoader.tsx b/src/components/ProgressLoader/ProgressLoader.tsx index 5bd7c1f2..abaf00ca 100644 --- a/src/components/ProgressLoader/ProgressLoader.tsx +++ b/src/components/ProgressLoader/ProgressLoader.tsx @@ -19,7 +19,7 @@ const ProgressLoader = (props: ProgressLoaderProps) => { visible={true} ariaLabel="oval-loading" /> -

{props.progress} %

+

Processing scan - {props.progress} %

); diff --git a/src/constants/IpcConnection.ts b/src/constants/IpcConnection.ts index c00b90ab..21309b48 100644 --- a/src/constants/IpcConnection.ts +++ b/src/constants/IpcConnection.ts @@ -5,33 +5,35 @@ export interface ErrorInfo { } export const OPEN_DIALOG_CHANNEL = { - JSON: 'open-json-file', - SQLITE_PATH_FOR_JSON: 'choose-sqlite-path-for-json-file', - SQLITE: 'open-sqlite-file', - SAVE_SQLITE: 'save-sqlite-file', -} + JSON: "open-json-file", + SQLITE_PATH_FOR_JSON: "choose-sqlite-path-for-json-file", + SQLITE: "open-sqlite-file", + SAVE_SQLITE: "save-sqlite-file", +}; export const IMPORT_REPLY_CHANNEL = { - JSON: 'import-json-reply', - SQLITE: 'import-sqlite-reply', -} + JSON: "import-json-reply", + SQLITE: "import-sqlite-reply", +}; export const SAVE_REPLY_CHANNEL = { - SQLITE: 'save-sqlite-reply', -} + SQLITE: "save-sqlite-reply", +}; export const UTIL_CHANNEL = { - SET_CURRENT_FILE_TITLE: 'set-current-file-title', -} + SET_CURRENT_FILE_TITLE: "set-current-file-title", + RESET_FILE_TITLE: "reset-current-file-title", + CLOSE_FILE: "close-file", +}; -export const NAVIGATION_CHANNEL = 'NAVIGATE_TO'; +export const NAVIGATION_CHANNEL = "NAVIGATE_TO"; export type NAVIGATION_CHANNEL_MESSAGE = string; export const GENERAL_ACTIONS = { - ZOOM_IN: 'zoom_in', - ZOOM_OUT: 'zoom_out', - ZOOM_RESET: 'zoom_reset', -} + ZOOM_IN: "zoom_in", + ZOOM_OUT: "zoom_out", + ZOOM_RESET: "zoom_reset", +}; export interface SQLITE_PATH_FOR_JSON_REQUEST_FORMAT { jsonFilePath: string; @@ -45,4 +47,4 @@ export interface SQLITE_IMPORT_REPLY_FORMAT { } export interface SQLITE_SAVE_REPLY_FORMAT { sqliteFilePath: string; -} \ No newline at end of file +} diff --git a/src/constants/general.ts b/src/constants/general.ts new file mode 100644 index 00000000..7594aa46 --- /dev/null +++ b/src/constants/general.ts @@ -0,0 +1,5 @@ +import packageJson from "../../package.json"; + +export const WORKBENCH_TITLE = "Scancode workbench"; + +export const WORKBENCH_VERSION = packageJson.version; \ No newline at end of file diff --git a/src/constants/licenseRules.ts b/src/constants/licenseRules.ts new file mode 100644 index 00000000..c4bb6495 --- /dev/null +++ b/src/constants/licenseRules.ts @@ -0,0 +1,5 @@ +export const SYNTHETIC_RULE_PREFIXES = [ + "spdx-license-identifier", + "license-detection-unknown", + "package-manifest-unknown", +]; \ No newline at end of file diff --git a/src/contexts/dbContext.tsx b/src/contexts/dbContext.tsx index bbecb90a..935f58d4 100644 --- a/src/contexts/dbContext.tsx +++ b/src/contexts/dbContext.tsx @@ -22,7 +22,7 @@ import { import { DEFAULT_ROUTE_ON_IMPORT, ROUTES } from "../constants/routes"; import { AddEntry, GetHistory, RemoveEntry } from "../services/historyStore"; import { WorkbenchDB } from "../services/workbenchDB"; -import { isSchemaChanged } from "../utils/checks"; +import { isSqliteSchemaOutdated } from "../utils/checks"; import { ScanInfo, parseScanInfo } from "../utils/parsers"; const { version: workbenchVersion } = packageJson; @@ -42,6 +42,7 @@ interface WorkbenchContextProperties extends BasicValueState { processingQuery: boolean; startImport: () => void; abortImport: () => void; + closeFile: () => void; startProcessing: () => void; endProcessing: () => void; sqliteParser: (sqliteFilePath: string, preventNavigation?: boolean) => void; @@ -71,6 +72,7 @@ export const defaultWorkbenchContextValue: WorkbenchContextProperties = { updateLoadingStatus: () => null, startImport: () => null, abortImport: () => null, + closeFile: () => null, startProcessing: () => null, endProcessing: () => null, updateCurrentPath: () => null, @@ -94,7 +96,7 @@ export const WorkbenchDBProvider = ( importedSqliteFilePath: null, scanInfo: null, }); - const [currentPath, setCurrentPath] = useState(""); + const [currentPath, setCurrentPath] = useState(""); const [currentPathType, setCurrentPathType] = useState("directory"); function updateCurrentPath(path: string, pathType: PathType) { @@ -113,6 +115,7 @@ export const WorkbenchDBProvider = ( const startImport = () => { updateLoadingStatus(0); + setProcessingQuery(false); setValue({ db: null, initialized: false, @@ -123,6 +126,19 @@ export const WorkbenchDBProvider = ( const abortImport = () => updateLoadingStatus(null); + const closeFile = () => { + updateLoadingStatus(null); + setProcessingQuery(false); + setValue({ + db: null, + initialized: false, + importedSqliteFilePath: null, + scanInfo: null, + }); + navigate(ROUTES.HOME); + ipcRenderer.send(UTIL_CHANNEL.RESET_FILE_TITLE); + }; + const updateWorkbenchDB = async (db: WorkbenchDB, sqliteFilePath: string) => { updateLoadingStatus(100); setValue({ @@ -136,22 +152,20 @@ export const WorkbenchDBProvider = ( function sqliteParser(sqliteFilePath: string, preventNavigation?: boolean) { startImport(); - // Create a new database when importing a sqlite file + // Create connection to existing database when importing a sqlite file const newWorkbenchDB = new WorkbenchDB({ dbName: "workbench_db", - dbStorage: sqliteFilePath, + dbStoragePath: sqliteFilePath, }); updateLoadingStatus(25); // Check that that the database schema matches current schema. - newWorkbenchDB.sync - .then((db) => db.Header.findAll()) - .then((headers) => { - const infoHeader = headers[0]; - + newWorkbenchDB + .getScanInfo() + .then((infoHeader) => { // Check that the database has the correct header information. - if (!headers || headers.length === 0 || !infoHeader) { + if (!infoHeader) { const errTitle = "Invalid SQLite file"; const errMessage = "Invalid SQLite file: " + @@ -176,11 +190,8 @@ export const WorkbenchDBProvider = ( updateLoadingStatus(50); - const dbVersion = infoHeader - .getDataValue("workbench_version") - .toString({}); - - if (!dbVersion || isSchemaChanged(dbVersion, workbenchVersion)) { + const dbVersion = infoHeader.getDataValue("workbench_version"); + if (!dbVersion || isSqliteSchemaOutdated(dbVersion, workbenchVersion)) { const errTitle = "Old SQLite schema found"; const errMessage = "Old SQLite schema found at file: " + @@ -225,10 +236,10 @@ export const WorkbenchDBProvider = ( await updateWorkbenchDB(newWorkbenchDB, sqliteFilePath); - if (defaultPath){ + if (defaultPath) { updateCurrentPath( defaultPath, - root.getDataValue("type").toString({}) as PathType + root.getDataValue("type") as PathType ); } @@ -288,31 +299,18 @@ export const WorkbenchDBProvider = ( startImport(); - // Overwrite existing sqlite file - if (electronFs.existsSync(sqliteFilePath)) { - electronFs.unlink(sqliteFilePath, (err: Error) => { - if (err) { - throw err; - } - console.info(`Deleted ${sqliteFilePath}`); - }); - } - - // Create a new database when importing a json file + // Create a new database when importing a json file (Delete any existing data in the sqlite file) const newWorkbenchDB = new WorkbenchDB({ - dbName: "demo_schema", - dbStorage: sqliteFilePath, + dbName: "workbench_db", + dbStoragePath: sqliteFilePath, + deleteExisting: true, }); newWorkbenchDB.sync .then(() => - newWorkbenchDB.addFromJson( - jsonFilePath, - workbenchVersion, - (progress: number) => { - updateLoadingStatus(progress); - } - ) + newWorkbenchDB.addFromJson(jsonFilePath, (progress: number) => { + updateLoadingStatus(progress); + }) ) .then(() => { console.log("JSON parsing completed"); @@ -336,10 +334,10 @@ export const WorkbenchDBProvider = ( await updateWorkbenchDB(newWorkbenchDB, sqliteFilePath); - if (defaultPath){ + if (defaultPath) { updateCurrentPath( defaultPath, - root.getDataValue("type").toString({}) as PathType + root.getDataValue("type") as PathType ); } @@ -458,6 +456,7 @@ export const WorkbenchDBProvider = ( } } ); + ipcRenderer.on(UTIL_CHANNEL.CLOSE_FILE, closeFile); // Remove all listeners on window unmount return () => { @@ -479,6 +478,7 @@ export const WorkbenchDBProvider = ( importJsonFile, startImport, abortImport, + closeFile, startProcessing: () => setProcessingQuery(true), endProcessing: () => setProcessingQuery(false), updateCurrentPath, diff --git a/src/contexts/stateContext.tsx b/src/contexts/stateContext.tsx index 21823718..a19a3db1 100644 --- a/src/contexts/stateContext.tsx +++ b/src/contexts/stateContext.tsx @@ -54,8 +54,6 @@ export const WorkbenchStateProvider = ( ) => { const newColumnState = columnApi.getColumnState(); - // console.log("Update state request ---"); - // Need to perform this in all cases, for width to be updated const newColumnDefs = getColumnDefsFromState(newColumnState); diff --git a/src/main.ts b/src/main.ts index 6faffd2d..73c03d05 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,8 +1,16 @@ -import sqlite3 from 'sqlite3' -import { app, BrowserWindow, nativeImage, ipcMain, Menu, shell } from 'electron'; +import sqlite3 from "sqlite3"; +import { + app, + BrowserWindow, + nativeImage, + ipcMain, + Menu, + shell, +} from "electron"; -import getTemplate from './mainMenu'; -import { setUpGlobalIpcListeners, setUpWindowListeners } from './mainActions'; +import getTemplate from "./mainMenu"; +import { setUpGlobalIpcListeners, setUpWindowListeners } from "./mainActions"; +import { WORKBENCH_TITLE } from "./constants/general"; // This allows TypeScript to pick up the magic constant that's auto-generated by Forge's Webpack // plugin that tells the Electron app where to look for the Webpack-bundled app code (depending on @@ -12,10 +20,8 @@ declare const MAIN_WINDOW_WEBPACK_ENTRY: string; const isDev = !app.isPackaged; -console.log("Using Sqlite3 ", sqlite3.VERSION); - // Handle creating/removing shortcuts on Windows when installing/uninstalling. -if (require('electron-squirrel-startup')) { +if (require("electron-squirrel-startup")) { // eslint-disable-line global-require app.quit(); } @@ -45,7 +51,7 @@ export const createWindow = (): void => { // Create the browser window. const mainWindow = new BrowserWindow({ - title: "Scancode workbench", + title: WORKBENCH_TITLE, width: 1200, height: 800, x, @@ -59,21 +65,24 @@ export const createWindow = (): void => { // nodeIntegrationInSubFrames: true, // preload: path.join(__dirname, 'index.js'), // enableRemoteModule: true, - } - }); + }, + }); Menu.setApplicationMenu(Menu.buildFromTemplate(getTemplate())); - console.log("\n" + isDev ? "Dev mode" : "Prod mode"); + console.log( + "\n" + isDev ? "Dev mode" : "Prod mode", + `- Sqlite version: ${sqlite3.VERSION}` + ); // console.log("Preload URL: ", MAIN_WINDOW_PRELOAD_WEBPACK_ENTRY); console.log("Load URL: ", MAIN_WINDOW_WEBPACK_ENTRY); - + // and load the index.html of the app. mainWindow.loadURL(MAIN_WINDOW_WEBPACK_ENTRY); // open all URLs in default browser window // We do this only in production, to prevent hot reloads getting opened in browser - if(!isDev){ - mainWindow.webContents.on('will-navigate', (event, url) => { + if (!isDev) { + mainWindow.webContents.on("will-navigate", (event, url) => { event.preventDefault(); shell.openExternal(url); }); @@ -86,10 +95,10 @@ setUpGlobalIpcListeners(); // This method will be called when Electron has finished // initialization and is ready to create browser windows. // Some APIs can only be used after this event occurs. -app.on('ready', () => { +app.on("ready", () => { createWindow(); - if(app.dock){ - app.dock.setIcon(APP_ICON_NATIVE_IMAGE) + if (app.dock) { + app.dock.setIcon(APP_ICON_NATIVE_IMAGE); } }); @@ -97,17 +106,17 @@ app.on('ready', () => { // Quit when all windows are closed, except on macOS. There, it's common // for applications and their menu bar to stay active until the user quits // explicitly with Cmd + Q. -app.on('window-all-closed', () => { - if (process.platform !== 'darwin') { +app.on("window-all-closed", () => { + if (process.platform !== "darwin") { app.quit(); ipcMain.removeAllListeners(); } }); -app.on('activate', () => { +app.on("activate", () => { // On MacOS, it's common to re-create a window in the app when the // dock icon is clicked and there are no other windows open. if (BrowserWindow.getAllWindows().length === 0) { createWindow(); } -}); \ No newline at end of file +}); diff --git a/src/mainActions.ts b/src/mainActions.ts index feaf473a..75ff4a2c 100644 --- a/src/mainActions.ts +++ b/src/mainActions.ts @@ -1,4 +1,3 @@ -import * as electronOs from "os"; import { ipcMain, dialog, BrowserWindow } from "electron"; import { @@ -13,13 +12,14 @@ import { SQLITE_PATH_FOR_JSON_REQUEST_FORMAT, UTIL_CHANNEL, } from "./constants/IpcConnection"; +import { figureOutDefaultSqliteFilePath } from "./utils/paths"; +import { WORKBENCH_TITLE } from "./constants/general"; export function chooseSqlitePathForJsonImport( mainWindow: BrowserWindow, jsonFilePath: string ) { - - const defaultSqlitePath = jsonFilePath.substring(0, jsonFilePath.lastIndexOf('.')) + '.sqlite'; + const defaultSqlitePath = figureOutDefaultSqliteFilePath(jsonFilePath); // Immediately ask for a path to create & save the SQLite database dialog @@ -114,6 +114,10 @@ export function saveSqliteFile(mainWindow: BrowserWindow) { }); } +export function closeFile(mainWindow: BrowserWindow) { + mainWindow.webContents.send(UTIL_CHANNEL.CLOSE_FILE); +} + export function showErrorDialog(err: ErrorInfo) { console.log("Showing error to user:", err); dialog.showErrorBox(err.title, err.message); @@ -124,7 +128,7 @@ export function setCurrentFileTitle(mainWindow: BrowserWindow, title: string) { console.log("Main window not found:", title, mainWindow); return; } - const titleString = "Scancode Workbench" + (title ? ` - ${title}` : ""); + const titleString = WORKBENCH_TITLE + (title ? ` - ${title}` : ""); mainWindow.setTitle(titleString); } @@ -149,6 +153,9 @@ export function setUpGlobalIpcListeners() { ipcMain.on(UTIL_CHANNEL.SET_CURRENT_FILE_TITLE, (e, title: string) => setCurrentFileTitle(getSenderWindow(e), title) ); + ipcMain.on(UTIL_CHANNEL.RESET_FILE_TITLE, (e) => + setCurrentFileTitle(getSenderWindow(e), "") + ); ipcMain.on(OPEN_ERROR_DIALOG_CHANNEL, (_, err: ErrorInfo) => showErrorDialog(err) ); @@ -156,4 +163,4 @@ export function setUpGlobalIpcListeners() { export function setUpWindowListeners(mainWindow: BrowserWindow) { mainWindow.on("ready-to-show", () => setCurrentFileTitle(mainWindow, "")); -} \ No newline at end of file +} diff --git a/src/mainMenu.ts b/src/mainMenu.ts index b4df112d..f06c1348 100644 --- a/src/mainMenu.ts +++ b/src/mainMenu.ts @@ -1,9 +1,14 @@ import { GENERAL_ACTIONS, NAVIGATION_CHANNEL } from "./constants/IpcConnection"; -import packageJson from "../package.json"; import { app, BrowserWindow, MenuItem, shell } from "electron"; -import { importJsonFile, openSqliteFile, saveSqliteFile } from "./mainActions"; +import { + closeFile, + importJsonFile, + openSqliteFile, + saveSqliteFile, +} from "./mainActions"; import { ROUTES } from "./constants/routes"; import { createWindow } from "./main"; +import { WORKBENCH_VERSION } from "./constants/general"; /** Returns a 'lambda' that sends the event to the renderer process. */ export function sendNavEventToRenderer(route: string) { @@ -46,6 +51,12 @@ function getTemplate() { click: (_: MenuItem, currentWindow: BrowserWindow) => importJsonFile(currentWindow), }, + { + label: "Close File", + // accelerator: "CmdOrCtrl+", + click: (_: MenuItem, currentWindow: BrowserWindow) => + closeFile(currentWindow), + }, // @TODO-discuss This is duplicated in App's menu tab, is it necessary under file tab also ?? // ...( // isMac ? [ @@ -123,11 +134,11 @@ function getTemplate() { type: "separator", }, { - label: "Licenses Explorer", + label: "License Explorer", click: sendNavEventToRenderer(ROUTES.LICENSES), }, { - label: "Packages Explorer", + label: "Package Explorer", click: sendNavEventToRenderer(ROUTES.PACKAGES), }, { @@ -218,7 +229,7 @@ function getTemplate() { role: "help", submenu: [ { - label: `ScanCode Workbench Version ${packageJson.version}`, + label: `ScanCode Workbench Version ${WORKBENCH_VERSION}`, enabled: false, }, { @@ -272,7 +283,7 @@ function getTemplate() { click: sendNavEventToRenderer(ROUTES.ABOUT), }, { - label: `Version ${packageJson.version}`, + label: `Version ${WORKBENCH_VERSION}`, enabled: false, }, { diff --git a/src/pages/About/About.tsx b/src/pages/About/About.tsx index a15caa99..37988e44 100644 --- a/src/pages/About/About.tsx +++ b/src/pages/About/About.tsx @@ -1,6 +1,6 @@ import React from "react"; -import PackageJson from "../../../package.json"; import CoreLink from "../../components/CoreLink/CoreLink"; +import { WORKBENCH_VERSION } from "../../constants/general"; import "./about.css"; @@ -9,7 +9,7 @@ const About = () => {

About ScanCode Workbench - v{PackageJson.version} + v{WORKBENCH_VERSION}


Overview

diff --git a/src/pages/ChartView/ChartView.tsx b/src/pages/ChartView/ChartView.tsx index 2b92b62a..ca064418 100644 --- a/src/pages/ChartView/ChartView.tsx +++ b/src/pages/ChartView/ChartView.tsx @@ -20,7 +20,10 @@ import { import { BAR_CHART_COLUMN_GROUPS } from "../../constants/barChartColumns"; import { useWorkbenchDB } from "../../contexts/dbContext"; -import { formatBarchartData, getAttributeValues } from "../../utils/bar"; +import { + formatBarchartData, + getValidatedAttributeValues, +} from "../../utils/bar"; import { FlatFileAttributes } from "../../services/models/flatFile"; import { trimStringWithEllipsis } from "../../utils/text"; @@ -79,12 +82,11 @@ const ChartView = () => { Sequelize.fn("TRIM", Sequelize.col(selectedAttribute)), selectedAttribute, ] as FindAttributeOptions, - // attributes: [Sequelize.fn('TRIM', Sequelize.col(selectedAttribute)), selectedAttribute], }; db.sync .then((db) => db.FlatFile.findAll(query)) - .then((values) => getAttributeValues(values, selectedAttribute)) + .then((values) => getValidatedAttributeValues(values, selectedAttribute)) .then((values) => { const { noValueEntriesCount, formattedChartData } = formatBarchartData(values); diff --git a/src/pages/CopyrightInfoDash/CopyrightInfoDash.tsx b/src/pages/CopyrightInfoDash/CopyrightInfoDash.tsx index 1ad289eb..c510052f 100644 --- a/src/pages/CopyrightInfoDash/CopyrightInfoDash.tsx +++ b/src/pages/CopyrightInfoDash/CopyrightInfoDash.tsx @@ -2,7 +2,7 @@ import { Op } from "sequelize"; import { Row, Col, Card } from "react-bootstrap"; import React, { useEffect, useState } from "react"; -import { FormattedEntry, formatChartData } from "../../utils/pie"; +import { FormattedEntry, formatPieChartData } from "../../utils/pie"; import { useWorkbenchDB } from "../../contexts/dbContext"; import PieChart from "../../components/PieChart/PieChart"; import EllipticLoader from "../../components/EllipticLoader"; @@ -64,28 +64,28 @@ const CopyrightInfoDash = () => { .then((copyrights) => { // Prepare chart for copyright holders const copyrightHolders = copyrights.flatMap((copyright) => - JSON.parse(copyright.getDataValue("holders")?.toString({}) || "[]") + JSON.parse(copyright.getDataValue("holders") || "[]") ); const { chartData: copyrightHoldersChartData } = - formatChartData(copyrightHolders); + formatPieChartData(copyrightHolders); setCopyrightHoldersData(copyrightHoldersChartData); const totalUniqueCopyrightHolders = new Set(copyrightHolders).size; // Prepare chart for copyright holders const copyrightNotices = copyrights.flatMap((copyright) => - JSON.parse(copyright.getDataValue("statements")?.toString({}) || "[]") + JSON.parse(copyright.getDataValue("statements") || "[]") ); const { chartData: copyrightNoticesChartData } = - formatChartData(copyrightNotices); + formatPieChartData(copyrightNotices); setCopyrightNoticesData(copyrightNoticesChartData); const totalUniqueCopyrightNotices = new Set(copyrightNotices).size; // Prepare chart for copyright authors const copyrightAuthors = copyrights.flatMap((copyright) => - JSON.parse(copyright.getDataValue("authors")?.toString({}) || "[]") + JSON.parse(copyright.getDataValue("authors") || "[]") ); const { chartData: copyrightAuthorsChartData } = - formatChartData(copyrightAuthors); + formatPieChartData(copyrightAuthors); setCopyrightAuthorsData(copyrightAuthorsChartData); const totalUniqueCopyrightAuthors = new Set(copyrightAuthors).size; diff --git a/src/pages/DependencyInfoDash/DependencyInfoDash.tsx b/src/pages/DependencyInfoDash/DependencyInfoDash.tsx index ca0be0e9..28968c32 100644 --- a/src/pages/DependencyInfoDash/DependencyInfoDash.tsx +++ b/src/pages/DependencyInfoDash/DependencyInfoDash.tsx @@ -4,8 +4,8 @@ import React, { useEffect, useState } from "react"; import { FormattedEntry, - formatChartData, - limitChartData, + formatPieChartData, + limitPieChartData, } from "../../utils/pie"; import { useWorkbenchDB } from "../../contexts/dbContext"; import PieChart from "../../components/PieChart/PieChart"; @@ -60,12 +60,12 @@ const DependencyInfoDash = () => { >(); packagesData.forEach((packageData) => { // Package data having PURL as null are invalid & will have no dependency - // Hence, don't consider such package data (will be fixed in further toolkit version) - if (!packageData.getDataValue("purl")?.toString({})) return; + // Hence, don't consider such package data (will be fixed in further scancode-toolkit version) + if (!packageData.getDataValue("purl")) return; - const packageDataType = packageData.getDataValue("type")?.toString({}); + const packageDataType = packageData.getDataValue("type"); const deps: DependencyDetails[] = JSON.parse( - packageData.getDataValue("dependencies")?.toString({}) || "[]" + packageData.getDataValue("dependencies") || "[]" ); if (!packageTypeToSummaryMapping.has(packageDataType)) { @@ -94,17 +94,20 @@ const DependencyInfoDash = () => { }, 0); }); - return Array.from(packageTypeToSummaryMapping.values()).sort( - (packageTypeSummary1, packageTypeSummary2) => - packageTypeSummary2.packageTypeDetails.total - - packageTypeSummary1.packageTypeDetails.total - ); + return Array.from(packageTypeToSummaryMapping.values()) + .filter( + (packageTypeSummary) => packageTypeSummary.packageTypeDetails.total > 0 + ) + .sort( + (packageTypeSummary1, packageTypeSummary2) => + packageTypeSummary2.packageTypeDetails.total - + packageTypeSummary1.packageTypeDetails.total + ); } useEffect(() => { if (!initialized || !db || !currentPath) return; - // db.sync.then((db) => {}); db.sync .then((db) => db.Dependencies.findAll({ @@ -141,7 +144,7 @@ const DependencyInfoDash = () => { dependency.getDataValue("is_runtime") ? "Runtime" : "Not runtime" ); const { chartData: runtimeDependenciesChartData } = - formatChartData(runtimeDependencies); + formatPieChartData(runtimeDependencies); setRuntimeDependenciesData(runtimeDependenciesChartData); // Prepare chart for resolved dependencies @@ -149,7 +152,7 @@ const DependencyInfoDash = () => { dependency.getDataValue("is_resolved") ? "Resolved" : "Unresolved" ); const { chartData: resolvedDependenciesChartData } = - formatChartData(resolvedDependencies); + formatPieChartData(resolvedDependencies); setResolvedDependenciesData(resolvedDependenciesChartData); // Prepare chart for optional dependencies @@ -157,7 +160,7 @@ const DependencyInfoDash = () => { dependency.getDataValue("is_optional") ? "Optional" : "Required" ); const { chartData: optionalDependenciesChartData } = - formatChartData(optionalDependencies); + formatPieChartData(optionalDependencies); setOptionalDependenciesData(optionalDependenciesChartData); // Prepare chart for dependencies' data source IDs @@ -165,7 +168,7 @@ const DependencyInfoDash = () => { dependency.getDataValue("datasource_id") ); const { chartData: dataSourceIDsChartData } = - formatChartData(dataSourceIDs); + formatPieChartData(dataSourceIDs); setDataSourceIDsData(dataSourceIDsChartData); }); @@ -189,7 +192,7 @@ const DependencyInfoDash = () => { const depsSummaryData = summarisePackageDataDeps(packagesData); setPackageTypeDependenciesData( - limitChartData( + limitPieChartData( depsSummaryData.map(({ packageTypeDetails: { title, total } }) => [ title, total, @@ -218,17 +221,22 @@ const DependencyInfoDash = () => {
- Dependency Scope summary by Package Type - params.api.sizeColumnsToFit()} - onGridSizeChanged={(params) => params.api.sizeColumnsToFit()} - className="ag-theme-alpine ag-grid-customClass scope-summary-table" - /> + {packageTypeSummaryData.length > 0 && ( + <> +
Dependency Scope summary by Package Type
+ params.api.sizeColumnsToFit()} + onGridSizeChanged={(params) => params.api.sizeColumnsToFit()} + className="ag-theme-alpine ag-grid-customClass scope-summary-table" + /> + + )}
diff --git a/src/pages/DependencyInfoDash/dependencyInfoDash.css b/src/pages/DependencyInfoDash/dependencyInfoDash.css index eaf49d46..8e237108 100644 --- a/src/pages/DependencyInfoDash/dependencyInfoDash.css +++ b/src/pages/DependencyInfoDash/dependencyInfoDash.css @@ -1,7 +1,39 @@ -.scope-summary-table { - max-height: 42vh; +:root { + --min-scope-summary-table-height: 90px; + --max-scope-summary-table-height: 40vh; + --scope-summary-table-header-height: 49px; + --scope-summary-table-height: 5px; } .deps-status-flag-table .ag-header-cell-label { justify-content: center; +} + +.scope-summary-table { + max-height: var(--max-scope-summary-table-height); + min-height: var(--min-scope-summary-table-height); + height: auto !important; +} + +.scope-summary-table .ag-overlay-wrapper { + max-height: var(--max-scope-summary-table-height); + align-items: flex-end; + padding-bottom: 3%; +} + +.scope-summary-table .ag-root-wrapper-body.ag-layout-normal { + flex: none; + height: auto; +} + +.scope-summary-table .ag-body-viewport { + height: auto; + /* Subtract height of horizontal scroll and header from table height */ + max-height: calc(var(--max-scope-summary-table-height) - var(--scope-summary-table-header-height) - var(--scope-summary-table-height)); + min-height: calc(var(--min-scope-summary-table-height) - var(--scope-summary-table-header-height) - var(--scope-summary-table-height)); + flex: none; +} + +.scope-summary-table .ag-center-cols-viewport { + height: auto; } \ No newline at end of file diff --git a/src/pages/FileInfoDash/FileInfoDash.tsx b/src/pages/FileInfoDash/FileInfoDash.tsx index 9cc9d0bb..71e691fc 100644 --- a/src/pages/FileInfoDash/FileInfoDash.tsx +++ b/src/pages/FileInfoDash/FileInfoDash.tsx @@ -2,7 +2,7 @@ import { Op } from "sequelize"; import { Row, Col, Card } from "react-bootstrap"; import React, { useEffect, useState } from "react"; -import { FormattedEntry, formatChartData } from "../../utils/pie"; +import { FormattedEntry, formatPieChartData } from "../../utils/pie"; import { useWorkbenchDB } from "../../contexts/dbContext"; import PieChart from "../../components/PieChart/PieChart"; import EllipticLoader from "../../components/EllipticLoader"; @@ -43,11 +43,11 @@ const FileInfoDash = () => { .then((db) => db.File.findOne({ where: { path: currentPath } })) .then((root) => { const filesCount = - root.getDataValue("type").toString({}) === "directory" + root.getDataValue("type") === "directory" ? root.getDataValue("files_count") || 0 : 1; const dirsCount = - root.getDataValue("type").toString({}) === "directory" + root.getDataValue("type") === "directory" ? root.getDataValue("dirs_count") || 0 : 0; @@ -79,14 +79,14 @@ const FileInfoDash = () => { (file) => file.getDataValue("programming_language") || NO_VALUE_DETECTED_LABEL ); - const { chartData: langsChartData } = formatChartData(langs); + const { chartData: langsChartData } = formatPieChartData(langs); setProgLangsData(langsChartData); // Prepare chart for file types const fileTypes = files.map( (file) => file.getDataValue("file_type") || NO_VALUE_DETECTED_LABEL ); - const { chartData: fileTypesChartData } = formatChartData(fileTypes); + const { chartData: fileTypesChartData } = formatPieChartData(fileTypes); setFileTypesData(fileTypesChartData); // Prepare chart for mime types @@ -94,7 +94,7 @@ const FileInfoDash = () => { (file) => file.getDataValue("mime_type") || NO_VALUE_DETECTED_LABEL ); const { chartData: mimeTypesChartData } = - formatChartData(fileMimeTypes); + formatPieChartData(fileMimeTypes); setMimeTypesData(mimeTypesChartData); }) .then(endProcessing); diff --git a/src/pages/Home/Home.tsx b/src/pages/Home/Home.tsx index e8cb44a1..ce61752b 100644 --- a/src/pages/Home/Home.tsx +++ b/src/pages/Home/Home.tsx @@ -3,8 +3,9 @@ import electron from "electron"; import * as electronFs from "fs"; import { toast } from "react-toastify"; import React, { useMemo, useState } from "react"; - +import { Button } from "react-bootstrap"; import { + faClose, faCogs, faDatabase, faFileCode, @@ -17,7 +18,6 @@ import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { useWorkbenchDB } from "../../contexts/dbContext"; import CoreButton from "../../components/CoreButton/CoreButton"; import ProgressLoader from "../../components/ProgressLoader/ProgressLoader"; - import { OPEN_DIALOG_CHANNEL } from "../../constants/IpcConnection"; import { GetHistory, @@ -34,9 +34,11 @@ const Home = () => { db, loadingStatus, initialized, + scanInfo, + importedSqliteFilePath, jsonParser, sqliteParser, - importedSqliteFilePath, + closeFile, } = useWorkbenchDB(); const [historyRefreshToken, setRefreshToken] = useState(0); @@ -116,6 +118,21 @@ const Home = () => { OR Simply drop your json / sqlite file anywhere in the app !!
+ {db && initialized && ( +
+
+ Imported scan - {scanInfo.json_file_name} + +
+
+ )}

Recent files
diff --git a/src/pages/Home/home.css b/src/pages/Home/home.css index f85aabdd..313f668c 100644 --- a/src/pages/Home/home.css +++ b/src/pages/Home/home.css @@ -41,16 +41,25 @@ .drop-instruction { text-align: center; width: 100%; - margin-top: 50px; + margin-top: 25px; color: var(--lightTextColor); } .quicklinks, +.currentscan, .history { - margin-top: 15px; padding-left: 2rem; } +.currentscan { + margin-top: 35px; + margin-bottom: 5px; +} + +.quicklinks { + margin-top: 10px; +} + .history table { min-width: 80%; max-width: 95%; diff --git a/src/pages/LicenseInfoDash/LicenseInfoDash.tsx b/src/pages/LicenseInfoDash/LicenseInfoDash.tsx index 172e4b6c..9e257cf2 100644 --- a/src/pages/LicenseInfoDash/LicenseInfoDash.tsx +++ b/src/pages/LicenseInfoDash/LicenseInfoDash.tsx @@ -3,7 +3,7 @@ import { Tooltip } from "react-tooltip"; import { Row, Col, Card } from "react-bootstrap"; import React, { useEffect, useState } from "react"; -import { FormattedEntry, formatChartData } from "../../utils/pie"; +import { FormattedEntry, formatPieChartData } from "../../utils/pie"; import { useWorkbenchDB } from "../../contexts/dbContext"; import PieChart from "../../components/PieChart/PieChart"; import EllipticLoader from "../../components/EllipticLoader"; @@ -57,8 +57,6 @@ const LicenseInfoDash = () => { attributes: ["fileId", "license_detections"], }) ) - // @REMOVE_THIS - // .then((flatFiles) => new Promise(resolve => setTimeout(()=>resolve(flatFiles), 4000))) .then((flatFiles) => { const fileIDs = flatFiles.map((flatFile) => flatFile.getDataValue("fileId") @@ -67,7 +65,7 @@ const LicenseInfoDash = () => { const filesWithDetections = flatFiles .map((flatFile) => JSON.parse( - flatFile.getDataValue("license_detections")?.toString({}) || "[]" + flatFile.getDataValue("license_detections") || "[]" ) ) .filter((detections) => detections.length); @@ -89,7 +87,7 @@ const LicenseInfoDash = () => { NO_VALUE_DETECTED_LABEL ); // Prepare chart for license expressions - const { chartData } = formatChartData(expressions); + const { chartData } = formatPieChartData(expressions); setLicenseExpressionData(chartData); const license_keys: string[] = []; @@ -97,14 +95,14 @@ const LicenseInfoDash = () => { license_expressions.forEach((expression) => { license_keys.push( ...JSON.parse( - (expression.getDataValue("license_keys") || "[]").toString({}) + (expression.getDataValue("license_keys") || "[]") ) ); license_keys_spdx.push( ...JSON.parse( ( expression.getDataValue("license_keys_spdx") || "[]" - ).toString({}) + ) ) ); }); @@ -117,7 +115,7 @@ const LicenseInfoDash = () => { })); const { chartData: licenseKeysChartData } = - formatChartData(license_keys); + formatPieChartData(license_keys); setLicenseKeyData(licenseKeysChartData); }); @@ -133,7 +131,7 @@ const LicenseInfoDash = () => { ) .then((labels) => { // @TODO - Set pie chart color based on the received color_code in policies - const { chartData } = formatChartData(labels); + const { chartData } = formatPieChartData(labels); setLicensePolicyData(chartData); }); diff --git a/src/pages/Licenses/Licenses.tsx b/src/pages/Licenses/Licenses.tsx index 214d3acb..a4009698 100644 --- a/src/pages/Licenses/Licenses.tsx +++ b/src/pages/Licenses/Licenses.tsx @@ -15,7 +15,7 @@ import NoDataFallback from "../../components/NoDataSection"; import { QUERY_KEYS } from "../../constants/params"; import { useWorkbenchDB } from "../../contexts/dbContext"; import { - ActiveLicense, + ActiveLicenseEntity, LicenseClueDetails, LicenseDetectionDetails, } from "./licenseDefinitions"; @@ -24,7 +24,7 @@ import "./Licenses.css"; const LicenseDetections = () => { const [searchParams] = useSearchParams(); - const [activeLicense, setActiveLicense] = useState( + const [activeLicense, setActiveLicense] = useState( null ); const [searchedLicense, setSearchedLicense] = useState(""); @@ -60,18 +60,18 @@ const LicenseDetections = () => { await db.getAllLicenseDetections() ).map((detection) => ({ detection_count: Number(detection.getDataValue("detection_count")), - identifier: detection.getDataValue("identifier")?.toString({}) || null, + identifier: detection.getDataValue("identifier") || null, license_expression: detection .getDataValue("license_expression") - ?.toString({}), + , detection_log: JSON.parse( - detection.getDataValue("detection_log")?.toString({}) || "[]" + detection.getDataValue("detection_log") || "[]" ), matches: JSON.parse( - detection.getDataValue("matches")?.toString({}) || "[]" + detection.getDataValue("matches") || "[]" ), file_regions: JSON.parse( - detection.getDataValue("file_regions")?.toString({}) || "[]" + detection.getDataValue("file_regions") || "[]" ), })); setLicenseDetections(newLicenseDetections); @@ -82,21 +82,21 @@ const LicenseDetections = () => { return { id: Number(clue.getDataValue("id")), fileId: Number(clue.getDataValue("fileId")), - filePath: clue.getDataValue("filePath").toString({}) || "", + filePath: clue.getDataValue("filePath") || "", fileClueIdx: Number(clue.getDataValue("fileClueIdx")), score: clue.getDataValue("score") !== null ? Number(clue.getDataValue("score")) : null, license_expression: - clue.getDataValue("license_expression")?.toString({}) || null, + clue.getDataValue("license_expression") || null, rule_identifier: - clue.getDataValue("rule_identifier")?.toString({}) || null, + clue.getDataValue("rule_identifier") || null, matches: JSON.parse( - clue.getDataValue("matches")?.toString({}) || "[]" + clue.getDataValue("matches") || "[]" ), file_regions: JSON.parse( - clue.getDataValue("file_regions")?.toString({}) || "[]" + clue.getDataValue("file_regions") || "[]" ), }; }); @@ -312,7 +312,7 @@ const LicenseDetections = () => { minSize={500} className="license-entity-pane overflow-scroll" > - +
diff --git a/src/pages/Licenses/licenseDefinitions.ts b/src/pages/Licenses/licenseDefinitions.ts index c5d2c84a..efb74bb7 100644 --- a/src/pages/Licenses/licenseDefinitions.ts +++ b/src/pages/Licenses/licenseDefinitions.ts @@ -24,7 +24,7 @@ export interface LicenseClueDetails { file_regions: LicenseFileRegion[]; } -export type ActiveLicense = +export type ActiveLicenseEntity = | { type: "detection"; license: LicenseDetectionDetails; diff --git a/src/pages/PackageInfoDash/PackageInfoDash.tsx b/src/pages/PackageInfoDash/PackageInfoDash.tsx index f02f4245..e85e5700 100644 --- a/src/pages/PackageInfoDash/PackageInfoDash.tsx +++ b/src/pages/PackageInfoDash/PackageInfoDash.tsx @@ -2,7 +2,7 @@ import { Op, WhereOptions } from "sequelize"; import { Row, Col, Card } from "react-bootstrap"; import React, { useEffect, useState } from "react"; -import { FormattedEntry, formatChartData } from "../../utils/pie"; +import { FormattedEntry, formatPieChartData } from "../../utils/pie"; import { useWorkbenchDB } from "../../contexts/dbContext"; import { NO_VALUE_DETECTED_LABEL } from "../../constants/data"; import PieChart from "../../components/PieChart/PieChart"; @@ -73,7 +73,7 @@ const PackageInfoDash = () => { packageEntry.getDataValue("type") || NO_VALUE_DETECTED_LABEL ); const { chartData: packageTypesChartData } = - formatChartData(packageTypes); + formatPieChartData(packageTypes); setPackageTypeData(packageTypesChartData); // Prepare chart for package languages @@ -83,7 +83,7 @@ const PackageInfoDash = () => { NO_VALUE_DETECTED_LABEL ); const { chartData: packageLangsChartData } = - formatChartData(packageLangs); + formatPieChartData(packageLangs); setPackageLangData(packageLangsChartData); // Prepare chart for package license expression @@ -93,7 +93,7 @@ const PackageInfoDash = () => { NO_VALUE_DETECTED_LABEL ); const { chartData: packageLicenseExpChartData } = - formatChartData(packageLicenseExp); + formatPieChartData(packageLicenseExp); setPackageLicenseData(packageLicenseExpChartData); }); diff --git a/src/pages/Packages/Packages.tsx b/src/pages/Packages/Packages.tsx index f665a984..f8ddb892 100644 --- a/src/pages/Packages/Packages.tsx +++ b/src/pages/Packages/Packages.tsx @@ -21,7 +21,7 @@ import { DepFilterTags, DepFilterTagsList, } from "./filters"; -import { MISC_DEPS, getMiscPackage } from "./miscInfo"; +import { MISC_DEPS, getMiscPackage } from "./miscPackage"; import { generatePackagesMapping } from "./packageParsers"; import NoDataFallback from "../../components/NoDataSection"; import DependencyEntity from "../../components/PackagesEntityDetails/DependencyEntity"; @@ -128,7 +128,6 @@ const Packages = () => { if (package_uid && targetPackage) { activatePackage(targetPackage); } - return targetPackage; }; useEffect(() => { const queriedPackageUid = searchParams.get(QUERY_KEYS.PACKAGE); @@ -151,94 +150,87 @@ const Packages = () => { if (!initialized || !db || !currentPath) return; startProcessing(); - db.sync.then(async () => { - const packages = await db.getAllPackages(); - const deps = await db.getAllDependencies(); - // console.log("Raw Packages & deps", packages, deps); - if (!packages.length && !deps.length) { - console.log("No package or deps available"); - setAllPackageGroups([]); - return; - } - - // const type_other = 'type-other'; - const packageMapping = generatePackagesMapping(packages); - packageMapping.set(MISC_DEPS, (getMiscPackage())); - - const uniqueDataSourceIDs = new Set( - deps.map((dep) => dep.getDataValue("datasource_id").toString({})) - ); - setDataSourceIDs( - Array.from(uniqueDataSourceIDs.values()).map((dataSourceID) => ({ - label: dataSourceID, - value: dataSourceID, - })) - ); + db.sync + .then(async () => { + const packages = await db.getAllPackages(); + const deps = await db.getAllDependencies(); + // console.log("Raw Packages & deps", packages, deps); + if (!packages.length && !deps.length) { + console.log("No package or deps available"); + setAllPackageGroups([]); + return; + } + + const packageMapping = generatePackagesMapping(packages); + packageMapping.set(MISC_DEPS, getMiscPackage()); + + const uniqueDataSourceIDs = new Set( + deps.map((dep) => dep.getDataValue("datasource_id")) + ); + setDataSourceIDs( + Array.from(uniqueDataSourceIDs.values()).map((dataSourceID) => ({ + label: dataSourceID, + value: dataSourceID, + })) + ); - // Group dependencies in their respective packages - deps.forEach((dependencyInfo) => { - const targetPackageUid: string | null = dependencyInfo - .getDataValue("for_package_uid") - ?.toString({}); - packageMapping.get(targetPackageUid || MISC_DEPS).dependencies.push({ - // ...dependencyInfo, // For debugging - purl: dependencyInfo.getDataValue("purl").toString({}), - extracted_requirement: - dependencyInfo - .getDataValue("extracted_requirement") - ?.toString({}) || "", - scope: dependencyInfo - .getDataValue("scope") - .toString({}) as DEPENDENCY_SCOPES, - is_runtime: dependencyInfo.getDataValue("is_runtime"), - is_optional: dependencyInfo.getDataValue("is_optional"), - is_resolved: dependencyInfo.getDataValue("is_resolved"), - resolved_package: JSON.parse( - dependencyInfo.getDataValue("resolved_package").toString({}) - ), - dependency_uid: dependencyInfo - .getDataValue("dependency_uid") - .toString({}), - for_package_uid: - dependencyInfo.getDataValue("for_package_uid")?.toString({}) || - null, - datafile_path: dependencyInfo.getDataValue("datafile_path"), - datasource_id: dependencyInfo - .getDataValue("datasource_id") - .toString({}), + // Group dependencies in their respective packages + deps.forEach((dependencyInfo) => { + const targetPackageUid: string | null = + dependencyInfo.getDataValue("for_package_uid"); + packageMapping.get(targetPackageUid || MISC_DEPS).dependencies.push({ + // ...dependencyInfo, // For debugging + purl: dependencyInfo.getDataValue("purl"), + extracted_requirement: + dependencyInfo.getDataValue("extracted_requirement") || "", + scope: dependencyInfo.getDataValue("scope") as DEPENDENCY_SCOPES, + is_runtime: dependencyInfo.getDataValue("is_runtime"), + is_optional: dependencyInfo.getDataValue("is_optional"), + is_resolved: dependencyInfo.getDataValue("is_resolved"), + resolved_package: JSON.parse( + dependencyInfo.getDataValue("resolved_package") || "{}" + ), + dependency_uid: dependencyInfo.getDataValue("dependency_uid"), + for_package_uid: + dependencyInfo.getDataValue("for_package_uid") || null, + datafile_path: dependencyInfo.getDataValue("datafile_path"), + datasource_id: dependencyInfo.getDataValue("datasource_id"), + }); }); - }); - - // Ignore misc deps if none found - if (!packageMapping.get(MISC_DEPS).dependencies.length) { - packageMapping.delete(MISC_DEPS); - } - - const parsedPackageWithDeps = Array.from(packageMapping.values()); - // @TODO - What are qualifiers ? - parsedPackageWithDeps.forEach((pkg) => { - if (Object.keys(pkg.qualifiers).length) console.log("Qualifying:", pkg); - }); - // console.log("Packages with deps:", parsedPackageWithDeps); - setPackagesWithDeps(parsedPackageWithDeps); - - // Group packages in their respective package type group - const packageGroupMapping = new Map(); - parsedPackageWithDeps.forEach((packageDetails) => { - if (!packageGroupMapping.has(packageDetails.type)) { - packageGroupMapping.set(packageDetails.type, []); + + // Ignore misc deps if none found + if (!packageMapping.get(MISC_DEPS).dependencies.length) { + packageMapping.delete(MISC_DEPS); } - packageGroupMapping.get(packageDetails.type).push(packageDetails); - }); - const parsedPackageGroups = Array.from(packageGroupMapping.entries()).map( - ([type, packages]): PackageTypeGroupDetails => ({ - type, - packages, - }) - ); - setAllPackageGroups(parsedPackageGroups); - // console.log("Package groups", parsedPackageGroups); - setExpandedPackages([]); + + const parsedPackageWithDeps = Array.from(packageMapping.values()); + // @TODO - What are qualifiers ? + parsedPackageWithDeps.forEach((pkg) => { + if (Object.keys(pkg.qualifiers).length) + console.log("Qualifying:", pkg); + }); + // console.log("Packages with deps:", parsedPackageWithDeps); + setPackagesWithDeps(parsedPackageWithDeps); + + // Group packages in their respective package type group + const packageGroupMapping = new Map(); + parsedPackageWithDeps.forEach((packageDetails) => { + if (!packageGroupMapping.has(packageDetails.type)) { + packageGroupMapping.set(packageDetails.type, []); + } + packageGroupMapping.get(packageDetails.type).push(packageDetails); + }); + const parsedPackageGroups = Array.from( + packageGroupMapping.entries() + ).map( + ([type, packages]): PackageTypeGroupDetails => ({ + type, + packages, + }) + ); + setAllPackageGroups(parsedPackageGroups); + // console.log("Package groups", parsedPackageGroups); + setExpandedPackages([]); // Select package based on query or default const queriedPackageUid = searchParams.get(QUERY_KEYS.PACKAGE); @@ -597,7 +589,7 @@ const Packages = () => { {activeEntityType ? ( activeEntityType === "package" && activePackage ? ( ) : activeEntityType === "dependency" && activeDependency ? ( diff --git a/src/pages/Packages/miscInfo.ts b/src/pages/Packages/miscPackage.ts similarity index 91% rename from src/pages/Packages/miscInfo.ts rename to src/pages/Packages/miscPackage.ts index df543603..bc5eba8a 100644 --- a/src/pages/Packages/miscInfo.ts +++ b/src/pages/Packages/miscPackage.ts @@ -2,7 +2,7 @@ import { PackageDetails } from "./packageDefinitions"; export const MISC_DEPS = "others"; -// Obtaining a misc package via function to prevent preserving the same object across rerenders +// Obtaining a new misc package via function to prevent preserving the same object across renders export const getMiscPackage = (): PackageDetails => { return { package_uid: "misc", diff --git a/src/pages/Packages/packageParsers.ts b/src/pages/Packages/packageParsers.ts index b7926611..633cb220 100644 --- a/src/pages/Packages/packageParsers.ts +++ b/src/pages/Packages/packageParsers.ts @@ -7,86 +7,59 @@ export function generatePackagesMapping( ) { return new Map( rawPackages.map((packageInfo): [string, PackageDetails] => [ - packageInfo.getDataValue("package_uid").toString({}), + packageInfo.getDataValue("package_uid"), { - package_uid: packageInfo.getDataValue("package_uid").toString({}), - name: packageInfo.getDataValue("name").toString({}), - type: packageInfo.getDataValue("type").toString({}), + package_uid: packageInfo.getDataValue("package_uid"), + name: packageInfo.getDataValue("name"), + type: packageInfo.getDataValue("type"), dependencies: [], - namespace: packageInfo.getDataValue("namespace")?.toString({}) || null, - version: packageInfo.getDataValue("version")?.toString({}) || null, - qualifiers: JSON.parse( - packageInfo.getDataValue("qualifiers").toString({}) - ), - subpath: packageInfo.getDataValue("subpath")?.toString({}) || null, - primary_language: - packageInfo.getDataValue("primary_language")?.toString({}) || null, - description: - packageInfo.getDataValue("description")?.toString({}) || null, - release_date: - packageInfo.getDataValue("release_date")?.toString({}) || null, - parties: JSON.parse(packageInfo.getDataValue("parties").toString({})), - keywords: JSON.parse(packageInfo.getDataValue("keywords").toString({})), - homepage_url: - packageInfo.getDataValue("homepage_url")?.toString({}) || null, - download_url: - packageInfo.getDataValue("download_url")?.toString({}) || null, - size: packageInfo.getDataValue("size")?.toString({}) || null, - sha1: packageInfo.getDataValue("sha1")?.toString({}) || null, - md5: packageInfo.getDataValue("md5")?.toString({}) || null, - sha256: packageInfo.getDataValue("sha256")?.toString({}) || null, - sha512: packageInfo.getDataValue("sha512")?.toString({}) || null, - bug_tracking_url: - packageInfo.getDataValue("bug_tracking_url")?.toString({}) || null, - code_view_url: - packageInfo.getDataValue("code_view_url")?.toString({}) || null, - vcs_url: packageInfo.getDataValue("vcs_url")?.toString({}) || null, - copyright: packageInfo.getDataValue("copyright")?.toString({}) || null, + namespace: packageInfo.getDataValue("namespace") || null, + version: packageInfo.getDataValue("version") || null, + qualifiers: JSON.parse(packageInfo.getDataValue("qualifiers")), + subpath: packageInfo.getDataValue("subpath") || null, + primary_language: packageInfo.getDataValue("primary_language") || null, + description: packageInfo.getDataValue("description") || null, + release_date: packageInfo.getDataValue("release_date") || null, + parties: JSON.parse(packageInfo.getDataValue("parties")), + keywords: JSON.parse(packageInfo.getDataValue("keywords")), + homepage_url: packageInfo.getDataValue("homepage_url") || null, + download_url: packageInfo.getDataValue("download_url") || null, + size: packageInfo.getDataValue("size") || null, + sha1: packageInfo.getDataValue("sha1") || null, + md5: packageInfo.getDataValue("md5") || null, + sha256: packageInfo.getDataValue("sha256") || null, + sha512: packageInfo.getDataValue("sha512") || null, + bug_tracking_url: packageInfo.getDataValue("bug_tracking_url") || null, + code_view_url: packageInfo.getDataValue("code_view_url") || null, + vcs_url: packageInfo.getDataValue("vcs_url") || null, + copyright: packageInfo.getDataValue("copyright") || null, declared_license_expression: - packageInfo - .getDataValue("declared_license_expression") - ?.toString({}) || null, + packageInfo.getDataValue("declared_license_expression") || null, declared_license_expression_spdx: - packageInfo - .getDataValue("declared_license_expression_spdx") - ?.toString({}) || null, + packageInfo.getDataValue("declared_license_expression_spdx") || null, other_license_expression: - packageInfo.getDataValue("other_license_expression")?.toString({}) || - null, + packageInfo.getDataValue("other_license_expression") || null, other_license_expression_spdx: - packageInfo - .getDataValue("other_license_expression_spdx") - ?.toString({}) || null, + packageInfo.getDataValue("other_license_expression_spdx") || null, extracted_license_statement: packageInfo .getDataValue("extracted_license_statement") - ?.toString({}) - .replace(/(^"|"$)/g, "") || null, - notice_text: - packageInfo.getDataValue("notice_text")?.toString({}) || null, + ?.replace(/(^"|"$)/g, "") || null, + notice_text: packageInfo.getDataValue("notice_text") || null, source_packages: JSON.parse( - packageInfo.getDataValue("source_packages").toString({}) - ), - extra_data: JSON.parse( - packageInfo.getDataValue("extra_data").toString({}) + packageInfo.getDataValue("source_packages") ), + extra_data: JSON.parse(packageInfo.getDataValue("extra_data")), repository_homepage_url: - packageInfo.getDataValue("repository_homepage_url")?.toString({}) || - null, + packageInfo.getDataValue("repository_homepage_url") || null, repository_download_url: - packageInfo.getDataValue("repository_download_url")?.toString({}) || - null, - api_data_url: - packageInfo.getDataValue("api_data_url")?.toString({}) || null, + packageInfo.getDataValue("repository_download_url") || null, + api_data_url: packageInfo.getDataValue("api_data_url") || null, datafile_paths: - JSON.parse( - packageInfo.getDataValue("datafile_paths")?.toString({}) || "[]" - ) || [], + JSON.parse(packageInfo.getDataValue("datafile_paths") || "[]") || [], datasource_ids: - JSON.parse( - packageInfo.getDataValue("datasource_ids")?.toString({}) || "[]" - ) || [], - purl: packageInfo.getDataValue("purl").toString({}), + JSON.parse(packageInfo.getDataValue("datasource_ids") || "[]") || [], + purl: packageInfo.getDataValue("purl"), }, ]) ); diff --git a/src/pages/PageNotFound.tsx b/src/pages/PageNotFound.tsx index 137b5dbf..b973690f 100644 --- a/src/pages/PageNotFound.tsx +++ b/src/pages/PageNotFound.tsx @@ -1,28 +1,29 @@ -import React from 'react' -import { Link } from 'react-router-dom' +import React from "react"; +import { Link } from "react-router-dom"; -import { ROUTES } from '../constants/routes' +import { ROUTES } from "../constants/routes"; const PageNotFound = () => { return ( -
-
-

- 4 0 4 +
+
+
+
4 0 4
-
-

- ¯\_(ツ)_/¯ -

+
+

+ ¯\_(ツ)_/¯ +
+

Don't venture places, - + Go back Home

- ) -} + ); +}; -export default PageNotFound \ No newline at end of file +export default PageNotFound; diff --git a/src/pages/ScanInfo/ScanInfo.tsx b/src/pages/ScanInfo/ScanInfo.tsx index 6ee8ad61..48c07ccd 100644 --- a/src/pages/ScanInfo/ScanInfo.tsx +++ b/src/pages/ScanInfo/ScanInfo.tsx @@ -19,6 +19,8 @@ const ScanInfo = () => { {scanInfo ? ( + {scanInfo.json_file_name} + {scanInfo.tool_name}{scanInfo.tool_version} @@ -28,8 +30,8 @@ const ScanInfo = () => { show={scanInfo.input && scanInfo.input.length > 0} >
    - {(scanInfo.input || []).map((value: string, idx: number) => ( -
  • {value}
  • + {(scanInfo.input || []).map((inputPath: string) => ( +
  • {inputPath}
  • ))}
@@ -40,7 +42,7 @@ const ScanInfo = () => { >
- {scanInfo.optionsList.map(([key, value]) => ( + {(scanInfo.optionsList || []).map(([key, value]) => ( {typeof value !== "boolean" && } @@ -79,11 +81,27 @@ const ScanInfo = () => { - {scanInfo.duration} seconds + {scanInfo.duration && `${scanInfo.duration} seconds`} {scanInfo.notice} + 0} + > +
    + {(scanInfo.errors || []).map((error: string) => ( +
  • + {/* goToFileInTableView(error)}> + {error} + */} + {error} +
  • + ))} +
+
+ { - const { - tableData, columnDefs, gridApi, - } = props; - + const { tableData, columnDefs, gridApi } = props; const changePaginationSize = (newValue: string | number) => { - if(gridApi){ + if (gridApi) { gridApi.paginationSetPageSize(Number(newValue)); } - } + }; useEffect(() => { - if(gridApi){ + if (gridApi) { gridApi.setFilterModel(null); // Setting column defs manually to lazily update columns gridApi.setColumnDefs(columnDefs); } - }, [columnDefs]) - + }, [columnDefs]); return (
{ className="ag-theme-alpine ag-grid-customClass" ensureDomOrder enableCellTextSelection - pagination={true} defaultColDef={defaultColDef} paginationPageSize={defaultPaginationOption} - // Performance options rowBuffer={200} animateRows={false} suppressColumnMoveAnimation suppressRowVirtualisation suppressColumnVirtualisation - {...props} /> @@ -83,19 +72,17 @@ const AgDataTable = (props: AgDataTableProps) => { Page Size:
- ) -} + ); +}; -export default AgDataTable \ No newline at end of file +export default AgDataTable; diff --git a/src/pages/TableView/CustomCellRenderers/Licenses/DetectionOriginRenderer.tsx.tsx b/src/pages/TableView/CustomCellRenderers/Licenses/DetectionOriginRenderer.tsx.tsx index 52029b89..c61665ce 100644 --- a/src/pages/TableView/CustomCellRenderers/Licenses/DetectionOriginRenderer.tsx.tsx +++ b/src/pages/TableView/CustomCellRenderers/Licenses/DetectionOriginRenderer.tsx.tsx @@ -13,7 +13,7 @@ const DetectionOriginRenderer = (props: DetectionOriginRendererProps) => { return ( diff --git a/src/pages/TableView/CustomFilterComponent.tsx b/src/pages/TableView/CustomFilterComponent.tsx index 042687b7..0c8a9f18 100644 --- a/src/pages/TableView/CustomFilterComponent.tsx +++ b/src/pages/TableView/CustomFilterComponent.tsx @@ -2,101 +2,80 @@ import React, { forwardRef, useImperativeHandle, useRef, -} from 'react'; -import { IFloatingFilterParams, TextFilterModel } from 'ag-grid-community'; -import { DEFAULT_EMPTY_VALUES } from './columnGroups'; +} from "react"; +import { IFloatingFilterParams, TextFilterModel } from "ag-grid-community"; +import { DEFAULT_EMPTY_VALUES } from "./columnGroups"; +import { parseProbableStringifiedArray } from "../../utils/text"; export interface CustomParams extends IFloatingFilterParams { suppressFilterButton: boolean; color: string; } -const FILTER_MAX_OPTION_LENGTH = 75; - -function trimString(str: string){ - if (str.length > FILTER_MAX_OPTION_LENGTH) { - return str.trimEnd().slice(0, FILTER_MAX_OPTION_LENGTH) + '...'; - } - return str.trimEnd(); -} -function parseProbableStringifiedArray(str: string){ - try { - const result = JSON.parse(str); - if(Array.isArray(result)){ - const parseableResultArray = result as string[][]; - return trimString(parseableResultArray.map(subEntry => subEntry.join(',')).join(',')); - } - return trimString(str); - } catch (e) { - return trimString(str); - } -} +export const FILTER_MAX_OPTION_LENGTH = 75; const CustomFilterComponent = forwardRef((props: CustomParams, ref) => { const { parentFilterInstance, filterParams } = props; - const optionValues: string[] = filterParams.colDef.filterParams?.options || []; + const optionValues: string[] = + filterParams.colDef.filterParams?.options || []; const selectRef = useRef(null); // expose AG Grid Filter Lifecycle callbacks useImperativeHandle(ref, () => { return { - onParentModelChanged(parentModel: TextFilterModel){ - if(!selectRef.current) - return; - + onParentModelChanged(parentModel: TextFilterModel) { + if (!selectRef.current) return; + // When the filter is empty we will receive a null value here if (!parentModel) { selectRef.current.value = optionValues[0]; } else { selectRef.current.value = parentModel.filter; } - } - } + }, + }; }); - function selectionChanged(value: string){ + function selectionChanged(value: string) { // console.log("Option changed to", value); - + if (value === optionValues[0]) { - parentFilterInstance(instance => { - instance.onFloatingFilterChanged('equals', null); + parentFilterInstance((instance) => { + instance.onFloatingFilterChanged("equals", null); }); return; } - parentFilterInstance(instance => { - instance.onFloatingFilterChanged('equals', value); + parentFilterInstance((instance) => { + instance.onFloatingFilterChanged("equals", value); }); } - // useEffect(() => { - // console.log("Opt vals", optionValues); - - // }, [optionValues]); return ( - ) + ); }); -export default CustomFilterComponent; \ No newline at end of file +export default CustomFilterComponent; diff --git a/src/pages/TableView/TableView.css b/src/pages/TableView/TableView.css index d0e1a031..aa7b54ce 100644 --- a/src/pages/TableView/TableView.css +++ b/src/pages/TableView/TableView.css @@ -1,8 +1,9 @@ -.globalSearch{ +.globalSearch { display: inline-flex; float: right; margin-right: 15px; } + .globalSearch input { display: inline-block; } @@ -10,17 +11,19 @@ .filterButtons { margin-bottom: 4px; } -.filterButtons section{ + +.filterButtons section { display: inline-flex; margin-left: 10px; margin-right: 10px; } -.filterButtons button{ + +.filterButtons button { margin: 3px; margin-right: 10px; } -.column-selector{ +.column-selector { padding: 15px; } @@ -30,23 +33,33 @@ margin-right: 0px; font-size: 15px; } -.pagination-controls select{ + +.pagination-controls select { margin-left: 10px; } +.matches-table { + max-height: 250px; + height: auto; +} + .ag-grid-customClass { font-size: 12px !important; --ag-cell-horizontal-border: 1px solid rgb(225 225 225) !important; } + + .ag-cell-wrapper { padding: 7px 0 10px 0; font-size: 14px; line-height: 1.5; } + .ag-cell-wrapper .ag-cell-value { max-height: 300px; overflow-y: overlay; } + .ag-cell-wrap-text { word-break: break-word; } @@ -56,4 +69,4 @@ padding: 5px; width: fit-content; max-width: 90px; -} +} \ No newline at end of file diff --git a/src/pages/TableView/TableView.tsx b/src/pages/TableView/TableView.tsx index d086ac9c..ed205733 100644 --- a/src/pages/TableView/TableView.tsx +++ b/src/pages/TableView/TableView.tsx @@ -30,7 +30,7 @@ const TableView = () => { useWorkbenchState(); // Necessary to keep coldef as empty array by default, to ensure filter set updates - const [tableData, setTableData] = useState([]); + const [tableData, setTableData] = useState([]); const [gridApi, setGridApi] = useState(null); const [columnApi, setColumnApi] = useState(null); @@ -73,21 +73,26 @@ const TableView = () => { ], }, }, - // raw: true, // TOIMPROVE: Maybe we can get better performance with this }) ) + .then((fileModels) => fileModels.map((fileModel) => fileModel.dataValues)) .then((files) => { setTableData(files); let longestPathLength = 20; + let hasError = false; files.forEach((file) => { - const len = file.getDataValue("path").length; + const len = file.path.length; if (len > longestPathLength) { longestPathLength = len; } + if (!hasError && file.scan_errors?.length > 0) hasError = true; }); const calculatedColumnWidth = calculateCellWidth(longestPathLength); + // Set scan_errors column width based on the presence of any error + ALL_COLUMNS.scan_errors.width = hasError ? 270 : 130; + // Shrink path column, if user has over-extended it earlier (maybe for other scan with large paths) if (calculatedColumnWidth < ALL_COLUMNS.path.width) ALL_COLUMNS.path.width = calculatedColumnWidth; diff --git a/src/pages/TableView/columnDefs.ts b/src/pages/TableView/columnDefs.ts index a2d46c0b..ca415daa 100644 --- a/src/pages/TableView/columnDefs.ts +++ b/src/pages/TableView/columnDefs.ts @@ -104,7 +104,7 @@ interface COLUMNS_LIST { package_data_primary_language: ColDef; for_packages: ColDef; - scan_error: ColDef; + scan_errors: ColDef; } export const ALL_COLUMNS: COLUMNS_LIST = { @@ -409,18 +409,19 @@ export const ALL_COLUMNS: COLUMNS_LIST = { initialWidth: 320, }, - scan_error: { - field: "scan_error", - colId: "scan_error", - headerName: "Scan Error", + scan_errors: { + field: "scan_errors", + colId: "scan_errors", + headerName: "Scan Errors", filterParams: { filterOptions: FILTER_OPTIONS.LIST_FILTERS, }, + cellRenderer: CustomComponentKeys.ListCellRenderer, initialWidth: 130, }, }; -// Set Sorting order index +// Set Sorting order index the same as the order in which columns are defined Object.values(ALL_COLUMNS).forEach((col, idx) => (col.sortIndex = idx)); export const ALL_COLUMNS_MAP = new Map( diff --git a/src/pages/TableView/columnGroups.ts b/src/pages/TableView/columnGroups.ts index bc3589fc..3bcb425c 100644 --- a/src/pages/TableView/columnGroups.ts +++ b/src/pages/TableView/columnGroups.ts @@ -1,10 +1,12 @@ -import { ColDef } from 'ag-grid-community'; +import { ColDef } from "ag-grid-community"; -import { ALL_COLUMNS } from './columnDefs'; +import { ALL_COLUMNS } from "./columnDefs"; -// NOTE --- export const DEFAULT_EMPTY_VALUES = new Set([ - '', null, '[]', '[[]]' + "", + null, + "[]", + "[[]]", ]); export const SET_FILTERED_COLUMNS = new Set([ @@ -12,12 +14,10 @@ export const SET_FILTERED_COLUMNS = new Set([ ALL_COLUMNS.extension.field || "", ALL_COLUMNS.programming_language.field || "", ALL_COLUMNS.file_type.field || "", - + ALL_COLUMNS.mime_type.field || "", ALL_COLUMNS.copyright_holders.field || "", ALL_COLUMNS.copyright_authors.field || "", - // ALL_COLUMNS..field || "", - // ALL_COLUMNS..field || "", -]) +]); const FILE_COLUMN_GROUP: ColDef[] = [ ALL_COLUMNS.type, @@ -43,7 +43,6 @@ const COPYRIGHT_COLUMN_GROUP: ColDef[] = [ ALL_COLUMNS.copyright_end_line, ]; - const LICENSE_COLUMN_GROUP: ColDef[] = [ ALL_COLUMNS.detected_license_expression, ALL_COLUMNS.detected_license_expression_spdx, @@ -74,15 +73,12 @@ const PACKAGE_COLUMN_GROUP: ColDef[] = [ ALL_COLUMNS.for_packages, ]; - - const DEFAULT_COLUMN_GROUP: ColDef[] = [ ALL_COLUMNS.path, ...FILE_COLUMN_GROUP, - ALL_COLUMNS.scan_error, + ALL_COLUMNS.scan_errors, ]; - export const COLUMN_GROUPS = { DEFAULT: DEFAULT_COLUMN_GROUP, @@ -95,4 +91,4 @@ export const COLUMN_GROUPS = { ALL: Object.values(ALL_COLUMNS), NONE: [] as ColDef[], -} \ No newline at end of file +}; diff --git a/src/reactApp.tsx b/src/reactApp.tsx index 729d79fc..bc2931ef 100644 --- a/src/reactApp.tsx +++ b/src/reactApp.tsx @@ -1,6 +1,6 @@ -import * as React from 'react'; -import { createRoot } from 'react-dom/client'; -import App from './App'; +import * as React from "react"; +import { createRoot } from "react-dom/client"; +import App from "./App"; // For previous react versions // import * as ReactDOM from 'react-dom'; @@ -12,11 +12,11 @@ import App from './App'; // For react 18 onwards export function renderReactApp() { - const container = document.getElementById('app'); - if(container){ + const container = document.getElementById("app"); + if (container) { const root = createRoot(container); root.render(); } else { console.log("Container for react app not found :(", container); } -} \ No newline at end of file +} diff --git a/src/renderer.ts b/src/renderer.ts index 2ff12ba8..01ca879e 100644 --- a/src/renderer.ts +++ b/src/renderer.ts @@ -26,12 +26,13 @@ * ``` */ -import { ipcRenderer, webFrame } from 'electron'; -import { renderReactApp } from './reactApp'; +import { ipcRenderer, webFrame } from "electron"; +import { renderReactApp } from "./reactApp"; -import './index.css'; -import './colors.css'; -import { GENERAL_ACTIONS } from './constants/IpcConnection'; +import { GENERAL_ACTIONS } from "./constants/IpcConnection"; + +import "./styles/index.css"; +import "./styles/colors.css"; // Setup general actions ipcRenderer.on(GENERAL_ACTIONS.ZOOM_IN, () => { @@ -44,5 +45,4 @@ ipcRenderer.on(GENERAL_ACTIONS.ZOOM_RESET, () => { webFrame.setZoomLevel(0); }); - -renderReactApp(); \ No newline at end of file +renderReactApp(); diff --git a/src/services/historyStore.ts b/src/services/historyStore.ts index eadc9ae1..dc58419c 100644 --- a/src/services/historyStore.ts +++ b/src/services/historyStore.ts @@ -1,60 +1,72 @@ import moment from "moment"; export interface HistoryItem { - opened_at: string; - json_path?: string; - sqlite_path: string; + opened_at: string; + json_path?: string; + sqlite_path: string; } export const HISTORY_STORE_KEY = "workbench_history_details"; export const HISTORY_MAX_LENGTH = 5; export const GetHistory = () => { - return JSON.parse(window.localStorage.getItem(HISTORY_STORE_KEY) || '[]') as HistoryItem[]; -} + const history = JSON.parse( + window.localStorage.getItem(HISTORY_STORE_KEY) || "[]" + ) as HistoryItem[]; + history.sort(function (a, b) { + return Number(moment(b.opened_at)) - Number(moment(a.opened_at)); + }); + + return JSON.parse( + window.localStorage.getItem(HISTORY_STORE_KEY) || "[]" + ) as HistoryItem[]; +}; export const AddEntry = (entry: HistoryItem) => { - const history = GetHistory(); - - const existingEntryIndex = history.findIndex( - existingEntry => entry.json_path ? entry.json_path === existingEntry.json_path : entry.sqlite_path === existingEntry.sqlite_path - ) - const existingEntry: HistoryItem | undefined = history[existingEntryIndex]; - - if(existingEntry){ - // console.log("Updating existing entry:", existingEntry); - existingEntry.opened_at = entry.opened_at; - existingEntry.sqlite_path = entry.sqlite_path; - history.sort(function(a, b){ - return Number(moment(b.opened_at).format('X')) - Number(moment(a.opened_at).format('X')); - }); - } else { - console.log("Adding new history entry:", entry); - history.unshift(entry); - } - - if(history.length > 5) - history.length = 5; - - window.localStorage.setItem(HISTORY_STORE_KEY, JSON.stringify(history)); -} + const history = GetHistory(); + + const existingEntry = history.find((existingEntry) => + entry.json_path + ? entry.json_path === existingEntry.json_path + : entry.sqlite_path === existingEntry.sqlite_path + ); + + if (existingEntry) { + // console.log("Updating existing entry:", existingEntry); + existingEntry.opened_at = entry.opened_at; + existingEntry.sqlite_path = entry.sqlite_path; + history.sort(function (a, b) { + return Number(moment(b.opened_at)) - Number(moment(a.opened_at)); + }); + } else { + // console.log("Adding new history entry:", entry); + history.unshift(entry); + } + + if (history.length > 5) history.length = 5; + + window.localStorage.setItem(HISTORY_STORE_KEY, JSON.stringify(history)); +}; export const RemoveEntry = (entry: HistoryItem) => { - const history = GetHistory(); - - const existingEntryIndex = history.findIndex( - existingEntry => entry.json_path === existingEntry.json_path || entry.sqlite_path === existingEntry.sqlite_path - ) - - if(existingEntryIndex > -1){ - console.log(`Removing history entry:`, existingEntryIndex); - history.splice(existingEntryIndex, 1); - if(history.length > 5) - history.length = 5; - history.sort(function(a, b){ - return Number(moment(b.opened_at).format('X')) - Number(moment(a.opened_at).format('X')); - }); - } - - window.localStorage.setItem(HISTORY_STORE_KEY, JSON.stringify(history)); -} \ No newline at end of file + const history = GetHistory(); + + const existingEntryIndex = history.findIndex( + (existingEntry) => + entry.json_path === existingEntry.json_path || + entry.sqlite_path === existingEntry.sqlite_path + ); + + if (existingEntryIndex != -1) { + history.splice(existingEntryIndex, 1); + if (history.length > 5) history.length = 5; + history.sort(function (a, b) { + return ( + Number(moment(b.opened_at).format("X")) - + Number(moment(a.opened_at).format("X")) + ); + }); + } + + window.localStorage.setItem(HISTORY_STORE_KEY, JSON.stringify(history)); +}; diff --git a/src/services/importedJsonTypes.ts b/src/services/importedJsonTypes.ts index d9c2eb85..e6149d53 100644 --- a/src/services/importedJsonTypes.ts +++ b/src/services/importedJsonTypes.ts @@ -1,3 +1,27 @@ +import { JSON_Type } from "./models/databaseUtils"; + +export interface ParsedJsonHeader { + json_file_name: string; + tool_name: string; + tool_version: string; + notice: string; + duration: number; + options: JSON_Type; + input: JSON_Type; + files_count: number; + output_format_version: string; + spdx_license_list_version: string; // @QUERY - Justify need for this + operating_system: string; + cpu_architecture: string; + platform: string; + platform_version: string; + python_version: string; + workbench_version: string; + workbench_notice: string; + header_content: string; + errors: JSON_Type; +} + export interface LicenseReference { key: string; language: string; @@ -164,5 +188,4 @@ export interface Resource { // Parser-added fields parent?: string; - headerId?: number; } diff --git a/src/services/models/copyright.ts b/src/services/models/copyright.ts index 89538a6e..d3390155 100644 --- a/src/services/models/copyright.ts +++ b/src/services/models/copyright.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2018 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -14,22 +14,22 @@ # */ -import { Sequelize, DataTypes, IntegerDataType, StringDataType, Model } from 'sequelize'; +import { Sequelize, DataTypes, Model } from "sequelize"; import { jsonDataType } from "./databaseUtils"; export interface CopyrightAttributes { - id: IntegerDataType, - fileId: IntegerDataType, - start_line: IntegerDataType, - end_line: IntegerDataType, - holders: StringDataType, - authors: StringDataType, - statements: StringDataType, + id: number; + fileId: number; + start_line: number; + end_line: number; + holders: string; + authors: string; + statements: string; } export default function copyrightModel(sequelize: Sequelize) { return sequelize.define>( - 'copyrights', + "copyrights", { id: { allowNull: false, @@ -40,11 +40,12 @@ export default function copyrightModel(sequelize: Sequelize) { fileId: DataTypes.INTEGER, start_line: DataTypes.INTEGER, end_line: DataTypes.INTEGER, - holders: jsonDataType('holders'), - authors: jsonDataType('authors'), - statements: jsonDataType('statements') + holders: jsonDataType("holders"), + authors: jsonDataType("authors"), + statements: jsonDataType("statements"), }, { - timestamps: false - }); -} \ No newline at end of file + timestamps: false, + } + ); +} diff --git a/src/services/models/database.ts b/src/services/models/database.ts index 35b6e0f1..d9bdf789 100644 --- a/src/services/models/database.ts +++ b/src/services/models/database.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2018 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -81,11 +81,12 @@ export interface DatabaseStructure { FlatFile: ModelStatic>; fileIncludes: { model: ModelStatic>; separate: boolean }[]; + allTables: ModelStatic>[]; } export function newDatabase(sequelize: Sequelize): DatabaseStructure { // Define the models - const result = { + const tables = { // Top level entities Header: headerModel(sequelize), Packages: packagesModel(sequelize), @@ -106,21 +107,21 @@ export function newDatabase(sequelize: Sequelize): DatabaseStructure { }; // Define the relations - result.Header.hasMany(result.File); - result.File.hasMany(result.LicenseExpression); - result.File.hasMany(result.LicenseClues); - result.File.hasMany(result.LicensePolicy); - result.File.hasMany(result.Copyright); - result.File.hasMany(result.PackageData); - result.File.hasMany(result.Email); - result.File.hasMany(result.Url); - result.File.hasMany(result.ScanError); - result.Packages.hasMany(result.Dependencies, { + tables.Header.hasMany(tables.File); + tables.File.hasMany(tables.LicenseExpression); + tables.File.hasMany(tables.LicenseClues); + tables.File.hasMany(tables.LicensePolicy); + tables.File.hasMany(tables.Copyright); + tables.File.hasMany(tables.PackageData); + tables.File.hasMany(tables.Email); + tables.File.hasMany(tables.Url); + tables.File.hasMany(tables.ScanError); + tables.Packages.hasMany(tables.Dependencies, { sourceKey: "package_uid", foreignKey: "for_package_uid", as: "dependencies", }); - result.Dependencies.belongsTo(result.Packages, { + tables.Dependencies.belongsTo(tables.Packages, { foreignKey: "for_package_uid", as: "package", targetKey: "package_uid", @@ -128,17 +129,18 @@ export function newDatabase(sequelize: Sequelize): DatabaseStructure { // Include Array for queries const fileIncludes = [ - { model: result.LicenseExpression, separate: true }, - { model: result.LicensePolicy, separate: true }, - { model: result.Copyright, separate: true }, - { model: result.PackageData, separate: true }, - { model: result.Email, separate: true }, - { model: result.Url, separate: true }, - { model: result.ScanError, separate: true }, + { model: tables.LicenseExpression, separate: true }, + { model: tables.LicensePolicy, separate: true }, + { model: tables.Copyright, separate: true }, + { model: tables.PackageData, separate: true }, + { model: tables.Email, separate: true }, + { model: tables.Url, separate: true }, + { model: tables.ScanError, separate: true }, ]; return { - ...result, + ...tables, fileIncludes, + allTables: Object.values(tables), }; } diff --git a/src/services/models/databaseUtils.ts b/src/services/models/databaseUtils.ts index fb14de63..a84f7d5e 100644 --- a/src/services/models/databaseUtils.ts +++ b/src/services/models/databaseUtils.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2018 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -14,12 +14,13 @@ # */ -import Sequelize, { AbstractDataType } from "sequelize"; +import Sequelize from "sequelize"; // eslint-disable-next-line import/no-unresolved import { parse } from "license-expressions"; -// Stores an object as a json string internally, but as an object externally -export type JSON_Type = AbstractDataType; +// @TODO +// Store an object as a json string internally, but as an object externally +export type JSON_Type = string; export function jsonDataType(attributeName: string) { return { type: Sequelize.STRING, diff --git a/src/services/models/dependencies.ts b/src/services/models/dependencies.ts index 55f64ab9..b75a4ba5 100644 --- a/src/services/models/dependencies.ts +++ b/src/services/models/dependencies.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2018 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -14,25 +14,25 @@ # */ - import { Sequelize, StringDataType, IntegerDataType, DataTypes, Model } from 'sequelize'; -import { jsonDataType, JSON_Type } from './databaseUtils'; +import { Sequelize, DataTypes, Model } from "sequelize"; +import { jsonDataType, JSON_Type } from "./databaseUtils"; - export interface DependenciesAttributes { - id: IntegerDataType, - purl: StringDataType, - extracted_requirement: StringDataType, - scope: StringDataType, - is_runtime: boolean, - is_optional: boolean, - is_resolved: boolean, - resolved_package: JSON_Type, - dependency_uid: StringDataType, - for_package_uid: StringDataType, - datafile_path: string, - datasource_id: StringDataType, - } +export interface DependenciesAttributes { + id: number; + purl: string; + extracted_requirement: string; + scope: string; + is_runtime: boolean; + is_optional: boolean; + is_resolved: boolean; + resolved_package: JSON_Type; + dependency_uid: string; + for_package_uid: string; + datafile_path: string; + datasource_id: string; +} - export enum DEPENDENCY_SCOPES { +export enum DEPENDENCY_SCOPES { TEST = "test", COMPILE = "compile", DEVELOPMENT = "development", @@ -43,35 +43,35 @@ import { jsonDataType, JSON_Type } from './databaseUtils'; RUNTIME = "runtime", PROVIDED = "provided", DEPENDENCY_MGMT = "dependencymanagement", - } - +} + export default function dependenciesModel(sequelize: Sequelize) { return sequelize.define>( "dependencies", { - id: { - allowNull: false, - autoIncrement: true, - primaryKey: true, - type: DataTypes.INTEGER, - }, - purl: DataTypes.STRING, - extracted_requirement: DataTypes.STRING, - scope: DataTypes.STRING, - is_runtime: DataTypes.BOOLEAN, - is_optional: DataTypes.BOOLEAN, - is_resolved: DataTypes.BOOLEAN, - resolved_package: jsonDataType('resolved_package'), - dependency_uid: DataTypes.STRING, - for_package_uid: { - allowNull: true, - type: DataTypes.STRING, - }, - datafile_path: DataTypes.STRING, - datasource_id: DataTypes.STRING, + id: { + allowNull: false, + autoIncrement: true, + primaryKey: true, + type: DataTypes.INTEGER, + }, + purl: DataTypes.STRING, + extracted_requirement: DataTypes.STRING, + scope: DataTypes.STRING, + is_runtime: DataTypes.BOOLEAN, + is_optional: DataTypes.BOOLEAN, + is_resolved: DataTypes.BOOLEAN, + resolved_package: jsonDataType("resolved_package"), + dependency_uid: DataTypes.STRING, + for_package_uid: { + allowNull: true, + type: DataTypes.STRING, + }, + datafile_path: DataTypes.STRING, + datasource_id: DataTypes.STRING, }, { timestamps: false, } ); - } \ No newline at end of file +} diff --git a/src/services/models/email.ts b/src/services/models/email.ts index 373cdc0d..896ff92f 100644 --- a/src/services/models/email.ts +++ b/src/services/models/email.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2018 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -14,19 +14,19 @@ # */ -import { Model, Sequelize, DataTypes, IntegerDataType, StringDataType } from 'sequelize'; +import { Model, Sequelize, DataTypes } from "sequelize"; export interface EmailAttributes { - id: IntegerDataType, - email: StringDataType, - fileId: IntegerDataType, - start_line: IntegerDataType, - end_line: IntegerDataType + id: number; + email: string; + fileId: number; + start_line: number; + end_line: number; } export default function emailModel(sequelize: Sequelize) { return sequelize.define>( - 'emails', + "emails", { id: { allowNull: false, @@ -37,9 +37,10 @@ export default function emailModel(sequelize: Sequelize) { fileId: DataTypes.INTEGER, email: DataTypes.STRING, start_line: DataTypes.INTEGER, - end_line: DataTypes.INTEGER + end_line: DataTypes.INTEGER, }, { - timestamps: false - }); -} \ No newline at end of file + timestamps: false, + } + ); +} diff --git a/src/services/models/file.ts b/src/services/models/file.ts index dcd359c6..bedf9fc0 100644 --- a/src/services/models/file.ts +++ b/src/services/models/file.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2018 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -14,47 +14,46 @@ # */ -import { Sequelize, DataTypes, IntegerDataType, StringDataType, Model } from 'sequelize'; -import { jsonDataType, JSON_Type } from './databaseUtils'; +import { Sequelize, DataTypes, Model } from "sequelize"; +import { jsonDataType, JSON_Type } from "./databaseUtils"; export interface FileAttributes { - id: IntegerDataType, + id: number; path: string; - parent: StringDataType, - type: StringDataType, - name: StringDataType, - extension: StringDataType, - date: StringDataType, - size: IntegerDataType, - sha1: StringDataType, - md5: StringDataType, - files_count: IntegerDataType, - dirs_count: IntegerDataType, - mime_type: StringDataType, - file_type: StringDataType, - programming_language: StringDataType, - for_packages: JSON_Type, - is_binary: boolean, - is_text: boolean, - is_archive: boolean, - is_media: boolean, - is_source: boolean, - is_script: boolean, + parent: string; + type: string; + name: string; + extension: string; + date: string; + size: number; + sha1: string; + md5: string; + files_count: number; + dirs_count: number; + mime_type: string; + file_type: string; + programming_language: string; + for_packages: JSON_Type; + is_binary: boolean; + is_text: boolean; + is_archive: boolean; + is_media: boolean; + is_source: boolean; + is_script: boolean; } // interface OptionalFileAttributes // extends Optional {} - export default function fileModel(sequelize: Sequelize) { // return sequelize.define>( return sequelize.define>( - 'files', + "files", { path: { type: DataTypes.STRING, unique: true, - allowNull: false + allowNull: false, }, id: { allowNull: false, @@ -75,15 +74,16 @@ export default function fileModel(sequelize: Sequelize) { mime_type: DataTypes.STRING, file_type: DataTypes.STRING, programming_language: DataTypes.STRING, - for_packages: jsonDataType('for_packages'), + for_packages: jsonDataType("for_packages"), is_binary: DataTypes.BOOLEAN, is_text: DataTypes.BOOLEAN, is_archive: DataTypes.BOOLEAN, is_media: DataTypes.BOOLEAN, is_source: DataTypes.BOOLEAN, - is_script: DataTypes.BOOLEAN + is_script: DataTypes.BOOLEAN, }, { - timestamps: false - }); -} \ No newline at end of file + timestamps: false, + } + ); +} diff --git a/src/services/models/flatFile.ts b/src/services/models/flatFile.ts index 03b8ba1e..ca585c03 100644 --- a/src/services/models/flatFile.ts +++ b/src/services/models/flatFile.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2018 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -15,61 +15,55 @@ */ import path from "path"; -import { - Sequelize, - DataTypes, - IntegerDataType, - StringDataType, - Model, - NumberDataType, -} from "sequelize"; +import { Sequelize, DataTypes, Model } from "sequelize"; import { JSON_Type, jsonDataType, parentPath } from "./databaseUtils"; -export interface FlatFileAttributes { - id: IntegerDataType; - fileId: IntegerDataType; - path: string; - parent: StringDataType; - copyright_statements: JSON_Type; - copyright_holders: JSON_Type; - copyright_authors: JSON_Type; - copyright_start_line: JSON_Type; - copyright_end_line: JSON_Type; - - detected_license_expression: StringDataType; - detected_license_expression_spdx: StringDataType; - percentage_of_license_text: NumberDataType; - license_policy: JSON_Type; - license_clues: JSON_Type; - license_detections: JSON_Type; - +export interface InfoFlatFileAttributes { + type: string; + name: string; + extension: string; + date: string; + size: number; + sha1: string; + md5: string; + file_count: number; + mime_type: string; + file_type: string; + programming_language: string; + is_binary: boolean; + is_text: boolean; + is_archive: boolean; + is_media: boolean; + is_source: boolean; + is_script: boolean; +} +export interface EmailUrlFlatFileAttributes { email: JSON_Type; email_start_line: JSON_Type; email_end_line: JSON_Type; url: JSON_Type; url_start_line: JSON_Type; url_end_line: JSON_Type; - - type: StringDataType; - name: StringDataType; - extension: StringDataType; - date: StringDataType; - size: IntegerDataType; - sha1: StringDataType; - md5: StringDataType; - file_count: IntegerDataType; - mime_type: StringDataType; - file_type: StringDataType; - programming_language: StringDataType; +} +export interface LicenseFlatFileAttributes { + detected_license_expression: string; + detected_license_expression_spdx: string; + percentage_of_license_text: number; + license_policy: JSON_Type; + license_clues: JSON_Type; + license_detections: JSON_Type; +} +export interface CopyrightFlatFileAttributes { + copyright_statements: JSON_Type; + copyright_holders: JSON_Type; + copyright_authors: JSON_Type; + copyright_start_line: JSON_Type; + copyright_end_line: JSON_Type; +} +export interface PackageFlatFileAttributes { for_packages: JSON_Type; - is_binary: boolean; - is_text: boolean; - is_archive: boolean; - is_media: boolean; - is_source: boolean; - is_script: boolean; - scan_errors: JSON_Type; - +} +export interface PackageDataFlatFileAttributes { package_data_type: JSON_Type; package_data_namespace: JSON_Type; package_data_name: JSON_Type; @@ -99,6 +93,23 @@ export interface FlatFileAttributes { package_data_dependencies: JSON_Type; package_data_related_packages: JSON_Type; } +export interface ErrorsFlatFileAttributes { + scan_errors: JSON_Type; +} + +export interface FlatFileAttributes + extends InfoFlatFileAttributes, + EmailUrlFlatFileAttributes, + LicenseFlatFileAttributes, + CopyrightFlatFileAttributes, + PackageFlatFileAttributes, + PackageDataFlatFileAttributes, + ErrorsFlatFileAttributes { + id: number; + fileId: number; + path: string; + parent: string; +} export default function flatFileModel(sequelize: Sequelize) { const FlatFileModel = sequelize.define>( @@ -141,10 +152,10 @@ export default function flatFileModel(sequelize: Sequelize) { name: { type: DataTypes.STRING, defaultValue: "" }, extension: { type: DataTypes.STRING, defaultValue: "" }, date: { type: DataTypes.STRING, defaultValue: "" }, - size: { type: DataTypes.INTEGER, defaultValue: "" }, + size: { type: DataTypes.INTEGER, defaultValue: null }, sha1: { type: DataTypes.STRING, defaultValue: "" }, md5: { type: DataTypes.STRING, defaultValue: "" }, - file_count: { type: DataTypes.INTEGER, defaultValue: "" }, + file_count: { type: DataTypes.INTEGER, defaultValue: null }, mime_type: { type: DataTypes.STRING, defaultValue: "" }, file_type: { type: DataTypes.STRING, defaultValue: "" }, programming_language: { type: DataTypes.STRING, defaultValue: "" }, @@ -215,15 +226,15 @@ interface FlattenedFile { id: number; fileId: number; path: string; - parent: StringDataType; + parent: string; copyright_statements: unknown[]; copyright_holders: unknown[]; copyright_authors: unknown[]; copyright_start_line: unknown[]; copyright_end_line: unknown[]; - detected_license_expression: StringDataType; - detected_license_expression_spdx: StringDataType; + detected_license_expression: string; + detected_license_expression_spdx: string; percentage_of_license_text: number; license_policy: unknown[]; license_clues: unknown[]; @@ -236,17 +247,17 @@ interface FlattenedFile { url_start_line: unknown[]; url_end_line: unknown[]; - type: StringDataType; - name: StringDataType; - extension: StringDataType; - date: StringDataType; - size: StringDataType; - sha1: StringDataType; - md5: StringDataType; - file_count: IntegerDataType; - mime_type: StringDataType; - file_type: StringDataType; - programming_language: StringDataType; + type: string; + name: string; + extension: string; + date: string; + size: string; + sha1: string; + md5: string; + file_count: number; + mime_type: string; + file_type: string; + programming_language: string; for_packages: unknown[]; is_binary: boolean; is_text: boolean; @@ -254,7 +265,7 @@ interface FlattenedFile { is_media: boolean; is_source: boolean; is_script: boolean; - scan_errors: StringDataType[]; + scan_errors: string[]; package_data_type: unknown[]; package_data_namespace: unknown[]; @@ -381,13 +392,20 @@ export function flattenFile(file: any): FlattenedFile { }; } -function getLicensePolicyLabel(policy: any) { +function getLicensePolicyLabel(policy: any[]) { if (!policy) { - return; - } else if (!policy["label"]) { - return; + return []; } - return [policy["label"]]; + + // @TODO - Support Comprehensive renderer in Tableview + // return policy.map((policy) => ({ + // label: policy["label"], + // license_key: policy["license_key"], + // })); + + return policy.map( + (policy) => `${policy["license_key"]} - ${policy["label"]}` + ); } function getCopyrightValues( diff --git a/src/services/models/header.ts b/src/services/models/header.ts index cc67ce16..37e421ec 100644 --- a/src/services/models/header.ts +++ b/src/services/models/header.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2018 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -14,33 +14,35 @@ # */ -import { Sequelize, DataTypes, IntegerDataType, StringDataType, Model } from 'sequelize'; -import { JSON_Type, jsonDataType } from './databaseUtils'; +import { Sequelize, DataTypes, Model } from "sequelize"; +import { JSON_Type, jsonDataType } from "./databaseUtils"; export interface HeaderAttributes { - id: IntegerDataType, - tool_name: StringDataType, - tool_version: StringDataType, - notice: StringDataType, - duration: DataTypes.DoubleDataType, - header_content: StringDataType, - options: JSON_Type, - input: JSON_Type, - files_count: IntegerDataType, - output_format_version: StringDataType, - spdx_license_list_version: StringDataType, - operating_system: StringDataType, - cpu_architecture: StringDataType, - platform: StringDataType, - platform_version: StringDataType, - python_version: StringDataType, - workbench_version: StringDataType, - workbench_notice: StringDataType, + id: number; + json_file_name: string; + tool_name: string; + tool_version: string; + notice: string; + duration: number; + header_content: string; + options: JSON_Type; + input: JSON_Type; + files_count: number; + output_format_version: string; + spdx_license_list_version: string; + operating_system: string; + cpu_architecture: string; + platform: string; + platform_version: string; + python_version: string; + workbench_version: string; + workbench_notice: string; + errors: JSON_Type; } export default function headerModel(sequelize: Sequelize) { return sequelize.define>( - 'headers', + "headers", { // @TODO: The notices and versions should be in their own table // See https://github.com/nexB/aboutcode/issues/7 @@ -51,21 +53,22 @@ export default function headerModel(sequelize: Sequelize) { primaryKey: true, type: DataTypes.INTEGER, }, + json_file_name: DataTypes.STRING, tool_name: DataTypes.STRING, tool_version: DataTypes.STRING, notice: DataTypes.STRING, duration: DataTypes.DOUBLE, - options: jsonDataType('options'), - input: jsonDataType('input'), + options: jsonDataType("options"), + input: jsonDataType("input"), header_content: DataTypes.STRING, files_count: DataTypes.INTEGER, output_format_version: { type: DataTypes.STRING, - defaultValue: '0.1.0', + defaultValue: null, }, spdx_license_list_version: { type: DataTypes.STRING, - defaultValue: '1.00', + defaultValue: null, }, operating_system: { type: DataTypes.STRING, @@ -90,7 +93,12 @@ export default function headerModel(sequelize: Sequelize) { workbench_version: DataTypes.STRING, workbench_notice: { type: DataTypes.STRING, - defaultValue: 'None', + defaultValue: "None", }, - }); -} \ No newline at end of file + errors: jsonDataType("errors"), + }, + { + timestamps: false, + } + ); +} diff --git a/src/services/models/licenseClues.ts b/src/services/models/licenseClues.ts index be2c573e..a5c9bff9 100644 --- a/src/services/models/licenseClues.ts +++ b/src/services/models/licenseClues.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2019 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -14,45 +14,45 @@ # */ -import { - Sequelize, - DataTypes, - StringDataType, - Model, - NumberDataType, -} from "sequelize"; +import { Sequelize, DataTypes, Model } from "sequelize"; import { JSON_Type, jsonDataType } from "./databaseUtils"; export interface LicenseClueAttributes { - id: NumberDataType; - fileId: NumberDataType; - filePath: StringDataType; - fileClueIdx: NumberDataType; - score: NumberDataType; - license_expression: StringDataType; - rule_identifier: StringDataType; + id: number; + fileId: number; + filePath: string; + fileClueIdx: number; + score: number; + license_expression: string; + rule_identifier: string; matches: JSON_Type; file_regions: JSON_Type; } export default function licenseClueModel(sequelize: Sequelize) { - return sequelize.define>("license_clues", { - id: { - allowNull: false, - autoIncrement: true, - primaryKey: true, - type: DataTypes.INTEGER, + return sequelize.define>( + "license_clues", + { + id: { + allowNull: false, + autoIncrement: true, + primaryKey: true, + type: DataTypes.INTEGER, + }, + fileId: DataTypes.NUMBER, + filePath: DataTypes.STRING, + fileClueIdx: { + type: DataTypes.INTEGER, + defaultValue: 0, + }, + score: DataTypes.NUMBER, + license_expression: DataTypes.STRING, + rule_identifier: DataTypes.STRING, + matches: jsonDataType("matches"), + file_regions: jsonDataType("file_regions"), }, - fileId: DataTypes.NUMBER, - filePath: DataTypes.STRING, - fileClueIdx: { - type: DataTypes.INTEGER, - defaultValue: 0, - }, - score: DataTypes.NUMBER, - license_expression: DataTypes.STRING, - rule_identifier: DataTypes.STRING, - matches: jsonDataType("matches"), - file_regions: jsonDataType("file_regions"), - }); + { + timestamps: false, + } + ); } diff --git a/src/services/models/licenseDetections.ts b/src/services/models/licenseDetections.ts index f27eee95..8eb2b7c1 100644 --- a/src/services/models/licenseDetections.ts +++ b/src/services/models/licenseDetections.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2019 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -14,19 +14,13 @@ # */ -import { - Sequelize, - DataTypes, - StringDataType, - Model, - NumberDataType, -} from "sequelize"; +import { Sequelize, DataTypes, Model } from "sequelize"; import { jsonDataType, JSON_Type } from "./databaseUtils"; export interface LicenseDetectionAttributes { - identifier: StringDataType; - license_expression: StringDataType; - detection_count: NumberDataType; + identifier: string; + license_expression: string; + detection_count: number; detection_log: JSON_Type; matches: JSON_Type; file_regions: JSON_Type; @@ -46,6 +40,9 @@ export default function licenseDetectionModel(sequelize: Sequelize) { detection_log: jsonDataType("detection_log"), matches: jsonDataType("matches"), file_regions: jsonDataType("file_regions"), + }, + { + timestamps: false, } ); } diff --git a/src/services/models/licenseExpression.ts b/src/services/models/licenseExpression.ts index e1622f18..edd6daf7 100644 --- a/src/services/models/licenseExpression.ts +++ b/src/services/models/licenseExpression.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2018 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -14,21 +14,14 @@ # */ -import { - Sequelize, - StringDataType, - IntegerDataType, - DataTypes, - Model, - Optional, -} from "sequelize"; +import { Sequelize, DataTypes, Model, Optional } from "sequelize"; import { jsonDataType, JSON_Type } from "./databaseUtils"; export interface LicenseExpressionAttributes { - id: IntegerDataType; - fileId: IntegerDataType; - license_expression: StringDataType; - license_expression_spdx: StringDataType; + id: number; + fileId: number; + license_expression: string; + license_expression_spdx: string; license_keys: JSON_Type; license_keys_spdx: JSON_Type; } diff --git a/src/services/models/licensePolicy.ts b/src/services/models/licensePolicy.ts index 96ad06f0..ae155fe2 100644 --- a/src/services/models/licensePolicy.ts +++ b/src/services/models/licensePolicy.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2019 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -14,20 +14,20 @@ # */ -import { Sequelize, DataTypes, IntegerDataType, StringDataType, Model } from 'sequelize'; +import { Sequelize, DataTypes, Model } from "sequelize"; export interface LicensePolicyAttributes { - id: IntegerDataType, - fileId: IntegerDataType, - license_key: StringDataType, - label: StringDataType, - color_code: StringDataType, - icon: StringDataType, + id: number; + fileId: number; + license_key: string; + label: string; + color_code: string; + icon: string; } export default function licensePolicyModel(sequelize: Sequelize) { return sequelize.define>( - 'license_policy', + "license_policy", { id: { allowNull: false, @@ -39,9 +39,10 @@ export default function licensePolicyModel(sequelize: Sequelize) { license_key: DataTypes.STRING, label: DataTypes.STRING, color_code: DataTypes.STRING, - icon: DataTypes.STRING + icon: DataTypes.STRING, }, { - timestamps: false - }); -} \ No newline at end of file + timestamps: false, + } + ); +} diff --git a/src/services/models/licenseRuleReference.ts b/src/services/models/licenseRuleReference.ts index dffc9291..8378bc4e 100644 --- a/src/services/models/licenseRuleReference.ts +++ b/src/services/models/licenseRuleReference.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2019 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -14,21 +14,15 @@ # */ -import { - Sequelize, - DataTypes, - IntegerDataType, - StringDataType, - Model, -} from "sequelize"; +import { Sequelize, DataTypes, Model } from "sequelize"; // import { JSON_Type, jsonDataType } from "./databaseUtils"; export interface LicenseRuleReferenceAttributes { - id: IntegerDataType; - license_expression: StringDataType; - identifier: StringDataType; - language: StringDataType; - rule_url: StringDataType; + id: number; + license_expression: string; + identifier: string; + language: string; + rule_url: string; is_license_text: boolean; is_license_notice: boolean; is_license_reference: boolean; @@ -42,13 +36,13 @@ export interface LicenseRuleReferenceAttributes { relevance: number; minimum_coverage: number; // referenced_filenames: JSON_Type; - // notes: StringDataType; + // notes: string; // ignorable_copyrights: JSON_Type; // ignorable_holders: JSON_Type; // ignorable_authors: JSON_Type; // ignorable_urls: JSON_Type; // ignorable_emails: JSON_Type; - text: StringDataType; + text: string; } export default function licenseRuleReferenceModel(sequelize: Sequelize) { @@ -90,4 +84,4 @@ export default function licenseRuleReferenceModel(sequelize: Sequelize) { timestamps: false, } ); -} \ No newline at end of file +} diff --git a/src/services/models/packageData.ts b/src/services/models/packageData.ts index 171b06cc..7abb09e3 100644 --- a/src/services/models/packageData.ts +++ b/src/services/models/packageData.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2018 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -14,46 +14,46 @@ # */ -import { Sequelize, DataTypes, IntegerDataType, StringDataType, Model } from 'sequelize'; -import { jsonDataType, JSON_Type } from './databaseUtils'; +import { Sequelize, DataTypes, Model } from "sequelize"; +import { jsonDataType, JSON_Type } from "./databaseUtils"; export interface PackageDataAttributes { - id: IntegerDataType, - fileId: IntegerDataType, - type: StringDataType, - namespace: StringDataType, - name: StringDataType, - version: StringDataType, - qualifiers: JSON_Type, - subpath: StringDataType, - purl: StringDataType, - primary_language: StringDataType, - code_type: StringDataType, // @QUERY - Does exist ? - description: StringDataType, - size: IntegerDataType, - release_date: StringDataType, - parties: JSON_Type, - keywords: JSON_Type, - homepage_url: StringDataType, - download_url: StringDataType, - download_checksums: JSON_Type, - bug_tracking_url: StringDataType, - code_view_url: StringDataType, - vcs_tool: StringDataType, - vcs_repository: StringDataType, - vcs_revision: StringDataType, - copyright: StringDataType, - declared_license_expression: StringDataType, - declared_license_expression_spdx: StringDataType, - extracted_license_statement: StringDataType, - notice_text: StringDataType, - dependencies: JSON_Type, - related_packages: JSON_Type, // @QUERY - Does exist ? + id: number; + fileId: number; + type: string; + namespace: string; + name: string; + version: string; + qualifiers: JSON_Type; + subpath: string; + purl: string; + primary_language: string; + code_type: string; // @QUERY - Does exist ? + description: string; + size: number; + release_date: string; + parties: JSON_Type; + keywords: JSON_Type; + homepage_url: string; + download_url: string; + download_checksums: JSON_Type; + bug_tracking_url: string; + code_view_url: string; + vcs_tool: string; + vcs_repository: string; + vcs_revision: string; + copyright: string; + declared_license_expression: string; + declared_license_expression_spdx: string; + extracted_license_statement: string; + notice_text: string; + dependencies: JSON_Type; + related_packages: JSON_Type; // @QUERY - Does exist ? } export default function packageDataModel(sequelize: Sequelize) { return sequelize.define>( - 'package_data', + "package_data", { id: { allowNull: false, @@ -66,7 +66,7 @@ export default function packageDataModel(sequelize: Sequelize) { namespace: DataTypes.STRING, name: DataTypes.STRING, version: DataTypes.STRING, - qualifiers: jsonDataType('qualifiers'), + qualifiers: jsonDataType("qualifiers"), subpath: DataTypes.STRING, purl: DataTypes.STRING, primary_language: DataTypes.STRING, @@ -74,11 +74,11 @@ export default function packageDataModel(sequelize: Sequelize) { description: DataTypes.STRING, size: DataTypes.INTEGER, release_date: DataTypes.STRING, - parties: jsonDataType('parties'), - keywords: jsonDataType('keywords'), + parties: jsonDataType("parties"), + keywords: jsonDataType("keywords"), homepage_url: DataTypes.STRING, download_url: DataTypes.STRING, - download_checksums: jsonDataType('download_checksums'), + download_checksums: jsonDataType("download_checksums"), bug_tracking_url: DataTypes.STRING, code_view_url: DataTypes.STRING, vcs_tool: DataTypes.STRING, @@ -89,10 +89,11 @@ export default function packageDataModel(sequelize: Sequelize) { declared_license_expression_spdx: DataTypes.STRING, extracted_license_statement: DataTypes.STRING, notice_text: DataTypes.STRING, - dependencies: jsonDataType('dependencies'), - related_packages: jsonDataType('related_packages') // @QUERY - Does exist ? + dependencies: jsonDataType("dependencies"), + related_packages: jsonDataType("related_packages"), // @QUERY - Does exist ? }, { - timestamps: false - }); -} \ No newline at end of file + timestamps: false, + } + ); +} diff --git a/src/services/models/packages.ts b/src/services/models/packages.ts index cc9359d7..69615dfc 100644 --- a/src/services/models/packages.ts +++ b/src/services/models/packages.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2018 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -14,56 +14,50 @@ # */ -import { - Sequelize, - StringDataType, - IntegerDataType, - DataTypes, - Model, -} from "sequelize"; +import { Sequelize, DataTypes, Model } from "sequelize"; import { jsonDataType, JSON_Type } from "./databaseUtils"; export interface PackagesAttributes { - id: IntegerDataType; - type: StringDataType; - namespace: StringDataType | null; - name: StringDataType; - version: StringDataType | null; + id: number; + type: string; + namespace: string; + name: string; + version: string; qualifiers: JSON_Type; - subpath: StringDataType | null; - primary_language: StringDataType | null; - description: StringDataType | null; - release_date: StringDataType | null; + subpath: string; + primary_language: string; + description: string; + release_date: string; parties: JSON_Type; keywords: JSON_Type; - homepage_url: StringDataType | null; - download_url: StringDataType | null; - size: StringDataType | null; - sha1: StringDataType | null; - md5: StringDataType | null; - sha256: StringDataType | null; - sha512: StringDataType | null; - bug_tracking_url: StringDataType | null; - code_view_url: StringDataType | null; - vcs_url: StringDataType | null; - copyright: StringDataType | null; - declared_license_expression: StringDataType | null; - declared_license_expression_spdx: StringDataType | null; + homepage_url: string; + download_url: string; + size: string; + sha1: string; + md5: string; + sha256: string; + sha512: string; + bug_tracking_url: string; + code_view_url: string; + vcs_url: string; + copyright: string; + declared_license_expression: string; + declared_license_expression_spdx: string; license_detections: JSON_Type; - other_license_expression: StringDataType | null; - other_license_expression_spdx: StringDataType | null; + other_license_expression: string; + other_license_expression_spdx: string; other_license_detections: JSON_Type; - extracted_license_statement: StringDataType | null; - notice_text: StringDataType | null; + extracted_license_statement: string; + notice_text: string; source_packages: JSON_Type; extra_data: JSON_Type; - repository_homepage_url: StringDataType | null; - repository_download_url: StringDataType | null; - api_data_url: StringDataType | null; - package_uid: StringDataType; + repository_homepage_url: string; + repository_download_url: string; + api_data_url: string; + package_uid: string; datafile_paths: JSON_Type; datasource_ids: JSON_Type; - purl: StringDataType; + purl: string; } export default function packagesModel(sequelize: Sequelize) { diff --git a/src/services/models/scanError.ts b/src/services/models/scanError.ts index 798f857a..9929bb91 100644 --- a/src/services/models/scanError.ts +++ b/src/services/models/scanError.ts @@ -1,7 +1,6 @@ -import { Model } from 'sequelize'; /* # - # Copyright (c) 2018 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -15,19 +14,20 @@ import { Model } from 'sequelize'; # */ -import { Sequelize, StringDataType, DataTypes } from 'sequelize'; +import { Sequelize, DataTypes, Model } from "sequelize"; export interface ScanErrorAttributes { - scan_error: StringDataType + scan_error: string; } export default function scanErrorModel(sequelize: Sequelize) { return sequelize.define>( - 'scan_errors', + "scan_errors", { - scan_error: DataTypes.STRING + scan_error: DataTypes.STRING, }, { - timestamps: false - }); -} \ No newline at end of file + timestamps: false, + } + ); +} diff --git a/src/services/models/url.ts b/src/services/models/url.ts index 55ae02c7..4bd1cd6c 100644 --- a/src/services/models/url.ts +++ b/src/services/models/url.ts @@ -1,7 +1,6 @@ -import { Model } from 'sequelize'; /* # - # Copyright (c) 2018 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -15,19 +14,19 @@ import { Model } from 'sequelize'; # */ -import { Sequelize, StringDataType, IntegerDataType, DataTypes } from 'sequelize'; +import { Sequelize, DataTypes, Model } from "sequelize"; export interface UrlAttributes { - id: IntegerDataType, - fileId: IntegerDataType, - url: StringDataType, - start_line: IntegerDataType, - end_line: IntegerDataType, + id: number; + fileId: number; + url: string; + start_line: number; + end_line: number; } export default function urlModel(sequelize: Sequelize) { return sequelize.define>( - 'urls', + "urls", { id: { allowNull: false, @@ -38,9 +37,10 @@ export default function urlModel(sequelize: Sequelize) { fileId: DataTypes.INTEGER, url: DataTypes.STRING, start_line: DataTypes.INTEGER, - end_line: DataTypes.INTEGER + end_line: DataTypes.INTEGER, }, { - timestamps: false - }); -} \ No newline at end of file + timestamps: false, + } + ); +} diff --git a/src/services/workbenchDB.ts b/src/services/workbenchDB.ts index ec40b764..4efe3522 100644 --- a/src/services/workbenchDB.ts +++ b/src/services/workbenchDB.ts @@ -1,6 +1,6 @@ /* # - # Copyright (c) 2017 - 2019 nexB Inc. and others. All rights reserved. + # Copyright (c) nexB Inc. and others. All rights reserved. # https://nexb.com and https://github.com/nexB/scancode-workbench/ # The ScanCode Workbench software is licensed under the Apache License version 2.0. # ScanCode is a trademark of nexB Inc. @@ -15,19 +15,15 @@ */ import fs from "fs"; -import $ from "jquery"; import JSONStream from "JSONStream"; import path from "path"; import { DataNode } from "rc-tree/lib/interface"; import { toast } from "react-toastify"; import { BulkCreateOptions, - DataTypes, FindOptions, - IntegerDataType, Model, Sequelize, - StringDataType, Transaction, TransactionOptions, } from "sequelize"; @@ -38,7 +34,6 @@ import { DebugLogger } from "../utils/logger"; import { DatabaseStructure, newDatabase } from "./models/database"; import { filterSpdxKeys, - JSON_Type, parentPath, parseSubExpressions, parseTokenKeysFromExpression, @@ -49,12 +44,16 @@ import { LicenseClue, LicenseExpressionKey, LicenseReference, + ParsedJsonHeader, Resource, ResourceLicenseDetection, TopLevelLicenseDetection, } from "./importedJsonTypes"; import { LicenseDetectionAttributes } from "./models/licenseDetections"; import { LicenseClueAttributes } from "./models/licenseClues"; +import packageJson from "../../package.json"; + +const { version: workbenchVersion } = packageJson; /** * Manages the database created from a ScanCode JSON input. @@ -62,7 +61,7 @@ import { LicenseClueAttributes } from "./models/licenseClues"; * * The config will load an existing database or will create a new, empty * database if none exists. For a new database, the data is loaded from a JSON - * file by calling addFromJson(jsonFileName). + * file by calling addFromJson(jsonFilePath). * * @param config * @param config.dbName @@ -73,13 +72,13 @@ import { LicenseClueAttributes } from "./models/licenseClues"; interface WorkbenchDbConfig { dbName: string; - dbStorage: string; + dbStoragePath: string; dbUser?: string; dbPassword?: string; } interface TopLevelDataFormat { header: unknown; - parsedHeader: unknown; + parsedHeader: ParsedJsonHeader; packages: unknown[]; dependencies: unknown[]; license_clues: LicenseClue[]; @@ -90,7 +89,14 @@ interface TopLevelDataFormat { license_references_spdx_map: Map; license_rule_references: unknown[]; } -type FileDataNode = Model & DataNode; +export interface FileDataNode extends DataNode { + id: number; + path: string; + parent: string; + name: string; + type: string; + children?: FileDataNode[]; +} // @TODO // function sortChildren(node: Model){ @@ -110,26 +116,30 @@ export class WorkbenchDB { sync: Promise; config: WorkbenchDbConfig; - constructor(config: WorkbenchDbConfig) { + constructor(config?: WorkbenchDbConfig & { deleteExisting?: boolean }) { // Constructor returns an object which effectively represents a connection // to the db arguments (name of db, username for db, pw for that user) const name = config && config.dbName ? config.dbName : "tmp"; const user = config && config.dbUser ? config.dbUser : null; const password = config && config.dbPassword ? config.dbPassword : null; - const storage = config && config.dbStorage ? config.dbStorage : ":memory:"; + const storagePath = + config && config.dbStoragePath ? config.dbStoragePath : ":memory:"; this.config = { dbName: name, - dbStorage: storage, + dbStoragePath: storagePath, dbUser: user, dbPassword: password, - } + }; - // console.log("Sequelize DB details", { - // name, - // user, - // password, - // storage, - // }); + // Clear existing data in sqlite file (if any) + if (config.deleteExisting && fs.existsSync(storagePath)) { + fs.unlink(storagePath, (err: Error) => { + if (err) { + throw err; + } + console.info(`Deleted existing db: ${storagePath}`); + }); + } this.sequelize = new Sequelize(name, user, password, { dialect: "sqlite", @@ -137,7 +147,7 @@ export class WorkbenchDB { // dialectOptions: { // sqlite3: Database, // }, - storage: storage, + storage: storagePath, logging: false, }); this.db = newDatabase(this.sequelize); @@ -157,15 +167,6 @@ export class WorkbenchDB { ); } - // Get ScanCode Toolkit information - getScanCodeInfo() { - return this.sync.then((db) => - db.Header.findOne({ - attributes: ["scancode_notice", "scancode_version", "scancode_options"], - }) - ); - } - getScanInfo() { return this.sync.then((db) => db.Header.findOne()); } @@ -202,18 +203,22 @@ export class WorkbenchDB { // Uses the files table to do a findOne query findOne(query: FindOptions) { - query = $.extend(query, { - include: this.db.fileIncludes, - }); - return this.sync.then((db) => db.File.findOne(query)); + return this.sync.then((db) => + db.File.findOne({ + ...query, + include: this.db.fileIncludes, + }) + ); } // Uses the files table to do a findAll query findAll(query: FindOptions) { - query = $.extend(query, { - include: this.db.fileIncludes, - }); - return this.sync.then((db) => db.File.findAll(query)); + return this.sync.then((db) => + db.File.findAll({ + ...query, + include: this.db.fileIncludes, + }) + ); } // Uses findAll to return JSTree format from the File Table @@ -223,56 +228,42 @@ export class WorkbenchDB { }; return this.sync .then((db) => db.File.findAll(fileQuery)) - .then((files) => { - const result = this.listToTreeData(files as FileDataNode[]); - return result; - }); + .then((files) => this.listToTreeData(files)); } - listToTreeData( - fileList: FileDataNode[] & Model[] - ) { - const pathToIndexMap = new Map(); + listToTreeData(fileList: Model[]) { + const pathToNodeMap = new Map(); const roots: FileDataNode[] = []; fileList.forEach((file) => { - // Maintain path mapping for each file - pathToIndexMap.set( - file.getDataValue("path"), - Number(file.getDataValue("id")) - ); - - // Setup DataNode properties - file.key = file.getDataValue("path"); - file.children = []; - file.title = path.basename(file.getDataValue("path")); + // Maintain path mapping for each file to DataNode properties + const filePath = file.getDataValue("path"); + const fileType = file.getDataValue("type") || "file"; + pathToNodeMap.set(filePath, { + id: file.getDataValue("id"), + key: filePath, + title: path.basename(filePath), + path: filePath, + parent: file.getDataValue("parent"), + name: file.getDataValue("name"), + type: fileType, + isLeaf: fileType == "file", + ...(fileType == "directory" && { children: [] }), + // @TODO - Trial to fix rc-tree showing file icon instead of empty directory https://github.com/nexB/scancode-workbench/issues/542 + // isLeaf: fileType == "file", + }); }); fileList.forEach((file) => { - const fileParentPath = file.getDataValue("parent").toString({}); + const fileParentPath = file.getDataValue("parent"); + const fileNode = pathToNodeMap.get(file.getDataValue("path")); if (Number(file.getDataValue("id")) !== 0) { - if (pathToIndexMap.has(fileParentPath)) { - // @TODO - // if you have dangling branches check that map[node.parentId] exists - fileList[pathToIndexMap.get(fileParentPath)].children.push(file); + if (pathToNodeMap.has(fileParentPath)) { + pathToNodeMap.get(fileParentPath).children?.push(fileNode); } } else { - roots.push(file); + roots.push(fileNode); } - - // @TODO - Trial to fix rc-tree showing file icon instead of directory https://github.com/nexB/scancode-workbench/issues/542 - // fileList.forEach(file => { - // if(file.getDataValue('type').toString({}) === 'directory' && !file.children){ - // file.children=[]; - // file.isLeaf=true; - // } - // file.children?.forEach((file: any) => { - // if(file.getDataValue('type').toString({}) === 'directory' && !file.children){ - // file.children=[]; - // file.isLeaf=true; - // } - // }) - // }) }); roots.forEach(sortChildren); @@ -281,17 +272,16 @@ export class WorkbenchDB { // Add rows to the flattened files table from a ScanCode json object addFromJson( - jsonFileName: string, - workbenchVersion: string, + jsonFilePath: string, onProgressUpdate: (progress: number) => void ): Promise { - if (!jsonFileName) { - throw new Error("Invalid json file name: " + jsonFileName); + if (!jsonFilePath) { + throw new Error("Invalid json file name: " + jsonFilePath); } - // console.log("Adding from json with params", { jsonFileName, workbenchVersion, onProgressUpdate }); - const stream = fs.createReadStream(jsonFileName, { encoding: "utf8" }); - let headerId: number | null = null; + // console.log("Adding from json with params", { jsonFilePath, workbenchVersion, onProgressUpdate }); + + const stream = fs.createReadStream(jsonFilePath, { encoding: "utf8" }); let files_count = 0; let dirs_count = 0; let index = 0; @@ -300,232 +290,225 @@ export class WorkbenchDB { const batchSize = 1000; let files: Resource[] = []; let progress = 0; - let promiseChain: Promise = this.sync; + let promiseChain: Promise = this.sync; - console.log("JSON parse started (step 1)"); + console.info("JSON parse started (step 1)"); console.time("json-parse-time"); - return new Promise((resolve, reject) => { - // eslint-disable-next-line @typescript-eslint/no-this-alias - const primaryPromise = this; - - let batchCount = 0; - - let TopLevelData: TopLevelDataFormat = null; - - stream - .pipe(JSONStream.parse("files.*")) // files field is piped to 'data' & rest to 'header' - .on("header", (topLevelData: any) => { - console.log( - "\n----------------------------------------------------------------\n" - ); - const header = topLevelData.headers - ? topLevelData.headers[0] || {} - : {}; - const parsedHeader = this._parseHeader(workbenchVersion, header); - const packages = topLevelData.packages || []; - const dependencies = topLevelData.dependencies || []; - const license_detections: TopLevelLicenseDetection[] = ( - topLevelData.license_detections || [] - ).map((detection: TopLevelLicenseDetection) => { - // Handle duplicated match_data present at top level in prev toolkit versions - // upto v32.0.0rc2 - return { - identifier: detection.identifier, - license_expression: detection.license_expression, - detection_count: - detection.detection_count !== undefined - ? detection.detection_count - : detection.count || 0, - }; - }); - const license_detections_map = new Map< - string, - TopLevelLicenseDetection - >( - license_detections.map((detection) => [ - detection.identifier, - detection, - ]) - ); - const license_references: LicenseReference[] = - topLevelData.license_references || []; - const license_references_mapping = new Map( - license_references.map((ref) => [ref.key, ref]) - ); - const license_references_mapping_spdx = new Map( - license_references.map((ref) => [ref.spdx_license_key, ref]) - ); - const license_rule_references: any[] = - topLevelData.license_rule_references || []; - - TopLevelData = { - header, - parsedHeader, - packages, - dependencies, - license_detections, + return this.sync.then( + () => + new Promise((resolve, reject) => { + // eslint-disable-next-line @typescript-eslint/no-this-alias + const primaryPromise = this; + + let batchCount = 0; + let TopLevelData: TopLevelDataFormat = { + header: null, + parsedHeader: this._parseHeader(jsonFilePath, workbenchVersion, {}), + packages: [], + dependencies: [], license_clues: [], - license_references_map: license_references_mapping, - license_references_spdx_map: license_references_mapping_spdx, - license_detections_map, - license_references, - license_rule_references, + license_detections: [], + license_detections_map: new Map(), + license_references: [], + license_references_map: new Map(), + license_references_spdx_map: new Map(), + license_rule_references: [], }; - console.log("Parsed Top level data", TopLevelData); - - files_count = Number(parsedHeader.files_count); - promiseChain = promiseChain - .then(() => this.db.Packages.bulkCreate(packages)) - .then(() => this.db.Dependencies.bulkCreate(dependencies)) - .then(() => - this.db.LicenseRuleReferences.bulkCreate(license_rule_references) - ) - .then(() => this.db.Header.create(parsedHeader)) - .then((header) => (headerId = Number(header.getDataValue("id")))) - .catch((err: unknown) => { - console.error( - "Some error parsing Top level data (caught in workbenchDB) !!", - err, - TopLevelData + stream + .pipe(JSONStream.parse("files.*")) // files field is piped to 'data' & rest to 'header' (Includes other top level fields) + .on("header", (rawTopLevelData: any) => { + TopLevelData = this._parseTopLevelFields( + jsonFilePath, + rawTopLevelData ); - reject(err); - }); - console.log( - "\n----------------------------------------------------------------\n" - ); - }) - .on("data", function (file?: Resource) { - if (!file) return; + files_count = Number(TopLevelData.parsedHeader.files_count); + promiseChain = promiseChain + .then(() => this.db.Packages.bulkCreate(TopLevelData.packages)) + .then(() => + this.db.Dependencies.bulkCreate(TopLevelData.dependencies) + ) + .then(() => + this.db.LicenseRuleReferences.bulkCreate( + TopLevelData.license_rule_references + ) + ) + .catch((err: unknown) => { + console.error( + "Some error parsing Top level data (caught in workbenchDB) !!", + err, + TopLevelData + ); + reject(err); + }); + }) + .on("data", function (file?: Resource) { + if (!file) return; - if (!rootPath) { - rootPath = file.path.split("/")[0]; - } - if (rootPath === file.path) { - hasRootPath = true; - } - // @TODO: When/if scancode reports directories in its header, this needs - // to be replaced. - if (index === 0) { - dirs_count = file.dirs_count; - } - file.id = index++; - - primaryPromise._parseLicenseDetections(file, TopLevelData); - primaryPromise._parseLicenseClues(file, TopLevelData); - - files.push(file); - if (files.length >= batchSize) { - // Need to set a new variable before handing to promise - this.pause(); - - promiseChain = promiseChain - .then(() => primaryPromise._batchCreateFiles(files, headerId)) - .then(() => { - const currentProgress = Math.round( - (index / (files_count + dirs_count)) * 100 - ); - if (currentProgress > progress) { - progress = currentProgress; - console.log( + if (!rootPath) { + rootPath = file.path.split("/")[0]; + } + if (rootPath === file.path) { + hasRootPath = true; + } + // @TODO: When/if scancode reports directories in its header, this needs + // to be replaced. + if (index === 0) { + dirs_count = file.dirs_count; + } + file.id = index++; + + primaryPromise._parseLicenseDetections(file, TopLevelData); + primaryPromise._parseLicenseClues(file, TopLevelData); + + files.push(file); + if (files.length >= batchSize) { + // Need to set a new variable before handing to promise + this.pause(); + + promiseChain = promiseChain + .then(() => primaryPromise._batchCreateFiles(files)) + .then(() => { + const currentProgress = Math.round( + (index / (files_count + dirs_count)) * 100 + ); + if (currentProgress > progress) { + progress = currentProgress; + console.info( + `Batch-${++batchCount} completed, \n`, + `JSON Import progress @ ${progress} % -- ${index}/${files_count}+${dirs_count}` + ); + onProgressUpdate(progress); + } + }) + .then(() => { + files = []; + this.resume(); + }) + .catch((e: unknown) => reject(e)); + } + }) + .on("end", () => { + // Add root directory into data + // See https://github.com/nexB/scancode-toolkit/issues/543 + promiseChain + .then(() => { + if (rootPath && !hasRootPath) { + files.push({ + path: rootPath, + name: rootPath, + type: "directory", + files_count: files_count, + }); + } + }) + .then(() => this._batchCreateFiles(files)) + .then(() => this.db.Header.create(TopLevelData.parsedHeader)) + .then(() => { + console.info( `Batch-${++batchCount} completed, \n`, `JSON Import progress @ ${progress} % -- ${index}/${files_count}+${dirs_count}` ); - onProgressUpdate(progress); - } - }) - .then(() => { - files = []; - this.resume(); - }) - .catch((e: unknown) => reject(e)); - } - }) - .on("end", () => { - console.log( - "\n----------------------------------------------------------------\n" - ); - - // Add root directory into data - // See https://github.com/nexB/scancode-toolkit/issues/543 - promiseChain - .then(() => { - if (rootPath && !hasRootPath) { - files.push({ - path: rootPath, - name: rootPath, - type: "directory", - files_count: files_count, - }); - } + onProgressUpdate(90); + }) + .then(() => + this.db.LicenseDetections.bulkCreate( + TopLevelData.license_detections as any as LicenseDetectionAttributes[] + ) + ) + .then(() => + this.db.LicenseClues.bulkCreate( + TopLevelData.license_clues as any as LicenseClueAttributes[] + ) + ) + .then(() => { + onProgressUpdate(100); + console.info("JSON parse completed (final step)"); + console.timeEnd("json-parse-time"); + resolve(); + }) + .catch((e: unknown) => reject(e)); }) - .then(() => this._batchCreateFiles(files, headerId)) - .then(() => { - console.log( - `Batch-${++batchCount} completed, \n`, - `JSON Import progress @ ${progress} % -- ${index}/${files_count}+${dirs_count}` + .on("error", (err: unknown) => { + console.error( + "Some error parsing data (caught in workbenchDB) !!", + err ); - onProgressUpdate(90); - console.log("Resource data updated"); - resolve(); - }) - .then(() => - this.db.LicenseDetections.bulkCreate( - TopLevelData.license_detections as any as LicenseDetectionAttributes[] - ) - ) - .then(() => - this.db.LicenseClues.bulkCreate( - TopLevelData.license_clues as any as LicenseClueAttributes[] - ) - ) - .then(() => { - onProgressUpdate(100); - console.log("JSON parse completed (final step)"); - console.timeEnd("json-parse-time"); - }) - .catch((e: unknown) => reject(e)); + toast.error( + "Some error parsing data !! \nPlease check console for more info" + ); + logDependenciesOnError(); + reject(err); + }); }) - .on("error", (err: unknown) => { - console.error( - "Some error parsing data (caught in workbenchDB) !!", - err - ); - toast.error( - "Some error parsing data !! \nPlease check console for more info" - ); - logDependenciesOnError(); - reject(err); - }); - }); + ); } - _parseHeader(workbenchVersion: string, header: any) { - interface ParsedJsonHeader { - tool_name: StringDataType; - tool_version: StringDataType; - notice: StringDataType; - duration: DataTypes.DoubleDataType; - options: JSON_Type; - input: JSON_Type; - files_count: IntegerDataType; - output_format_version: StringDataType; - spdx_license_list_version: StringDataType; // @QUERY - Justify need for this - operating_system: StringDataType; - cpu_architecture: StringDataType; - platform: StringDataType; - platform_version: StringDataType; - python_version: StringDataType; - workbench_version: StringDataType; - workbench_notice: StringDataType; - header_content: StringDataType; - } + // Helper function for parsing Toplevel data + _parseTopLevelFields( + jsonFilePath: string, + rawTopLevelData: any + ): TopLevelDataFormat { + const header = rawTopLevelData.headers + ? rawTopLevelData.headers[0] || {} + : {}; + const parsedHeader = this._parseHeader( + jsonFilePath, + workbenchVersion, + header + ); + const packages = rawTopLevelData.packages || []; + const dependencies = rawTopLevelData.dependencies || []; + const license_detections: TopLevelLicenseDetection[] = ( + rawTopLevelData.license_detections || [] + ).map((detection: TopLevelLicenseDetection) => { + // Handle duplicated match_data present at top level in prev toolkit versions + // upto v32.0.0rc2 + return { + identifier: detection.identifier, + license_expression: detection.license_expression, + detection_count: + detection.detection_count !== undefined + ? detection.detection_count + : detection.count || 0, + }; + }); + const license_detections_map = new Map( + license_detections.map((detection) => [detection.identifier, detection]) + ); + const license_references: LicenseReference[] = + rawTopLevelData.license_references || []; + const license_references_mapping = new Map( + license_references.map((ref) => [ref.key, ref]) + ); + const license_references_mapping_spdx = new Map( + license_references.map((ref) => [ref.spdx_license_key, ref]) + ); + const license_rule_references: any[] = + rawTopLevelData.license_rule_references || []; + + return { + header, + parsedHeader, + packages, + dependencies, + license_detections, + license_clues: [], + license_references_map: license_references_mapping, + license_references_spdx_map: license_references_mapping_spdx, + license_detections_map, + license_references, + license_rule_references, + }; + } + _parseHeader(jsonFilePath: string, workbenchVersion: string, header: any) { const input = header.options?.input || []; delete header.options?.input; const parsedHeader: ParsedJsonHeader = { + json_file_name: path.basename(jsonFilePath), tool_name: header.tool_name, tool_version: header.tool_version, notice: header.notice, @@ -540,14 +523,11 @@ export class WorkbenchDB { platform: header.extra_data?.system_environment?.platform, platform_version: header.extra_data?.system_environment?.platform_version, python_version: header.extra_data?.system_environment?.python_version, - workbench_version: workbenchVersion as unknown as StringDataType, + workbench_version: workbenchVersion, workbench_notice: - 'Exported from ScanCode Workbench and provided on an "AS IS" BASIS, WITHOUT WARRANTIES\\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\\nScanCode Workbench should be considered or used as legal advice. Consult an Attorney\\nfor any legal advice.\\nScanCode Workbench is a free software analysis application from nexB Inc. and others.\\nVisit https://github.com/nexB/scancode-workbench/ for support and download.' as unknown as StringDataType, - header_content: JSON.stringify( - header, - undefined, - 2 - ) as unknown as StringDataType, // FIXME + 'Exported from ScanCode Workbench and provided on an "AS IS" BASIS, WITHOUT WARRANTIES\\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\\nScanCode Workbench should be considered or used as legal advice. Consult an Attorney\\nfor any legal advice.\\nScanCode Workbench is a free software analysis application from nexB Inc. and others.\\nVisit https://github.com/nexB/scancode-workbench/ for support and download.', + header_content: JSON.stringify(header, undefined, 2), + errors: header.errors, }; return parsedHeader; } @@ -757,16 +737,14 @@ export class WorkbenchDB { }); } - _batchCreateFiles(files: Resource[], headerId: number) { + _batchCreateFiles(files: Resource[]) { // Add batched files to the DB - return this._addFlattenedFiles(files).then(() => - this._addFiles(files, headerId) - ); + return this._addFlattenedFiles(files).then(() => this._addFiles(files)); } _addFlattenedFiles(files: Resource[]) { // Fix for issue #232 - $.each(files, (i, file) => { + files.forEach((file) => { if ( file.type === "directory" && Object.prototype.hasOwnProperty.call(file, "size_count") @@ -777,12 +755,12 @@ export class WorkbenchDB { const flattenedFiles = files.map((file) => flattenFile(file)); - return this.db.FlatFile.bulkCreate(flattenedFiles as any, { + return this.db.FlatFile.bulkCreate(flattenedFiles as any[], { logging: false, }); } - _addFiles(files: Resource[], headerId: number) { + _addFiles(files: Resource[]) { const transactionOptions: TransactionOptions = { autocommit: false, isolationLevel: Transaction.ISOLATION_LEVELS.READ_COMMITTED, @@ -792,7 +770,7 @@ export class WorkbenchDB { // logging: () => DebugLogger("add file", "AddFiles transaction executed !"), transaction: t, }; - $.each(files, (_, file) => { + files.forEach((file) => { // Fix for issue #232 if ( file.type === "directory" && @@ -801,7 +779,6 @@ export class WorkbenchDB { file.size = file.size_count; } file.parent = parentPath(file.path); - file.headerId = headerId; }); return this.db.File.bulkCreate(files as any, options) @@ -957,10 +934,8 @@ export class WorkbenchDB { } _getLicensePolicy(file: Resource) { - // if ($.isEmptyObject(file.license_policy)) { if (!file.license_policy || !Object.keys(file.license_policy).length) { - // if ($.isEmptyObject(file.license_policy)) { - return null; + return []; } const license_policies = file.license_policy; license_policies.forEach((policy) => (policy.fileId = file.id)); @@ -968,9 +943,9 @@ export class WorkbenchDB { } _getNewCopyrights(file: Resource) { - const statements = file.copyrights; - const holders = file.holders; - const authors = file.authors; + const statements = file.copyrights || []; + const holders = file.holders || []; + const authors = file.authors || []; const newLines: { start_line: number; end_line: number }[] = []; const newStatements: string[] = []; diff --git a/src/app.css b/src/styles/app.css similarity index 85% rename from src/app.css rename to src/styles/app.css index e3d3f9c4..94684b32 100644 --- a/src/app.css +++ b/src/styles/app.css @@ -59,27 +59,27 @@ img { font-family: 'Raleway'; font-style: normal; font-weight: 400; - src: url('./lib/css/fonts/Raleway-Regular.ttf'); + src: url('../lib/css/fonts/Raleway-Regular.ttf'); src: local('?'), - url('./lib/css/fonts/Raleway-Regular.ttf') format('truetype'); + url('../lib/css/fonts/Raleway-Regular.ttf') format('truetype'); } @font-face { font-family: 'Raleway Black'; font-style: normal; font-weight: 800; - src: url('./lib/css/fonts/Raleway-Black.ttf'); + src: url('../lib/css/fonts/Raleway-Black.ttf'); src: local('?'), - url('./lib/css/fonts/Raleway-Black.ttf') format('truetype'); + url('../lib/css/fonts/Raleway-Black.ttf') format('truetype'); } @font-face { font-family: 'Lato'; font-style: normal; font-weight: 400; - src: url('./lib/css/fonts/Lato-Regular.ttf'); + src: url('../lib/css/fonts/Lato-Regular.ttf'); src: local('?'), - url('./lib/css/fonts/Lato-Regular.ttf') format('truetype'); + url('../lib/css/fonts/Lato-Regular.ttf') format('truetype'); } diff --git a/src/colors.css b/src/styles/colors.css similarity index 100% rename from src/colors.css rename to src/styles/colors.css diff --git a/src/customFaColors.css b/src/styles/customFaColors.css similarity index 100% rename from src/customFaColors.css rename to src/styles/customFaColors.css diff --git a/src/dashStyles.css b/src/styles/dashStyles.css similarity index 100% rename from src/dashStyles.css rename to src/styles/dashStyles.css diff --git a/src/styles/entityCommonStyles.css b/src/styles/entityCommonStyles.css index cb5ee0dd..0bca25eb 100644 --- a/src/styles/entityCommonStyles.css +++ b/src/styles/entityCommonStyles.css @@ -1,3 +1,9 @@ +:root { + --max-entity-table-height: 35vh; + --entity-table-header-height: 49px; + --entity-table-height: 5px; +} + .entity-properties { font-size: 14px; } @@ -16,5 +22,33 @@ .license-detecion-entity .react-json-view { max-height: 75vh; overflow: auto; - margin-bottom: 15px; -} \ No newline at end of file +} + +.package-entity .raw-info-section, +.dependency-entity .raw-info-section, +.license-detecion-entity .raw-info-section { + margin-top: 15px; + margin-bottom: 25px; +} + +.entity-table { + /* max-height: 250px; */ + max-height: var(--max-entity-table-height); + height: auto !important; +} + +.entity-table .ag-root-wrapper-body.ag-layout-normal { + flex: none; + height: auto; +} + +.entity-table .ag-body-viewport { + height: auto; + /* Subtract height of horizontal scroll and header from table height */ + max-height: calc(var(--max-entity-table-height) - var(--entity-table-header-height) - var(--entity-table-height)); + flex: none; +} + +.entity-table .ag-center-cols-viewport { + height: auto; +} diff --git a/src/index.css b/src/styles/index.css similarity index 100% rename from src/index.css rename to src/styles/index.css diff --git a/src/utils/bar.ts b/src/utils/bar.ts index c40bd04c..9437e2db 100644 --- a/src/utils/bar.ts +++ b/src/utils/bar.ts @@ -4,21 +4,31 @@ export function isValid(value: unknown): boolean { if (Array.isArray(value)) { return value.length > 0 && value.every((element) => isValid(element)); } else { - return value !== null; + return value !== null && value !== undefined; } } -export function getAttributeValues(values: any[], attribute: any) { - const validatedValues = []; +/** + * + * @param values - List of Model objects returned by any Sequelize queries + * @param attribute - Attribute of Model object to be obtained + */ +export function getValidatedAttributeValues( + values: { dataValues: any }[], + attribute: string +) { + const validatedAttributeValues = []; let attributeValue = null; for (let i = 0; i < values.length; i++) { - attributeValue = values[i][attribute]; - const fileType = values[i].type; + attributeValue = values[i].dataValues[attribute]; // dedupe entries to prevent overcounting files. See https://github.com/nexB/scancode-workbench/issues/285 - if (Array.isArray(attributeValue)) { - attributeValue = Array.from(new Set(attributeValue)); + try { + const parsed = JSON.parse(attributeValue); + if (Array.isArray(parsed)) attributeValue = parsed; + } catch (e) { + /* empty */ } if (!Array.isArray(attributeValue) || attributeValue.length === 0) { @@ -27,25 +37,27 @@ export function getAttributeValues(values: any[], attribute: any) { for (let j = 0; j < attributeValue.length; j++) { const val = attributeValue[j]; - if ( - !isValid(val) && - attribute === "package_data_type" && - fileType === "directory" - ) { + if (!isValid(val) && attribute === "package_data_type") { continue; } - validatedValues.push(isValid(val) ? val : NO_VALUE_DETECTED_LABEL); + validatedAttributeValues.push( + isValid(val) ? val : NO_VALUE_DETECTED_LABEL + ); } } - return validatedValues; + + return validatedAttributeValues; } +// Counts occurences for unique entries & return formatted object required to draw the Bar chart export function formatBarchartData(data: unknown[]) { const counterMapping = new Map(); let existingCount = 0; data.forEach((entry: string | string[]) => { const entryString = - typeof entry === "string" + entry == null || entry == undefined + ? NO_VALUE_DETECTED_LABEL + : typeof entry === "string" ? entry : Array.isArray(entry) ? entry.join(",") diff --git a/src/utils/cells.ts b/src/utils/cells.ts index 4f18ab2b..d040dc94 100644 --- a/src/utils/cells.ts +++ b/src/utils/cells.ts @@ -2,7 +2,7 @@ const CELL_PADDING = 22; const MAX_CELL_SIZE = 500; const CHARACTER_WIDTH = 7; -export function calculateCellWidth(textLength: number){ - const calculatedColumnSize = (textLength * CHARACTER_WIDTH) + (CELL_PADDING * 2); +export function calculateCellWidth(textLength: number) { + const calculatedColumnSize = textLength * CHARACTER_WIDTH + CELL_PADDING * 2; return Math.min(MAX_CELL_SIZE, calculatedColumnSize); -} \ No newline at end of file +} diff --git a/src/utils/checks.ts b/src/utils/checks.ts index cad864cd..9488568a 100644 --- a/src/utils/checks.ts +++ b/src/utils/checks.ts @@ -1,9 +1,16 @@ -export function isSchemaChanged(dbVersion: string, workbenchVersion: string) { - const majorDBVersion = dbVersion.split('.')[0]; - const majorWorkbenchVersion = workbenchVersion.split('.')[0]; - +export function isSqliteSchemaOutdated( + dbVersion: string, + workbenchVersion: string +) { + const majorDBVersion = dbVersion.split(".")[0]; + const majorWorkbenchVersion = workbenchVersion.split(".")[0]; + console.log("Comparing schema versions:", dbVersion, workbenchVersion); - console.log("Comparing major versions:", majorDBVersion, majorWorkbenchVersion); + console.log( + "Comparing major versions:", + majorDBVersion, + majorWorkbenchVersion + ); return majorDBVersion !== majorWorkbenchVersion; -} \ No newline at end of file +} diff --git a/src/utils/dom.ts b/src/utils/dom.ts deleted file mode 100644 index 41a5033c..00000000 --- a/src/utils/dom.ts +++ /dev/null @@ -1,5 +0,0 @@ -export function scrollToDomElement(element: HTMLElement, options?: { xOffset?: number, yOffset?: number}){ - const xOffset = options?.xOffset || 0; - const yOffset = options?.yOffset || 0; - -} \ No newline at end of file diff --git a/src/utils/ensureRendererDeps.ts b/src/utils/ensureRendererDeps.ts index 62eeed95..2aa9d486 100644 --- a/src/utils/ensureRendererDeps.ts +++ b/src/utils/ensureRendererDeps.ts @@ -3,42 +3,30 @@ import * as electronFs from "fs"; import * as electronOs from "os"; import sqlite3 from "sqlite3"; -const { ipcRenderer } = electron; - // Note - This file is important, to ensure none of the non-imported modules are ignored // Particularly, sqlite3 module isn't imported directly anywhere, but is required by Sequelize // Hence, need to use here -export const sqlite3Version = sqlite3.VERSION; - -console.log("Renderer Deps:", { +const RequiredRendererDependencies = { electron, electronFs, electronOs, - ipcRenderer, - platform: electronOs.platform(), - // remote, + ipcRenderer: electron?.ipcRenderer, + platform: electronOs?.platform, sqlite3, - sqlite3Version, - // remoteMain, -}); + sqlite3Version: sqlite3.VERSION, +}; +// console.log("Renderer Dependencies:", RequiredRendererDependencies); +// console.log( +// "Ensure Renderer Dependencies", +// Object.entries(RequiredRendererDependencies).map(([key, value]) => ({ +// [key]: value ? "Available" : "Unavailable", +// })) +// ); export function logDependenciesOnError() { console.log("Test deps -----------------"); - const { ipcRenderer } = electron; - console.log("Electron", { - electron, - electronFs, - electronOs, - ipcRenderer, - platform: electronOs.platform(), - }); - - console.log("Sqlite", { - sqlite3, - sqlite3Version: sqlite3.VERSION, - }); - + console.log(RequiredRendererDependencies); console.log("---------------------------"); } diff --git a/src/utils/files.ts b/src/utils/files.ts new file mode 100644 index 00000000..a9c21f31 --- /dev/null +++ b/src/utils/files.ts @@ -0,0 +1,19 @@ +const validityRegex = { + json: /\.(json)+$/i, + sqlite: /\.(sqlite)+$/i, +}; + +export function getFileType(file: File) { + if (validityRegex.json.test(file.name)) return "json"; + if (validityRegex.sqlite.test(file.name)) return "sqlite"; + return "unknown"; +} +export function filterValidFiles(files: FileList) { + return Array.from(files) + .filter( + (file) => + file.name.match(validityRegex.json) || + file.name.match(validityRegex.sqlite) + ) + .filter((file) => file !== null); +} diff --git a/src/utils/logger.ts b/src/utils/logger.ts index 0831ee31..5e280b5d 100644 --- a/src/utils/logger.ts +++ b/src/utils/logger.ts @@ -1,9 +1,24 @@ const debugClasses = new Set([ // 'add file', // 'file processor', -]) + // 'license exp processor', + // 'license policy processor', + // 'copyright processor', + // 'package processor', + // 'email processor', + // 'URL processor', + // 'scan error processor', +]); export const DebugLogger = (debugClass: string, ...args: unknown[]) => { - if(debugClasses.has(debugClass)) - console.log(...args); -} \ No newline at end of file + if (debugClasses.has(debugClass)) console.log(...args); +}; + +const lastLogs: { [key: string]: number } = {}; +export const TimeThrottledLogger = (id: string, ...args: unknown[]) => { + const currentTime = new Date().getTime(); + if (!(lastLogs[id] && currentTime < lastLogs[id] + 1000)) { + console.log(id, ...args); + lastLogs[id] = currentTime; + } +}; diff --git a/src/utils/parsers.ts b/src/utils/parsers.ts index 44f17b63..ef8733f9 100644 --- a/src/utils/parsers.ts +++ b/src/utils/parsers.ts @@ -33,10 +33,11 @@ export enum ScanOptionKeys { } export interface ScanInfo { + json_file_name: string; tool_name: string; tool_version: string; notice: string; - duration: number; + duration: string; optionsList: [string, unknown][]; optionsMap: Map; input: string[]; @@ -51,45 +52,43 @@ export interface ScanInfo { workbench_version: string; workbench_notice: string; raw_header_content: string; + errors: string[]; } -export function parseScanInfo(rawInfo: Model){ - const optionsList = Object.entries( - parseIfValidJson(rawInfo.getDataValue("options")?.toString({})) || - [] - ) || []; - const optionsMap = new Map(optionsList.map(([k,v]) => [k as ScanOptionKeys, v])); +export function parseScanInfo( + rawInfo: Model +): ScanInfo { + const optionsList = + Object.entries(parseIfValidJson(rawInfo.getDataValue("options")) || []) || + []; + const optionsMap = new Map( + optionsList.map(([k, v]) => [k as ScanOptionKeys, v]) + ); const parsedScanInfo: ScanInfo = { - tool_name: rawInfo.getDataValue("tool_name")?.toString({}) || "", - tool_version: rawInfo.getDataValue("tool_version")?.toString({}) || "", - notice: rawInfo.getDataValue("notice")?.toString({}) || "", - duration: Number(rawInfo.getDataValue("duration")), + json_file_name: rawInfo.getDataValue("json_file_name") || "Not available", + tool_name: rawInfo.getDataValue("tool_name") || "", + tool_version: rawInfo.getDataValue("tool_version") || "", + notice: rawInfo.getDataValue("notice") || "", + duration: rawInfo.getDataValue("duration") + ? Number(rawInfo.getDataValue("duration")).toFixed(2) + : null, optionsList, optionsMap, - input: - parseIfValidJson(rawInfo.getDataValue("input")?.toString({})) || [], + input: parseIfValidJson(rawInfo.getDataValue("input")) || [], files_count: Number(rawInfo.getDataValue("files_count")), - output_format_version: - rawInfo.getDataValue("output_format_version")?.toString({}) || "", + output_format_version: rawInfo.getDataValue("output_format_version") || "", spdx_license_list_version: - rawInfo.getDataValue("spdx_license_list_version")?.toString({}) || - "", - operating_system: - rawInfo.getDataValue("operating_system")?.toString({}) || "", - cpu_architecture: - rawInfo.getDataValue("cpu_architecture")?.toString({}) || "", - platform: rawInfo.getDataValue("platform")?.toString({}) || "", - platform_version: - rawInfo.getDataValue("platform_version")?.toString({}) || "", - python_version: - rawInfo.getDataValue("python_version")?.toString({}) || "", - workbench_version: - rawInfo.getDataValue("workbench_version")?.toString({}) || "", - workbench_notice: - rawInfo.getDataValue("workbench_notice")?.toString({}) || "", - raw_header_content: - rawInfo.getDataValue("header_content")?.toString({}) || "", + rawInfo.getDataValue("spdx_license_list_version") || "", + operating_system: rawInfo.getDataValue("operating_system") || "", + cpu_architecture: rawInfo.getDataValue("cpu_architecture") || "", + platform: rawInfo.getDataValue("platform") || "", + platform_version: rawInfo.getDataValue("platform_version") || "", + python_version: rawInfo.getDataValue("python_version") || "", + workbench_version: rawInfo.getDataValue("workbench_version") || "", + workbench_notice: rawInfo.getDataValue("workbench_notice") || "", + raw_header_content: rawInfo.getDataValue("header_content") || "", + errors: parseIfValidJson(rawInfo.getDataValue("errors")) || [], }; return parsedScanInfo; -} \ No newline at end of file +} diff --git a/src/utils/paths.ts b/src/utils/paths.ts new file mode 100644 index 00000000..8ace4643 --- /dev/null +++ b/src/utils/paths.ts @@ -0,0 +1,2 @@ +export const figureOutDefaultSqliteFilePath = (jsonFilePath: string) => + jsonFilePath.substring(0, jsonFilePath.lastIndexOf(".")) + ".sqlite"; diff --git a/src/utils/pie.ts b/src/utils/pie.ts index fe87b077..76fdf74c 100644 --- a/src/utils/pie.ts +++ b/src/utils/pie.ts @@ -1,19 +1,19 @@ -import { StringDataType } from "sequelize"; -import { LEGEND_LIMIT } from "../constants/data"; +import { LEGEND_LIMIT, NO_VALUE_DETECTED_LABEL } from "../constants/data"; export type FormattedEntry = [string, number]; -const ascendingComparatorFunction = (a: FormattedEntry, b: FormattedEntry) => - a[1] > b[1] ? 1 : -1; -const descendingComparatorFunction = (a: FormattedEntry, b: FormattedEntry) => - a[1] < b[1] ? 1 : -1; +const ascendingFrequencyComparator = (a: FormattedEntry, b: FormattedEntry) => + a[1] == b[1] ? (a[0] < b[0] ? -1 : 1) : a[1] < b[1] ? -1 : 1; -// Limit data to n-highest values in the chart -export function limitChartData(data: FormattedEntry[], limit: number) { - if (data.length <= limit) return data.sort(ascendingComparatorFunction); +const descendingFrequencyComparator = (a: FormattedEntry, b: FormattedEntry) => + a[1] == b[1] ? (a[0] < b[0] ? -1 : 1) : a[1] < b[1] ? 1 : -1; + +// Limit data to n-highest values in charts +export function limitPieChartData(data: FormattedEntry[], limit: number) { + if (data.length <= limit) return data.sort(ascendingFrequencyComparator); // Bring larger entries to the top - const limitedData = data.sort(descendingComparatorFunction); + const limitedData = data.sort(descendingFrequencyComparator); // Sum up the entries to be excluded let otherCount = 0; @@ -25,37 +25,31 @@ export function limitChartData(data: FormattedEntry[], limit: number) { // Add entry 'other' representing sum of excluded entries if (otherCount > 0) limitedData.unshift(["other", otherCount]); - - return limitedData.sort(ascendingComparatorFunction); + return limitedData.sort(ascendingFrequencyComparator); } -// Formats data suitable for Pie chart -export function formatChartData( - names: (string | StringDataType)[], +// Counts occurences for unique entries & return formatted object required to draw the Pie chart +export function formatPieChartData( + entries: string[], limit?: number ): { chartData: FormattedEntry[]; untrimmedLength: number; } { - // Sum the total number of times the name appears + // Sum the total number of times the entry appears const count = new Map(); - names.forEach((name) => - count.set( - name?.toString({}) || (name as string), - (count.get(name.toString({})) || 0) + 1 - ) - ); - // $.each(names, (i, name) => { - // count.set(name.toString({}), (count.get(name.toString({})) || 0) + 1); - // }); + entries.forEach((entry) => { + const entryLabel = entry || NO_VALUE_DETECTED_LABEL; + count.set(entryLabel, (count.get(entryLabel) || 0) + 1); + }); const chartData = Array.from(count.entries()); const untrimmedLength = chartData.length; const chartDataLimit = limit || LEGEND_LIMIT; - + return { - chartData: limitChartData(chartData, chartDataLimit), + chartData: limitPieChartData(chartData, chartDataLimit), untrimmedLength, }; } diff --git a/src/utils/text.ts b/src/utils/text.ts index a64b9ba2..09a63aef 100644 --- a/src/utils/text.ts +++ b/src/utils/text.ts @@ -1,10 +1,28 @@ import { diff_match_patch } from "diff-match-patch"; +// Convert stringified nested list to comma separated string for Filters +export function parseProbableStringifiedArray(str: string, maxLength: number) { + try { + const result = JSON.parse(str); + if (Array.isArray(result)) { + const parseableResultArray = result as string[][]; + return trimStringWithEllipsis( + parseableResultArray.map((subEntry) => subEntry.join(",")).join(","), + maxLength + ); + } + return trimStringWithEllipsis(str, maxLength); + } catch (e) { + return trimStringWithEllipsis(str, maxLength); + } +} + // Trim string to specified length & add ellipsis if required export function trimStringWithEllipsis( str: string, maxLengthInclusive: number ) { + if (!str) return ""; if (str.length > maxLengthInclusive) { return str.trimEnd().slice(0, maxLengthInclusive - 3) + "..."; } @@ -12,7 +30,7 @@ export function trimStringWithEllipsis( } // Removes symbols & extra spaces from given string. -export function normalizeString(str: string) { +export function normalizeDiffString(str: string) { return str .replace(/[.,/#!$%^&*;:[{}\]=\-_'"`~()]/g, "") .replace(/\s{2,}/g, " ") @@ -34,9 +52,11 @@ export interface DiffComponents { const diffMatcher = new diff_match_patch(); -export function diffStrings(text1: string, text2: string) { - const diffs = diffMatcher.diff_main(text1, text2); - const diffsWithIgnoredLetterCases: DiffComponents[] = []; +// Parse diffs from diff_match_patch & filter out trivial diffs +// symbols, extra spaces newlines, etc need not be tracked for license diffs +export function diffStrings(sourceText: string, modifiedText: string) { + const diffs = diffMatcher.diff_main(sourceText, modifiedText); + const normalizedDiffs: DiffComponents[] = []; for (let i = 0; i < diffs.length; i++) { const currentDiff = diffs[i]; @@ -47,15 +67,15 @@ export function diffStrings(text1: string, text2: string) { nextDiff && currentDiff[0] === -1 && nextDiff[0] === 1 && - normalizeString(currentDiff[1]).toLowerCase() === - normalizeString(nextDiff[1]).toLowerCase() + normalizeDiffString(currentDiff[1]).toLowerCase() === + normalizeDiffString(nextDiff[1]).toLowerCase() ) { // Add both to their respective diff category without identifying as diffComponent - diffsWithIgnoredLetterCases.push({ + normalizedDiffs.push({ belongsTo: BelongsIndicator.ORIGINAL, value: currentDiff[1], }); - diffsWithIgnoredLetterCases.push({ + normalizedDiffs.push({ belongsTo: BelongsIndicator.MODIFIED, value: nextDiff[1], }); @@ -63,7 +83,7 @@ export function diffStrings(text1: string, text2: string) { continue; } - diffsWithIgnoredLetterCases.push({ + normalizedDiffs.push({ ...{ diffComponent: currentDiff[0] === 1 @@ -82,10 +102,11 @@ export function diffStrings(text1: string, text2: string) { }); } - return diffsWithIgnoredLetterCases; + return normalizedDiffs; } -export function normalizeAndSplitDiffIntoLines(diffs: DiffComponents[]) { +// Based on presence of '\n' group the diffs corresponding to each line +export function splitDiffIntoLines(diffs: DiffComponents[]) { const lines: DiffComponents[][] = [[]]; for (const diff of diffs) { @@ -101,7 +122,7 @@ export function normalizeAndSplitDiffIntoLines(diffs: DiffComponents[]) { const subLines = splitLines.slice(idx); for (const subLine of subLines) { - const isTrivialDiff = normalizeString(subLine).length === 0; + const isTrivialDiff = normalizeDiffString(subLine).length === 0; // Append to last line only if it is non-empty string if (subLine.length > 0) { @@ -126,6 +147,11 @@ export function normalizeAndSplitDiffIntoLines(diffs: DiffComponents[]) { } } + // console.log("Line splitter", { + // diffs, + // lines: lines.filter((diffLine) => diffLine.length > 0), + // }); + // Filter out empty lines before returning; return lines.filter((diffLine) => diffLine.length > 0); } diff --git a/tests/bar.test.data.ts b/tests/bar.test.data.ts new file mode 100644 index 00000000..63ff3298 --- /dev/null +++ b/tests/bar.test.data.ts @@ -0,0 +1,152 @@ +export const RawModelDataSamples: { + values: { dataValues: unknown }[]; + attribute: string; + validatedAttributeValues: unknown[]; +}[] = [ + { + values: [ + { + dataValues: { + extension: "", + }, + }, + { + dataValues: { + extension: 4, + }, + }, + { + dataValues: { + extension: ".LICENSE", + }, + }, + { + dataValues: { + extension: null, + }, + }, + { + dataValues: { + extension: undefined, + }, + }, + { + dataValues: { + extension: ".in", + }, + }, + { + dataValues: { + extension: "", + }, + }, + { + dataValues: { + extension: ".toml", + }, + }, + { + dataValues: { + extension: ".rst", + }, + }, + { + dataValues: { + extension: ".txt", + }, + }, + { + dataValues: { + extension: ".txt", + }, + }, + { + dataValues: { + extension: ".ABOUT", + }, + }, + { + dataValues: { + extension: ".cfg", + }, + }, + { + dataValues: { + extension: ".py", + }, + }, + ], + attribute: "extension", + validatedAttributeValues: [ + "", + 4, + ".LICENSE", + "No Value detected", + "No Value detected", + ".in", + "", + ".toml", + ".rst", + ".txt", + ".txt", + ".ABOUT", + ".cfg", + ".py", + ], + }, +]; + +export const BarDataSamples: { + data: unknown[]; + formatted: { + formattedChartData: { label: string; value: number }[]; + noValueEntriesCount: number; + }; +}[] = [ + { + data: [ + "", + ["Copyright (c) 2009 holger krekel"], + "", + null, + undefined, + "", + ["Copyright (c) nexB Inc. and others"], + ["Copyright (c) 2019 nexB Inc."], + ["MIT"], + [ + "Copyright (c) nexB Inc. and others", + "Copyright (c) nexB Inc. and others", + ], + "No Value detected", + ["MIT"], + ["MIT"], + ], + formatted: { + formattedChartData: [ + { + label: "MIT", + value: 3, + }, + { + label: "Copyright (c) 2009 holger krekel", + value: 1, + }, + { + label: "Copyright (c) nexB Inc. and others", + value: 1, + }, + { + label: "Copyright (c) 2019 nexB Inc.", + value: 1, + }, + { + label: + "Copyright (c) nexB Inc. and others,Copyright (c) nexB Inc. and others", + value: 1, + }, + ], + noValueEntriesCount: 6, + }, + }, +]; diff --git a/tests/bar.test.ts b/tests/bar.test.ts new file mode 100644 index 00000000..68f88142 --- /dev/null +++ b/tests/bar.test.ts @@ -0,0 +1,41 @@ +import assert from "assert"; +import { + formatBarchartData, + getValidatedAttributeValues, + isValid, +} from "../src/utils/bar"; +import { BarDataSamples, RawModelDataSamples } from "./bar.test.data"; + +const PossibleBarchartValues: { valid: unknown[]; invalid: unknown[] } = { + valid: [["nexB Inc"], "ABCD", 23, 55.5, true], + invalid: [null, undefined, []], +}; +describe("Check Validity of values", () => { + it.each(PossibleBarchartValues.valid)("Valid chart values %s", (chartValue) => + assert.equal(isValid(chartValue), true) + ); + it.each(PossibleBarchartValues.invalid)( + "Invalid chart value - %s", + (chartValue) => assert.equal(isValid(chartValue), false) + ); +}); + +describe("Get attribute from Sequelize model", () => { + it.each(RawModelDataSamples)( + "Get attribute $attribute", + ({ attribute, values, validatedAttributeValues }) => + assert.deepEqual( + getValidatedAttributeValues(values, attribute), + validatedAttributeValues + ) + ); +}); + +describe("Format bar chart values", () => { + it.each(BarDataSamples)( + "Format bar chart data of length: $data.length", + ({ data, formatted }) => { + assert.deepStrictEqual(formatBarchartData(data), formatted); + } + ); +}); diff --git a/tests/fileTree.test.ts b/tests/fileTree.test.ts new file mode 100644 index 00000000..4ff1cd88 --- /dev/null +++ b/tests/fileTree.test.ts @@ -0,0 +1,42 @@ +import path from "path"; +import { FileTreeSamples } from "./test-scans/fileTree/expectedFileTree"; +import { WorkbenchDB } from "../src/services/workbenchDB"; +import { figureOutDefaultSqliteFilePath } from "../src/utils/paths"; +import assert from "assert"; + +// Avoid logging scan-parser checkpoints during tests +beforeEach(() => { + jest.spyOn(console, "time").mockImplementation(() => null); + jest.spyOn(console, "info").mockImplementation(() => null); +}); + +describe("Parse flat files & create file tree", () => { + it.each(FileTreeSamples)( + "Process $jsonFileName", + async ({ jsonFileName, flatData, fileTree }) => { + const jsonFilePath = path.join( + __dirname, + "test-scans/fileTree/", + jsonFileName + ); + + const newWorkbenchDB = new WorkbenchDB({ + dbName: "workbench_db", + dbStoragePath: figureOutDefaultSqliteFilePath(jsonFilePath), + deleteExisting: true, + }); + const db = await newWorkbenchDB.sync; + await newWorkbenchDB.addFromJson(jsonFilePath, () => null); + + const parsedFiles = ( + await db.File.findAll({ + attributes: ["id", "path", "parent", "name", "type"], + }) + ).map((file) => file.dataValues); + assert.deepEqual(parsedFiles, flatData); + + const parsedFileTree = await newWorkbenchDB.findAllJSTree(); + assert.deepEqual(parsedFileTree, fileTree); + } + ); +}); diff --git a/tests/files.test.ts b/tests/files.test.ts new file mode 100644 index 00000000..f0f8c82b --- /dev/null +++ b/tests/files.test.ts @@ -0,0 +1,62 @@ +/** + * @jest-environment jsdom + */ +import { getFileType, filterValidFiles } from "../src/utils/files"; + +describe("Get file type", () => { + it("Identify JSON files", () => { + const jsonFile = new File([""], "example.json"); + const fileType = getFileType(jsonFile); + expect(fileType).toBe("json"); + }); + + it("Identify SQLite files", () => { + const sqliteFile = new File([""], "example.sqlite"); + const fileType = getFileType(sqliteFile); + expect(fileType).toBe("sqlite"); + }); + + it("Identify unknown file types", () => { + const unknownFile = new File([""], "example.txt"); + const fileType = getFileType(unknownFile); + expect(fileType).toBe("unknown"); + }); +}); + +// Helper function to create a mock FileList +function createMockFileList(files: File[]): FileList { + const mockFiles = { + length: files.length, + item(index: number) { + return files[index]; + }, + } as FileList; + + files.map((file, idx) => (mockFiles[idx] = file)); + + return mockFiles; +} + +describe("Filter opened files", () => { + it("Filter out invalid files", () => { + const validJsonFile = new File([""], "valid.json"); + const validSqliteFile = new File([""], "valid.sqlite"); + const invalidFile = new File([""], "invalid.txt"); + const fileList = createMockFileList([ + validJsonFile, + validSqliteFile, + invalidFile, + ]); + const validFiles = filterValidFiles(fileList); + expect(validFiles.length).toBe(2); + expect(validFiles[0].name).toBe("valid.json"); + expect(validFiles[1].name).toBe("valid.sqlite"); + }); + + it("Handle an empty list of files", () => { + const emptyFiles: File[] = []; + const fileList = createMockFileList(emptyFiles); + const validFiles = filterValidFiles(fileList); + expect(validFiles.length).toBe(0); + }); +}); diff --git a/tests/historyStore.test.ts b/tests/historyStore.test.ts new file mode 100644 index 00000000..679999e9 --- /dev/null +++ b/tests/historyStore.test.ts @@ -0,0 +1,152 @@ +/** + * @jest-environment jsdom + */ +import moment from "moment"; +import { + HistoryItem, + GetHistory, + AddEntry, + RemoveEntry, + HISTORY_MAX_LENGTH, +} from "../src/services/historyStore"; + +beforeEach(() => { + // Clear localStorage before each test + window.localStorage.clear(); +}); + +test("AddEntry should add a new history entry", () => { + const entry: HistoryItem = { + opened_at: moment().format(), + json_path: "path/to/json", + sqlite_path: "path/to/sqlite", + }; + + AddEntry(entry); + + const history = GetHistory(); + expect(history).toHaveLength(1); + expect(history[0]).toEqual(entry); +}); + +describe("AddEntry should update an existing history entry", () => { + const testCases: { + description: string; + initialEntry: HistoryItem; + updatedEntry: HistoryItem; + }[] = [ + { + description: "Existing json import", + initialEntry: { + opened_at: moment().format(), + json_path: "path/to/json", + sqlite_path: "path/to/sqlite", + }, + updatedEntry: { + opened_at: moment().add(1, "days").format(), + json_path: "path/to/json", + sqlite_path: "path/to/sqlite", + }, + }, + { + description: "Existing sqlite import", + initialEntry: { + opened_at: moment().format(), + sqlite_path: "path/to/sqlite", + }, + updatedEntry: { + opened_at: moment().add(1, "days").format(), + sqlite_path: "path/to/sqlite", + }, + }, + ]; + it.each(testCases)("$description", ({ initialEntry, updatedEntry }) => { + AddEntry(initialEntry); + AddEntry(updatedEntry); + + const history = GetHistory(); + expect(history).toHaveLength(1); + expect(history[0]).toEqual(updatedEntry); + }); +}); + +test("RemoveEntry should remove an existing history entry", () => { + const entry: HistoryItem = { + opened_at: moment().format(), + json_path: "path/to/json", + sqlite_path: "path/to/sqlite", + }; + + AddEntry(entry); + RemoveEntry(entry); + + const history = GetHistory(); + expect(history).toHaveLength(0); +}); + +test("RemoveEntry should not affect history if entry doesn't exist", () => { + const entry: HistoryItem = { + opened_at: moment().format(), + json_path: "path/to/json", + sqlite_path: "path/to/sqlite", + }; + + AddEntry(entry); + const nonExistentEntry: HistoryItem = { + opened_at: moment().add(1, "days").format(), + json_path: "non/existent/json", + sqlite_path: "non/existent/sqlite", + }; + + RemoveEntry(nonExistentEntry); + + const history = GetHistory(); + expect(history).toHaveLength(1); +}); + +test(`History length should be capped at ${HISTORY_MAX_LENGTH}`, () => { + for (let i = 0; i < HISTORY_MAX_LENGTH + 2; i++) { + const entry: HistoryItem = { + opened_at: moment().format(), + json_path: `path/to/json/${i}`, + sqlite_path: `path/to/sqlite/${i}`, + }; + AddEntry(entry); + } + + const history = GetHistory(); + expect(history).toHaveLength(HISTORY_MAX_LENGTH); +}); + +test("History should be sorted by opened_at in descending order", () => { + const entries: HistoryItem[] = [ + { + opened_at: moment().subtract(2, "days").format(), + json_path: "path/to/json/1", + sqlite_path: "path/to/sqlite/1", + }, + { + opened_at: moment().subtract(1, "days").format(), + json_path: "path/to/json/2", + sqlite_path: "path/to/sqlite/2", + }, + { + opened_at: moment().format(), + json_path: "path/to/json/3", + sqlite_path: "path/to/sqlite/3", + }, + ]; + + entries.forEach(AddEntry); + + const history = GetHistory(); + // console.log("after add", history); + + for (let i = 0; i < history.length - 1; i++) { + const currentEntry = history[i]; + const nextEntry = history[i + 1]; + const currentTimestamp = moment(currentEntry.opened_at); + const nextTimestamp = moment(nextEntry.opened_at); + expect(currentTimestamp >= nextTimestamp).toBeTruthy(); + } +}); diff --git a/tests/parsers.test.ts b/tests/parsers.test.ts new file mode 100644 index 00000000..0dc613d6 --- /dev/null +++ b/tests/parsers.test.ts @@ -0,0 +1,34 @@ +import { parseIfValidJson } from "../src/utils/parsers"; + +export const JsonValiditySamples: { + valid: unknown[]; + invalid: unknown[]; +} = { + valid: [ + `[]`, + `{}`, + `{"key": "value"}`, + `[{ "key": "value", "key2": true, "key3": 3 }]`, + `["abc", "xyz", 9]`, + ], + invalid: [ + null, + undefined, + true, + 5, + { obj: "is not a valid json string" }, + "", + "abcd", + `{"key": "val}`, + `{"key": "val"`, + ], +}; + +describe("Check if JSON is valid", () => { + it.each(JsonValiditySamples.valid)("Valid sample: %s", (sample) => + expect(parseIfValidJson(sample)).toBeTruthy() + ); + it.each(JsonValiditySamples.invalid)("Invalid sample: %s", (sample) => + expect(parseIfValidJson(sample)).toBeNull() + ); +}); diff --git a/tests/paths.test.ts b/tests/paths.test.ts new file mode 100644 index 00000000..6bbe3d74 --- /dev/null +++ b/tests/paths.test.ts @@ -0,0 +1,28 @@ +import { figureOutDefaultSqliteFilePath } from "../src/utils/paths"; + +const PathSamples: { jsonPath: string; sqlitePath: string }[] = [ + { + jsonPath: "/path/to/your_file/scanInfo.json", + sqlitePath: "/path/to/your_file/scanInfo.sqlite", + }, + { + jsonPath: "/path/with_[special]_chars.json", + sqlitePath: "/path/with_[special]_chars.sqlite", + }, + { + jsonPath: "/Users/user name/Documents/sample data.json", + sqlitePath: "/Users/user name/Documents/sample data.sqlite", + }, + { + jsonPath: "C:\\Users\\username\\Downloads\\data.json", + sqlitePath: "C:\\Users\\username\\Downloads\\data.sqlite", + }, +]; +describe("Generates valid sqlite path for chosen json paths", () => { + it.each(PathSamples)( + "Generate Sqlite Path for $jsonPath", + ({ jsonPath, sqlitePath }) => { + expect(figureOutDefaultSqliteFilePath(jsonPath)).toBe(sqlitePath); + } + ); +}); diff --git a/tests/pie.test.data.ts b/tests/pie.test.data.ts new file mode 100644 index 00000000..c50d04b1 --- /dev/null +++ b/tests/pie.test.data.ts @@ -0,0 +1,311 @@ +import { FormattedEntry } from "../src/utils/pie"; + +export const PieLimitDataSamples: { + chartDataLimit: number; + data: FormattedEntry[]; + limited: FormattedEntry[]; +}[] = [ + { + chartDataLimit: 8, + data: [ + ["maven", 11], + ["bower", 3], + ["cocoapods", 11], + ["cargo", 3], + ["composer", 31], + ["pubspec", 57], + ["cran", 1], + ["gem", 64], + ["golang", 5], + ["conda", 10], + ["chef", 1], + ["opam", 4], + ["npm", 27], + ["pypi", 9], + ["dart", 3], + ], + limited: [ + ["conda", 10], + ["cocoapods", 11], + ["maven", 11], + ["npm", 27], + ["other", 29], + ["composer", 31], + ["pubspec", 57], + ["gem", 64], + ], + }, + { + chartDataLimit: 8, + data: [ + ["No Value detected", 787], + ["Haxe", 2], + ["Ruby", 2], + ["GAS", 1], + ["Python", 2], + ["HTML", 1], + ], + limited: [ + ["GAS", 1], + ["HTML", 1], + ["Haxe", 2], + ["Python", 2], + ["Ruby", 2], + ["No Value detected", 787], + ], + }, + { + chartDataLimit: 8, + data: [], + limited: [], + }, +]; + +export const PieFormatDataSamples: { + entries: string[]; + limit?: number; + formatted: { + chartData: FormattedEntry[]; + untrimmedLength: number; + }; +}[] = [ + { + entries: [ + "Apple Desktop Services Store", + "ASCII text", + "UTF-8 Unicode text", + "ASCII text", + "ASCII text", + "ASCII text", + "No Value detected", + "ASCII text", + "ASCII text", + "ASCII text", + "ASCII text", + "No Value detected", + "No Value detected", + "ASCII text, with very long lines", + "ASCII text", + "Python script, ASCII text executable", + ], + formatted: { + chartData: [ + ["ASCII text, with very long lines", 1], + ["Apple Desktop Services Store", 1], + ["Python script, ASCII text executable", 1], + ["UTF-8 Unicode text", 1], + ["No Value detected", 3], + ["ASCII text", 9], + ], + untrimmedLength: 6, + }, + }, + { + entries: [ + "apache-2.0", + "cc0-1.0", + "mit", + "lgpl-2.1", + "bsd-new", + "unknown-license-reference", + "bsd-new", + "apache-2.0", + "bsd-new", + "ofl-1.1", + "cc-by-3.0", + "mit", + "cc0-1.0", + "mit", + "apache-2.0", + "mit", + "gpl-3.0", + "mit", + "gpl-3.0", + "mit", + "gpl-3.0", + "ofl-1.1", + "ofl-1.1", + "proprietary-license", + "bsd-new", + "bsd-simplified", + "unknown", + "apache-2.0", + "apache-2.0", + "gpl-2.0", + "font-exception-gpl", + "ofl-1.1", + "apache-2.0", + "apache-2.0", + "bsd-new", + "bsd-simplified", + "cc-by-3.0", + "cc0-1.0", + "gpl-3.0", + "isc", + "lgpl-2.1", + "ofl-1.1", + "unknown-license-reference", + "other-copyleft", + "other-permissive", + "unknown", + "apache-2.0", + "apache-2.0", + "apache-2.0", + "scancode-acknowledgment", + "apache-2.0", + "cc0-1.0", + "apache-2.0", + "apache-2.0", + "lgpl-2.0-plus", + "bsd-new", + "apache-2.0", + "apache-2.0", + "cc0-1.0", + "apache-2.0", + "apache-2.0", + "isc", + "bsd-simplified", + "isc", + "apache-2.0", + "bsd-new", + "apache-2.0", + "bsd-new", + "bsd-simplified", + "bsd-simplified", + "isc", + "isc", + "isc", + "isc", + "bsd-new", + "apache-2.0", + "bsd-simplified", + "bsd-simplified", + "bsd-new", + "bsd-simplified", + "bsd-simplified", + "bsd-new", + "bsd-simplified", + "bsd-new", + "isc", + "apache-2.0", + "isc", + "isc", + "isc", + "isc", + "bsd-simplified", + "afl-2.1", + "public-domain", + "isc", + "apache-2.0", + "isc", + "bsd-new", + "bsd-new", + "isc", + "bsd-simplified", + "isc", + "apache-2.0", + "bsd-new", + "mit", + "bsd-simplified", + "mit", + "apache-2.0", + "apache-2.0", + "mit", + "isc", + "mit", + "isc", + "mit", + "isc", + "apache-2.0", + "mit", + "mit", + "wtfpl-2.0", + "isc", + "isc", + "isc", + "isc", + "mit", + "isc", + "bsd-new", + "isc", + "isc", + "isc", + "bsd-new", + "apache-2.0", + "cc-by-3.0", + "cc0-1.0", + "bsd-new", + "bsd-new", + "bsd-new", + "wtfpl-2.0", + "apache-2.0", + "apache-2.0", + "unlicense", + "bsd-simplified", + "bsd-simplified", + "wtfpl-2.0", + "apache-2.0", + "bsd-simplified", + "bsd-simplified", + "isc", + "apache-2.0", + "isc", + "isc", + "wtfpl-2.0", + "isc", + ], + formatted: { + chartData: [ + ["ofl-1.1", 5], + ["cc0-1.0", 6], + ["mit", 14], + ["bsd-simplified", 17], + ["bsd-new", 20], + ["other", 27], + ["apache-2.0", 31], + ["isc", 31], + ], + untrimmedLength: 23, + }, + }, + { + entries: [], + formatted: { + chartData: [], + untrimmedLength: 0, + }, + }, + { + entries: [ + undefined, + null, + "No Value detected", + "Objective-C", + "Rust", + "Rust", + null, + "No Value detected", + "Ruby", + "Ruby", + null, + "Haxe", + "Perl", + "Ocaml", + "JavaScript", + "Python", + null, + "Python", + "Python", + ], + limit: 4, + formatted: { + chartData: [ + ["Ruby", 2], + ["Python", 3], + ["No Value detected", 7], + ["other", 7], + ], + untrimmedLength: 9, + }, + }, +]; diff --git a/tests/pie.test.ts b/tests/pie.test.ts new file mode 100644 index 00000000..420c57ea --- /dev/null +++ b/tests/pie.test.ts @@ -0,0 +1,19 @@ +import assert from "assert"; +import { PieFormatDataSamples, PieLimitDataSamples } from "./pie.test.data"; +import { formatPieChartData, limitPieChartData } from "../src/utils/pie"; + +describe("Limit values to be shown in chart", () => { + it.each(PieLimitDataSamples)( + "Limit entries from $data.length => $limited.length", + ({ data, chartDataLimit, limited }) => + assert.deepEqual(limitPieChartData(data, chartDataLimit), limited) + ); +}); + +describe("Count & format value occurences in given list of values", () => { + it.each(PieFormatDataSamples)( + "Format chart values of length $entries.length", + ({ entries, limit, formatted }) => + assert.deepEqual(formatPieChartData(entries, limit), formatted) + ); +}); diff --git a/tests/tableviewCellRenderers.test.ts b/tests/tableviewCellRenderers.test.ts new file mode 100644 index 00000000..1d209f2e --- /dev/null +++ b/tests/tableviewCellRenderers.test.ts @@ -0,0 +1,11 @@ +import { ALL_COLUMNS } from "../src/pages/TableView/columnDefs"; + +describe("Column Definitions", () => { + it("should have same keys as their column IDs and field", () => { + const colDefKeys = Object.keys(ALL_COLUMNS); + const colDefIds = Object.values(ALL_COLUMNS).map((col) => col.colId); + const colDefFields = Object.values(ALL_COLUMNS).map((col) => col.field); + expect(colDefIds).toEqual(colDefKeys); + expect(colDefFields).toEqual(colDefKeys); + }); +}); diff --git a/tests/test-scans/copyrights/expectedCopyrights.ts b/tests/test-scans/copyrights/expectedCopyrights.ts new file mode 100644 index 00000000..33f5d7a4 --- /dev/null +++ b/tests/test-scans/copyrights/expectedCopyrights.ts @@ -0,0 +1,84 @@ +import { CopyrightFlatFileAttributes } from "../../../src/services/models/flatFile"; +import { CopyrightAttributes } from "../../../src/services/models/copyright"; + +export const CopyrightSamples: { + jsonFileName: string; + expectedCopyrights: CopyrightAttributes[]; + expectedFlatFiles: CopyrightFlatFileAttributes[]; +}[] = [ + { + jsonFileName: "simple.json", + expectedCopyrights: [ + { + id: 1, + fileId: 1, + start_line: 1, + end_line: 1, + holders: '["Jason Gunthorpe and others"]', + authors: '["APT Development Team "]', + statements: '["copyright 1997, 1998, 1999 Jason Gunthorpe and others"]', + }, + { + id: 2, + fileId: 2, + start_line: 25, + end_line: 26, + holders: '["Google\', type"]', + authors: "[]", + statements: '["Copyright 2021 Google\', type"]', + }, + ], + expectedFlatFiles: [ + { + copyright_statements: "[[]]", + copyright_holders: "[[]]", + copyright_authors: "[[]]", + copyright_start_line: "[]", + copyright_end_line: "[]", + }, + { + copyright_statements: + '[["copyright 1997, 1998, 1999 Jason Gunthorpe and others"]]', + copyright_holders: '[["Jason Gunthorpe and others"]]', + copyright_authors: + '[["APT Development Team "]]', + copyright_start_line: "[[1]]", + copyright_end_line: "[[1]]", + }, + { + copyright_statements: '[["Copyright 2021 Google\', type"]]', + copyright_holders: '[["Google\', type"]]', + copyright_authors: "[[]]", + copyright_start_line: "[[25]]", + copyright_end_line: "[[26]]", + }, + ], + }, + { + jsonFileName: "noCopyrights.json", + expectedCopyrights: [], + expectedFlatFiles: [ + { + copyright_statements: "[[]]", + copyright_holders: "[[]]", + copyright_authors: "[[]]", + copyright_start_line: "[]", + copyright_end_line: "[]", + }, + { + copyright_statements: "[[]]", + copyright_holders: "[[]]", + copyright_authors: "[[]]", + copyright_start_line: "[]", + copyright_end_line: "[]", + }, + { + copyright_statements: "[[]]", + copyright_holders: "[[]]", + copyright_authors: "[[]]", + copyright_start_line: "[]", + copyright_end_line: "[]", + }, + ], + }, +]; diff --git a/tests/test-scans/copyrights/noCopyrights.json b/tests/test-scans/copyrights/noCopyrights.json new file mode 100644 index 00000000..1f3aeb94 --- /dev/null +++ b/tests/test-scans/copyrights/noCopyrights.json @@ -0,0 +1,18 @@ +{ + "files": [ + { + "path": "manifests", + "type": "directory" + }, + { + "path": "manifests/copyright", + "type": "file", + "name": "copyright" + }, + { + "path": "manifests/FirebaseAnalytics.podspec.json", + "type": "file", + "name": "FirebaseAnalytics.podspec.json" + } + ] +} diff --git a/tests/test-scans/copyrights/simple.json b/tests/test-scans/copyrights/simple.json new file mode 100644 index 00000000..5395cbc2 --- /dev/null +++ b/tests/test-scans/copyrights/simple.json @@ -0,0 +1,53 @@ +{ + "files": [ + { + "path": "manifests", + "type": "directory" + }, + { + "path": "manifests/copyright", + "type": "file", + "name": "copyright", + "copyrights": [ + { + "copyright": "copyright 1997, 1998, 1999 Jason Gunthorpe and others", + "start_line": 1, + "end_line": 1 + } + ], + "holders": [ + { + "holder": "Jason Gunthorpe and others", + "start_line": 1, + "end_line": 1 + } + ], + "authors": [ + { + "author": "APT Development Team ", + "start_line": 2, + "end_line": 2 + } + ] + }, + { + "path": "manifests/FirebaseAnalytics.podspec.json", + "type": "file", + "name": "FirebaseAnalytics.podspec.json", + "copyrights": [ + { + "copyright": "Copyright 2021 Google', type", + "start_line": 25, + "end_line": 26 + } + ], + "holders": [ + { + "holder": "Google', type", + "start_line": 25, + "end_line": 26 + } + ] + } + ] +} diff --git a/tests/test-scans/email_url_info/email_url_info.json b/tests/test-scans/email_url_info/email_url_info.json new file mode 100644 index 00000000..ee7fecb2 --- /dev/null +++ b/tests/test-scans/email_url_info/email_url_info.json @@ -0,0 +1,157 @@ +{ + "files": [ + { + "path": "basic", + "type": "directory", + "name": "basic", + "base_name": "basic", + "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, + "emails": [], + "urls": [], + "files_count": 6, + "dirs_count": 4, + "size_count": 57066, + "scan_errors": [] + }, + { + "path": "basic/dir2", + "type": "directory", + "name": "dir2", + "base_name": "dir2", + "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, + "emails": [], + "urls": [], + "files_count": 2, + "dirs_count": 1, + "size_count": 36457, + "scan_errors": [] + }, + { + "path": "basic/dir2/subdir", + "type": "directory", + "name": "subdir", + "base_name": "subdir", + "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, + "emails": [], + "urls": [], + "files_count": 2, + "dirs_count": 0, + "size_count": 36457, + "scan_errors": [] + }, + { + "path": "basic/dir2/subdir/bcopy.s", + "type": "file", + "name": "bcopy.s", + "base_name": "bcopy", + "extension": ".s", + "size": 32452, + "date": "2015-06-19", + "sha1": "99f20eafc7b7e1c8e21bced55c8cdd05339bec77", + "md5": "e1c66adaf6b8aa90e348668ac4869a61", + "sha256": "230de4eee886fa5ac0b056242ee0a9e90ac1d2fa425b14219902a9839fb4d59e", + "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, + "emails": [ + { + "email": "ws@tools.de", + "start_line": 412, + "end_line": 412 + } + ], + "urls": [ + { + "url": "http://www.cornfed.com/", + "start_line": 17, + "end_line": 17 + } + ], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + }, + { + "path": "basic/main.c", + "type": "file", + "name": "main.c", + "base_name": "main", + "extension": ".c", + "size": 1940, + "date": "2015-06-19", + "sha1": "35017ed9762bdc9d16054a40ceefdda8b362083a", + "md5": "8d0a3b3fe1c96a49af2a66040193291b", + "sha256": "c6f6fb075abb1414982b4aaea37093d9120ce28fea1484ca7e275c262ec09b1c", + "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, + "emails": [ + { + "email": "j@w1.fi", + "start_line": 3, + "end_line": 3 + } + ], + "urls": [], + "files_count": 0, + "dirs_count": 0, + "size_count": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/test-scans/email_url_info/expectedEmailUrlInfo.ts b/tests/test-scans/email_url_info/expectedEmailUrlInfo.ts new file mode 100644 index 00000000..31093b92 --- /dev/null +++ b/tests/test-scans/email_url_info/expectedEmailUrlInfo.ts @@ -0,0 +1,251 @@ +import { + EmailUrlFlatFileAttributes, + InfoFlatFileAttributes, +} from "../../../src/services/models/flatFile"; +import { EmailAttributes } from "../../../src/services/models/email"; +import { UrlAttributes } from "../../../src/services/models/url"; + +export const EmailUrlInfoSamples: { + jsonFileName: string; + expectedEmails: EmailAttributes[]; + expectedUrls: UrlAttributes[]; + expectedFlatFiles: (InfoFlatFileAttributes & EmailUrlFlatFileAttributes)[]; +}[] = [ + { + jsonFileName: "email_url_info.json", + expectedEmails: [ + { + id: 1, + fileId: 3, + email: "ws@tools.de", + start_line: 412, + end_line: 412, + }, + { + id: 2, + fileId: 4, + email: "j@w1.fi", + start_line: 3, + end_line: 3, + }, + ], + expectedUrls: [ + { + id: 1, + fileId: 3, + url: "http://www.cornfed.com/", + start_line: 17, + end_line: 17, + }, + ], + expectedFlatFiles: [ + { + type: "directory", + name: "basic", + extension: "", + date: null, + size: 57066, + sha1: null, + md5: null, + file_count: 6, + 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, + email: "[]", + email_start_line: "[]", + email_end_line: "[]", + url: "[]", + url_start_line: "[]", + url_end_line: "[]", + }, + { + type: "directory", + name: "dir2", + extension: "", + date: null, + size: 36457, + sha1: null, + md5: null, + file_count: 2, + 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, + email: "[]", + email_start_line: "[]", + email_end_line: "[]", + url: "[]", + url_start_line: "[]", + url_end_line: "[]", + }, + { + type: "directory", + name: "subdir", + extension: "", + date: null, + size: 36457, + sha1: null, + md5: null, + file_count: 2, + 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, + email: "[]", + email_start_line: "[]", + email_end_line: "[]", + url: "[]", + url_start_line: "[]", + url_end_line: "[]", + }, + { + type: "file", + name: "bcopy.s", + extension: ".s", + date: "2015-06-19", + size: 32452, + sha1: "99f20eafc7b7e1c8e21bced55c8cdd05339bec77", + md5: "e1c66adaf6b8aa90e348668ac4869a61", + file_count: 0, + 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, + email: '[["ws@tools.de"]]', + email_start_line: "[[412]]", + email_end_line: "[[412]]", + url: '[["http://www.cornfed.com/"]]', + url_start_line: "[[17]]", + url_end_line: "[[17]]", + }, + { + type: "file", + name: "main.c", + extension: ".c", + date: "2015-06-19", + size: 1940, + sha1: "35017ed9762bdc9d16054a40ceefdda8b362083a", + md5: "8d0a3b3fe1c96a49af2a66040193291b", + file_count: 0, + 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, + email: '[["j@w1.fi"]]', + email_start_line: "[[3]]", + email_end_line: "[[3]]", + url: "[]", + url_start_line: "[]", + url_end_line: "[]", + }, + ], + }, + { + jsonFileName: "minimal.json", + expectedEmails: [], + expectedUrls: [], + expectedFlatFiles: [ + { + type: "directory", + name: "manifests", + extension: "", + date: "", + size: null, + sha1: "", + md5: "", + file_count: null, + mime_type: "", + file_type: "", + programming_language: "", + is_binary: null, + is_text: null, + is_archive: null, + is_media: null, + is_source: null, + is_script: null, + email: "[]", + email_start_line: "[]", + email_end_line: "[]", + url: "[]", + url_start_line: "[]", + url_end_line: "[]", + }, + { + type: "file", + name: "copyright", + extension: "", + date: "", + size: null, + sha1: "", + md5: "", + file_count: null, + mime_type: "", + file_type: "", + programming_language: "", + is_binary: null, + is_text: null, + is_archive: null, + is_media: null, + is_source: null, + is_script: null, + email: "[]", + email_start_line: "[]", + email_end_line: "[]", + url: "[]", + url_start_line: "[]", + url_end_line: "[]", + }, + { + type: "file", + name: "FirebaseAnalytics.podspec.json", + extension: ".json", + date: "", + size: null, + sha1: "", + md5: "", + file_count: null, + mime_type: "", + file_type: "", + programming_language: "", + is_binary: null, + is_text: null, + is_archive: null, + is_media: null, + is_source: null, + is_script: null, + email: "[]", + email_start_line: "[]", + email_end_line: "[]", + url: "[]", + url_start_line: "[]", + url_end_line: "[]", + }, + ], + }, +]; diff --git a/tests/test-scans/email_url_info/minimal.json b/tests/test-scans/email_url_info/minimal.json new file mode 100644 index 00000000..1f3aeb94 --- /dev/null +++ b/tests/test-scans/email_url_info/minimal.json @@ -0,0 +1,18 @@ +{ + "files": [ + { + "path": "manifests", + "type": "directory" + }, + { + "path": "manifests/copyright", + "type": "file", + "name": "copyright" + }, + { + "path": "manifests/FirebaseAnalytics.podspec.json", + "type": "file", + "name": "FirebaseAnalytics.podspec.json" + } + ] +} diff --git a/tests/test-scans/fileTree/empty.json b/tests/test-scans/fileTree/empty.json new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/tests/test-scans/fileTree/empty.json @@ -0,0 +1 @@ +{} diff --git a/tests/test-scans/fileTree/expectedFileTree.ts b/tests/test-scans/fileTree/expectedFileTree.ts new file mode 100644 index 00000000..43598a39 --- /dev/null +++ b/tests/test-scans/fileTree/expectedFileTree.ts @@ -0,0 +1,236 @@ +import { FileDataNode } from "../../../src/services/workbenchDB"; + +export const FileTreeSamples: { + jsonFileName: string; + flatData: { + id: number; + path: string; + parent: string; + name: string; + type: string; + }[]; + fileTree: FileDataNode[]; +}[] = [ + { + jsonFileName: "sample.json", + flatData: [ + { + id: 0, + path: "manifests", + parent: "#", + name: null, + type: "directory", + }, + { + id: 1, + path: "manifests/copyright", + parent: "manifests", + name: null, + type: "file", + }, + { + id: 2, + path: "manifests/folder1", + parent: "manifests", + name: null, + type: "directory", + }, + { + id: 3, + path: "manifests/folder1/file1.txt", + parent: "manifests/folder1", + name: null, + type: "file", + }, + { + id: 4, + path: "manifests/folder1/folder2", + parent: "manifests/folder1", + name: null, + type: "directory", + }, + { + id: 5, + path: "manifests/folder1/folder2/file2.json", + parent: "manifests/folder1/folder2", + name: null, + type: "file", + }, + { + id: 6, + path: "manifests/folder3", + parent: "manifests", + name: null, + type: "directory", + }, + { + id: 7, + path: "manifests/folder3/file3.md", + parent: "manifests/folder3", + name: null, + type: "file", + }, + { + id: 8, + path: "manifests/GoogleCloudAnalytics.podspec.json", + parent: "manifests", + name: null, + type: "file", + }, + ], + fileTree: [ + { + id: 0, + key: "manifests", + title: "manifests", + path: "manifests", + parent: "#", + name: null, + type: "directory", + isLeaf: false, + children: [ + { + id: 2, + key: "manifests/folder1", + title: "folder1", + path: "manifests/folder1", + parent: "manifests", + name: null, + type: "directory", + isLeaf: false, + children: [ + { + id: 4, + key: "manifests/folder1/folder2", + title: "folder2", + path: "manifests/folder1/folder2", + parent: "manifests/folder1", + name: null, + type: "directory", + isLeaf: false, + children: [ + { + id: 5, + key: "manifests/folder1/folder2/file2.json", + title: "file2.json", + path: "manifests/folder1/folder2/file2.json", + parent: "manifests/folder1/folder2", + name: null, + type: "file", + isLeaf: true, + }, + ], + }, + { + id: 3, + key: "manifests/folder1/file1.txt", + title: "file1.txt", + path: "manifests/folder1/file1.txt", + parent: "manifests/folder1", + name: null, + type: "file", + isLeaf: true, + }, + ], + }, + { + id: 6, + key: "manifests/folder3", + title: "folder3", + path: "manifests/folder3", + parent: "manifests", + name: null, + type: "directory", + isLeaf: false, + children: [ + { + id: 7, + key: "manifests/folder3/file3.md", + title: "file3.md", + path: "manifests/folder3/file3.md", + parent: "manifests/folder3", + name: null, + type: "file", + isLeaf: true, + }, + ], + }, + { + id: 1, + key: "manifests/copyright", + title: "copyright", + path: "manifests/copyright", + parent: "manifests", + name: null, + type: "file", + isLeaf: true, + }, + { + id: 8, + key: "manifests/GoogleCloudAnalytics.podspec.json", + title: "GoogleCloudAnalytics.podspec.json", + path: "manifests/GoogleCloudAnalytics.podspec.json", + parent: "manifests", + name: null, + type: "file", + isLeaf: true, + }, + ], + }, + ], + }, + { + jsonFileName: "singledir.json", + flatData: [ + { + id: 0, + path: "manifests", + parent: "#", + name: null, + type: "directory", + }, + ], + fileTree: [ + { + id: 0, + key: "manifests", + title: "manifests", + path: "manifests", + parent: "#", + name: null, + type: "directory", + isLeaf: false, + children: [], + }, + ], + }, + { + jsonFileName: "singlefile.json", + flatData: [ + { + id: 0, + path: "copyright.txt", + parent: "#", + name: null, + type: "file", + }, + ], + fileTree: [ + { + id: 0, + key: "copyright.txt", + title: "copyright.txt", + path: "copyright.txt", + parent: "#", + name: null, + type: "file", + isLeaf: true, + }, + ], + }, + { + jsonFileName: "empty.json", + flatData: [], + fileTree: [], + }, +]; diff --git a/tests/test-scans/fileTree/sample.json b/tests/test-scans/fileTree/sample.json new file mode 100644 index 00000000..bdfe29a7 --- /dev/null +++ b/tests/test-scans/fileTree/sample.json @@ -0,0 +1,40 @@ +{ + "files": [ + { + "path": "manifests", + "type": "directory" + }, + { + "path": "manifests/copyright", + "type": "file" + }, + { + "path": "manifests/folder1", + "type": "directory" + }, + { + "path": "manifests/folder1/file1.txt", + "type": "file" + }, + { + "path": "manifests/folder1/folder2", + "type": "directory" + }, + { + "path": "manifests/folder1/folder2/file2.json", + "type": "file" + }, + { + "path": "manifests/folder3", + "type": "directory" + }, + { + "path": "manifests/folder3/file3.md", + "type": "file" + }, + { + "path": "manifests/GoogleCloudAnalytics.podspec.json", + "type": "file" + } + ] +} diff --git a/tests/test-scans/fileTree/singledir.json b/tests/test-scans/fileTree/singledir.json new file mode 100644 index 00000000..7985f59e --- /dev/null +++ b/tests/test-scans/fileTree/singledir.json @@ -0,0 +1,8 @@ +{ + "files": [ + { + "path": "manifests", + "type": "directory" + } + ] +} diff --git a/tests/test-scans/fileTree/singlefile.json b/tests/test-scans/fileTree/singlefile.json new file mode 100644 index 00000000..1ab6436f --- /dev/null +++ b/tests/test-scans/fileTree/singlefile.json @@ -0,0 +1,8 @@ +{ + "files": [ + { + "path": "copyright.txt", + "type": "file" + } + ] +} diff --git a/tests/test-scans/headers/expectedHeaders.ts b/tests/test-scans/headers/expectedHeaders.ts new file mode 100644 index 00000000..23a524a3 --- /dev/null +++ b/tests/test-scans/headers/expectedHeaders.ts @@ -0,0 +1,104 @@ +import { WORKBENCH_VERSION } from "../../../src/constants/general"; +import { ScanInfo, ScanOptionKeys } from "../../../src/utils/parsers"; + +export const HeaderSamples: { + jsonFileName: string; + expectedHeaders: ScanInfo; +}[] = [ + { + jsonFileName: "headerless.json", + expectedHeaders: { + json_file_name: "headerless.json", + tool_name: "", + tool_version: "", + notice: "", + duration: null, + optionsList: [], + optionsMap: new Map(), + input: [], + files_count: 0, + output_format_version: "", + spdx_license_list_version: "", + operating_system: "", + cpu_architecture: "", + platform: "", + platform_version: "", + python_version: "", + workbench_version: WORKBENCH_VERSION, + workbench_notice: + 'Exported from ScanCode Workbench and provided on an "AS IS" BASIS, WITHOUT WARRANTIES\\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\\nScanCode Workbench should be considered or used as legal advice. Consult an Attorney\\nfor any legal advice.\\nScanCode Workbench is a free software analysis application from nexB Inc. and others.\\nVisit https://github.com/nexB/scancode-workbench/ for support and download.', + raw_header_content: "{}", + errors: [], + }, + }, + { + jsonFileName: "minimal.json", + expectedHeaders: { + json_file_name: "minimal.json", + tool_name: "scancode-toolkit", + tool_version: "32.0.0rc3", + notice: + 'Generated with ScanCode and provided on an "AS IS" BASIS, WITHOUT WARRANTIES.', + duration: "25.00", + optionsList: [], + optionsMap: new Map(), + input: [], + files_count: 0, + output_format_version: "3.0.0", + spdx_license_list_version: "3.20", + 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]", + workbench_version: WORKBENCH_VERSION, + workbench_notice: + 'Exported from ScanCode Workbench and provided on an "AS IS" BASIS, WITHOUT WARRANTIES\\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\\nScanCode Workbench should be considered or used as legal advice. Consult an Attorney\\nfor any legal advice.\\nScanCode Workbench is a free software analysis application from nexB Inc. and others.\\nVisit https://github.com/nexB/scancode-workbench/ for support and download.', + raw_header_content: + '{\n "tool_name": "scancode-toolkit",\n "tool_version": "32.0.0rc3",\n "notice": "Generated with ScanCode and provided on an \\"AS IS\\" BASIS, WITHOUT WARRANTIES.",\n "start_timestamp": "2023-04-03T075922.014902",\n "end_timestamp": "2023-04-03T075941.622685",\n "output_format_version": "3.0.0",\n "duration": 25,\n "extra_data": {\n "system_environment": {\n "operating_system": "linux",\n "cpu_architecture": "64",\n "platform": "Linux-5.14.0-1059-oem-x86_64-with-glibc2.29",\n "platform_version": "#67-Ubuntu SMP Mon Mar 13 14:22:10 UTC 2023",\n "python_version": "3.8.10 (default, Mar 13 2023, 10:26:41) \\n[GCC 9.4.0]"\n },\n "spdx_license_list_version": "3.20"\n }\n}', + errors: [], + }, + }, + { + jsonFileName: "withOptions.json", + expectedHeaders: { + json_file_name: "withOptions.json", + tool_name: "scancode-toolkit", + tool_version: "32.0.0rc3", + notice: + 'Generated with ScanCode and provided on an "AS IS" BASIS, WITHOUT WARRANTIES.', + duration: "19.61", + optionsList: [ + ["--classify", true], + ["--copyright", true], + ["--json-pp", "hazelcast-v32.0.0rc3-wref.json"], + ["--license-text", true], + ["--processes", "12"], + ["--url", true], + ], + optionsMap: new Map([ + [ScanOptionKeys.CLASSIFY, true], + [ScanOptionKeys.COPYRIGHT, true], + [ScanOptionKeys.JSON_PP, "hazelcast-v32.0.0rc3-wref.json"], + [ScanOptionKeys.LICENSE_TEXT, true], + [ScanOptionKeys.PROCESSES, "12"], + [ScanOptionKeys.URL, true], + ]), + input: ["hazelcast-spring-5.1.5-sources/"], + files_count: 39, + output_format_version: "2.0.0", + spdx_license_list_version: "3.10", + 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]", + workbench_version: WORKBENCH_VERSION, + workbench_notice: + 'Exported from ScanCode Workbench and provided on an "AS IS" BASIS, WITHOUT WARRANTIES\\nOR CONDITIONS OF ANY KIND, either express or implied. No content created from\\nScanCode Workbench should be considered or used as legal advice. Consult an Attorney\\nfor any legal advice.\\nScanCode Workbench is a free software analysis application from nexB Inc. and others.\\nVisit https://github.com/nexB/scancode-workbench/ for support and download.', + raw_header_content: + '{\n "tool_name": "scancode-toolkit",\n "tool_version": "32.0.0rc3",\n "options": {\n "--classify": true,\n "--copyright": true,\n "--json-pp": "hazelcast-v32.0.0rc3-wref.json",\n "--license-text": true,\n "--processes": "12",\n "--url": true\n },\n "notice": "Generated with ScanCode and provided on an \\"AS IS\\" BASIS, WITHOUT WARRANTIES.",\n "start_timestamp": "2023-04-03T075922.014902",\n "end_timestamp": "2023-04-03T075941.622685",\n "output_format_version": "2.0.0",\n "duration": 19.607794523239136,\n "message": null,\n "errors": [],\n "warnings": [],\n "extra_data": {\n "system_environment": {\n "operating_system": "linux",\n "cpu_architecture": "64",\n "platform": "Linux-5.14.0-1059-oem-x86_64-with-glibc2.29",\n "platform_version": "#67-Ubuntu SMP Mon Mar 13 14:22:10 UTC 2023",\n "python_version": "3.8.10 (default, Mar 13 2023, 10:26:41) \\n[GCC 9.4.0]"\n },\n "spdx_license_list_version": "3.10",\n "files_count": 39\n }\n}', + errors: [], + }, + }, +]; diff --git a/tests/test-scans/headers/headerless.json b/tests/test-scans/headers/headerless.json new file mode 100644 index 00000000..28041c47 --- /dev/null +++ b/tests/test-scans/headers/headerless.json @@ -0,0 +1,3 @@ +{ + "NOTE": "Test for headerless scans" +} diff --git a/tests/test-scans/headers/minimal.json b/tests/test-scans/headers/minimal.json new file mode 100644 index 00000000..51f0210f --- /dev/null +++ b/tests/test-scans/headers/minimal.json @@ -0,0 +1,23 @@ +{ + "headers": [ + { + "tool_name": "scancode-toolkit", + "tool_version": "32.0.0rc3", + "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES.", + "start_timestamp": "2023-04-03T075922.014902", + "end_timestamp": "2023-04-03T075941.622685", + "output_format_version": "3.0.0", + "duration": 25, + "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" + } + } + ] +} diff --git a/tests/test-scans/headers/withOptions.json b/tests/test-scans/headers/withOptions.json new file mode 100644 index 00000000..5e83e191 --- /dev/null +++ b/tests/test-scans/headers/withOptions.json @@ -0,0 +1,36 @@ +{ + "headers": [ + { + "tool_name": "scancode-toolkit", + "tool_version": "32.0.0rc3", + "options": { + "input": ["hazelcast-spring-5.1.5-sources/"], + "--classify": true, + "--copyright": true, + "--json-pp": "hazelcast-v32.0.0rc3-wref.json", + "--license-text": true, + "--processes": "12", + "--url": true + }, + "notice": "Generated with ScanCode and provided on an \"AS IS\" BASIS, WITHOUT WARRANTIES.", + "start_timestamp": "2023-04-03T075922.014902", + "end_timestamp": "2023-04-03T075941.622685", + "output_format_version": "2.0.0", + "duration": 19.607794523239136, + "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.10", + "files_count": 39 + } + } + ] +} diff --git a/tests/test-scans/licenses/expectedLicenses.ts b/tests/test-scans/licenses/expectedLicenses.ts new file mode 100644 index 00000000..cfdefc05 --- /dev/null +++ b/tests/test-scans/licenses/expectedLicenses.ts @@ -0,0 +1,316 @@ +import { LicenseFlatFileAttributes } from "../../../src/services/models/flatFile"; +import { LicenseClueAttributes } from "../../../src/services/models/licenseClues"; +import { LicenseDetectionAttributes } from "../../../src/services/models/licenseDetections"; +import { LicenseExpressionAttributes } from "../../../src/services/models/licenseExpression"; +import { LicensePolicyAttributes } from "../../../src/services/models/licensePolicy"; +import { LicenseRuleReferenceAttributes } from "../../../src/services/models/licenseRuleReference"; + +export const LicenseSamples: { + jsonFileName: string; + expectedFlatFiles: LicenseFlatFileAttributes[]; + expectedLicenseClues: LicenseClueAttributes[]; + expectedLicenseDetections: LicenseDetectionAttributes[]; + expectedLicenseExpressions: LicenseExpressionAttributes[]; + expectedLicensePolicies: LicensePolicyAttributes[]; + expectedLicenseRuleReferences: LicenseRuleReferenceAttributes[]; +}[] = [ + { + jsonFileName: "withLicenses.json", + expectedLicenseClues: [ + { + id: 1, + fileId: 5, + filePath: "rx-lite/package.json", + fileClueIdx: 0, + score: 52, + license_expression: "apache-2.0 OR gpl-2.0", + rule_identifier: "apache-2.0_or_gpl-2.0_24.RULE", + matches: + '[{"score":52,"start_line":56,"end_line":59,"matched_length":13,"match_coverage":52,"matcher":"3-seq","license_expression":"apache-2.0 OR gpl-2.0","rule_identifier":"apache-2.0_or_gpl-2.0_24.RULE","rule_relevance":100,"rule_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_24.RULE","path":"rx-lite/package.json","license_expression_keys":[{"key":"apache-2.0","licensedb_url":"https://scancode-licensedb.aboutcode.org/apache-2.0","scancode_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE"},{"key":"gpl-2.0","licensedb_url":"https://scancode-licensedb.aboutcode.org/gpl-2.0","scancode_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/gpl-2.0.LICENSE"}]}]', + file_regions: + '[{"path":"rx-lite/package.json","start_line":56,"end_line":59}]', + }, + ], + expectedLicenseDetections: [ + { + identifier: + "apache_2_0_and_gpl_3_0-494ca0ae-1282-09a2-139f-a52c04fde6dc", + license_expression: "apache-2.0 AND gpl-3.0", + detection_count: 1, + detection_log: null, + matches: + '[{"score":100,"start_line":1,"end_line":1,"matched_length":4,"match_coverage":100,"matcher":"2-aho","license_expression":"apache-2.0","rule_identifier":"apache-2.0_65.RULE","rule_relevance":100,"rule_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_65.RULE","license_expression_keys":[{"key":"apache-2.0","licensedb_url":"https://scancode-licensedb.aboutcode.org/apache-2.0","scancode_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE"}],"license_expression_spdx_keys":[{"key":"Apache-2.0","spdx_url":"https://spdx.org/licenses/Apache-2.0"}],"license_expression_spdx":"Apache-2.0","path":"anglesharp.css.0.16.4/file_with_multiple_licenses.txt"},{"score":100,"start_line":3,"end_line":3,"matched_length":4,"match_coverage":100,"matcher":"2-aho","license_expression":"gpl-3.0","rule_identifier":"gpl-3.0_173.RULE","rule_relevance":100,"rule_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_173.RULE","license_expression_keys":[{"key":"gpl-3.0","licensedb_url":null,"scancode_url":null}],"license_expression_spdx_keys":[{"key":"GPL-3.0-only","spdx_url":null}],"license_expression_spdx":"GPL-3.0-only","path":"anglesharp.css.0.16.4/file_with_multiple_licenses.txt"}]', + file_regions: + '[{"path":"anglesharp.css.0.16.4/file_with_multiple_licenses.txt","start_line":1,"end_line":3,"from_package":false}]', + }, + { + identifier: "mit-b941df29-6c4b-fe7e-752f-a5fc7f9a28b5", + license_expression: "mit", + detection_count: 1, + detection_log: null, + matches: + '[{"score":100,"start_line":9,"end_line":9,"matched_length":2,"match_coverage":100,"matcher":"2-aho","license_expression":"mit","rule_identifier":"mit_14.RULE","rule_relevance":100,"rule_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_14.RULE","matched_text":"MIT","license_expression_keys":[{"key":"mit","licensedb_url":"https://scancode-licensedb.aboutcode.org/mit","scancode_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE"}],"license_expression_spdx_keys":[{"key":"MIT","spdx_url":"https://spdx.org/licenses/MIT"}],"license_expression_spdx":"MIT","path":"anglesharp.css.0.16.4/AngleSharp.Css.nuspec"},{"score":100,"start_line":10,"end_line":10,"matched_length":5,"match_coverage":100,"matcher":"1-spdx-id","license_expression":"mit","rule_identifier":"spdx-license-identifier-mit-c02399fc3bda518cf5890c9587642a2525fce16b","rule_relevance":100,"rule_url":null,"matched_text":"licenses.nuget.org/MIT","license_expression_keys":[{"key":"mit","licensedb_url":"https://scancode-licensedb.aboutcode.org/mit","scancode_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE"}],"license_expression_spdx_keys":[{"key":"MIT","spdx_url":"https://spdx.org/licenses/MIT"}],"license_expression_spdx":"MIT","path":"anglesharp.css.0.16.4/AngleSharp.Css.nuspec"}]', + file_regions: + '[{"path":"anglesharp.css.0.16.4/AngleSharp.Css.nuspec","start_line":9,"end_line":10,"from_package":false}]', + }, + { + identifier: "mit-a822f434-d61f-f2b1-c792-8b8cb9e7b9bf", + license_expression: "mit", + detection_count: 1, + detection_log: null, + matches: + '[{"score":100,"start_line":1,"end_line":1,"matched_length":1,"match_coverage":100,"matcher":"1-spdx-id","license_expression":"mit","rule_identifier":"spdx-license-identifier-mit-5da48780aba670b0860c46d899ed42a0f243ff06","rule_relevance":100,"rule_url":null,"matched_text":"MIT","license_expression_keys":[{"key":"mit","licensedb_url":"https://scancode-licensedb.aboutcode.org/mit","scancode_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/mit.LICENSE"}],"license_expression_spdx_keys":[{"key":"MIT","spdx_url":"https://spdx.org/licenses/MIT"}],"license_expression_spdx":"MIT","path":"anglesharp.css.0.16.4/AngleSharp.Css.nuspec"}]', + file_regions: + '[{"path":"anglesharp.css.0.16.4/AngleSharp.Css.nuspec","start_line":1,"end_line":1,"from_package":true}]', + }, + { + identifier: "unknown-73f5f4e3-0fd7-c629-d3b0-a8bf52447aff", + license_expression: "unknown", + detection_count: 4, + detection_log: null, + matches: + '[{"score":77.78,"start_line":1,"end_line":1,"matched_length":7,"match_coverage":100,"matcher":"5-undetected","license_expression":"unknown","rule_identifier":"package-manifest-unknown-16117ed57856733eaaf6d91ea575b186a9dab3df","rule_relevance":100,"rule_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/package-manifest-unknown-16117ed57856733eaaf6d91ea575b186a9dab3df","matched_text":"license {\'LegalCopyright\': \'Copyright © AngleSharp, 2013-2019\', \'LegalTrademarks\': \'\', \'License\': None}","license_expression_keys":[{"key":"unknown","licensedb_url":"https://scancode-licensedb.aboutcode.org/unknown","scancode_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/unknown.LICENSE"}],"license_expression_spdx_keys":[],"path":"anglesharp.css.0.16.4/AngleSharp.Css.dll"}]', + file_regions: + '[{"path":"anglesharp.css.0.16.4/AngleSharp.Css.dll","start_line":1,"end_line":1,"from_package":true},{"path":"anglesharp.css.0.16.4/AngleSharpLib.Css.dll","start_line":1,"end_line":1,"from_package":true}]', + }, + { + identifier: "apache_2_0-428c1364-ecb5-f806-7a2e-77d10737a7ce", + license_expression: "apache-2.0", + detection_count: 1, + detection_log: null, + matches: + '[{"score":100,"start_line":1,"end_line":1,"matched_length":5,"match_coverage":100,"matcher":"1-hash","license_expression":"apache-2.0","rule_identifier":"apache-2.0_48.RULE","rule_relevance":100,"rule_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_48.RULE","matched_text":"Apache License, Version 2.0","license_expression_keys":[{"key":"apache-2.0","licensedb_url":"https://scancode-licensedb.aboutcode.org/apache-2.0","scancode_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE"}],"license_expression_spdx_keys":[],"path":"rx-lite/package.json"}]', + file_regions: + '[{"path":"rx-lite/package.json","start_line":1,"end_line":1,"from_package":true}]', + }, + { + identifier: "apache_2_0-9a5226a4-0901-7d18-06ae-49c1887ecbd7", + license_expression: "apache-2.0", + detection_count: 1, + detection_log: null, + matches: + '[{"score":100,"start_line":1,"end_line":1,"matched_length":9,"match_coverage":100,"matcher":"1-hash","license_expression":"apache-2.0","rule_identifier":"apache-2.0_20.RULE","rule_relevance":100,"rule_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_20.RULE","matched_text":"http://www.apache.org/licenses/LICENSE-2.0.html","license_expression_keys":[{"key":"apache-2.0","licensedb_url":"https://scancode-licensedb.aboutcode.org/apache-2.0","scancode_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE"}],"license_expression_spdx_keys":[],"path":"rx-lite/package.json"}]', + file_regions: + '[{"path":"rx-lite/package.json","start_line":1,"end_line":1,"from_package":true}]', + }, + ], + expectedLicenseExpressions: [ + { + id: 1, + fileId: 1, + license_expression: "apache-2.0 AND gpl-3.0", + license_expression_spdx: "Apache-2.0 AND GPL-3.0-only", + license_keys: '["apache-2.0","gpl-3.0"]', + license_keys_spdx: '["Apache-2.0","GPL-3.0-only"]', + }, + { + id: 2, + fileId: 3, + license_expression: "mit", + license_expression_spdx: "MIT", + license_keys: '["mit"]', + license_keys_spdx: '["MIT"]', + }, + ], + expectedLicensePolicies: [ + { + id: 1, + fileId: 1, + license_key: "apache-2.0", + label: "Approved License", + color_code: "#008000", + icon: "icon-ok-circle", + }, + { + id: 2, + fileId: 1, + license_key: "gpl-3.0", + label: "Restricted License", + color_code: "#FFcc33", + icon: "icon-warning-sign", + }, + ], + expectedLicenseRuleReferences: [ + { + id: 1, + license_expression: "mit", + identifier: "mit_14.RULE", + language: "en", + rule_url: + "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_14.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: 2, + relevance: 100, + minimum_coverage: 100, + text: "MIT license", + }, + { + id: 2, + license_expression: "mit", + identifier: + "spdx-license-identifier-mit-5da48780aba670b0860c46d899ed42a0f243ff06", + language: "en", + rule_url: null, + is_license_text: false, + is_license_notice: false, + is_license_reference: false, + is_license_tag: true, + is_license_intro: false, + is_continuous: false, + is_builtin: true, + is_from_license: false, + is_synthetic: true, + length: 1, + relevance: 100, + minimum_coverage: 0, + text: "MIT", + }, + { + id: 3, + license_expression: "mit", + identifier: + "spdx-license-identifier-mit-9bb4edb114765888fe17c4abc738531d3a8554cc", + language: "en", + rule_url: null, + is_license_text: false, + is_license_notice: false, + is_license_reference: false, + is_license_tag: true, + is_license_intro: false, + is_continuous: false, + is_builtin: true, + is_from_license: false, + is_synthetic: true, + length: 5, + relevance: 100, + minimum_coverage: 0, + text: "licenses.nuget.org/MIT", + }, + { + id: 4, + license_expression: "apache-2.0", + identifier: "apache-2.0_20.RULE", + language: "en", + rule_url: + "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_20.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: 9, + relevance: 100, + minimum_coverage: 100, + text: "http://www.apache.org/licenses/LICENSE-2.0.html", + }, + { + id: 5, + license_expression: "apache-2.0", + identifier: "apache-2.0_48.RULE", + language: "en", + rule_url: + "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_48.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: 5, + relevance: 100, + minimum_coverage: 80, + text: "Apache License, Version 2.0", + }, + { + id: 6, + license_expression: "apache-2.0 OR gpl-2.0", + identifier: "apache-2.0_or_gpl-2.0_24.RULE", + language: "en", + rule_url: + "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_24.RULE", + is_license_text: false, + is_license_notice: false, + is_license_reference: false, + is_license_tag: true, + is_license_intro: false, + is_continuous: false, + is_builtin: true, + is_from_license: false, + is_synthetic: false, + length: 25, + relevance: 100, + minimum_coverage: 50, + text: '"licenses": [\n {\n "type": "Apache License",\n "url": "http://www.apache.org/licenses/LICENSE-2.0"\n }, {\n "type": "GPL",\n "url": "https://www.gnu.org/licenses/gpl-2.0.html"\n }\n ],', + }, + ], + expectedFlatFiles: [ + { + detected_license_expression: null, + detected_license_expression_spdx: null, + percentage_of_license_text: 0, + license_policy: "[]", + license_clues: "[]", + license_detections: "[]", + }, + { + detected_license_expression: "apache-2.0 AND gpl-3.0", + detected_license_expression_spdx: "Apache-2.0 AND GPL-3.0-only", + percentage_of_license_text: 100, + //prettier-ignore + license_policy: "[\"apache-2.0 - Approved License\",\"gpl-3.0 - Restricted License\"]", + license_clues: "[]", + license_detections: + '[{"license_expression":"apache-2.0 AND gpl-3.0","identifier":"apache_2_0_and_gpl_3_0-494ca0ae-1282-09a2-139f-a52c04fde6dc"}]', + }, + { + detected_license_expression: null, + detected_license_expression_spdx: null, + percentage_of_license_text: 0, + license_policy: "[]", + license_clues: "[]", + license_detections: "[]", + }, + { + detected_license_expression: "mit", + detected_license_expression_spdx: "MIT", + percentage_of_license_text: 6.36, + license_policy: "[]", + license_clues: "[]", + license_detections: + '[{"license_expression":"mit","detection_log":[],"identifier":"mit-b941df29-6c4b-fe7e-752f-a5fc7f9a28b5"}]', + }, + { + detected_license_expression: null, + detected_license_expression_spdx: null, + percentage_of_license_text: 0, + license_policy: "[]", + license_clues: "[]", + license_detections: "[]", + }, + { + detected_license_expression: null, + detected_license_expression_spdx: null, + percentage_of_license_text: 6.37, + license_policy: "[]", + license_clues: + '[{"score":52,"start_line":56,"end_line":59,"matched_length":13,"match_coverage":52,"matcher":"3-seq","license_expression":"apache-2.0 OR gpl-2.0","rule_identifier":"apache-2.0_or_gpl-2.0_24.RULE","rule_relevance":100,"rule_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_24.RULE","fileId":5,"filePath":"rx-lite/package.json","fileClueIdx":0,"matches":[{"score":52,"start_line":56,"end_line":59,"matched_length":13,"match_coverage":52,"matcher":"3-seq","license_expression":"apache-2.0 OR gpl-2.0","rule_identifier":"apache-2.0_or_gpl-2.0_24.RULE","rule_relevance":100,"rule_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_24.RULE","path":"rx-lite/package.json","license_expression_keys":[{"key":"apache-2.0","licensedb_url":"https://scancode-licensedb.aboutcode.org/apache-2.0","scancode_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/apache-2.0.LICENSE"},{"key":"gpl-2.0","licensedb_url":"https://scancode-licensedb.aboutcode.org/gpl-2.0","scancode_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/gpl-2.0.LICENSE"}]}],"file_regions":[{"path":"rx-lite/package.json","start_line":56,"end_line":59}]}]', + license_detections: "[]", + }, + ], + }, +]; diff --git a/tests/test-scans/licenses/withLicenses.json b/tests/test-scans/licenses/withLicenses.json new file mode 100644 index 00000000..3ffce517 --- /dev/null +++ b/tests/test-scans/licenses/withLicenses.json @@ -0,0 +1,786 @@ +{ + "license_detections": [ + { + "identifier": "apache_2_0_and_gpl_3_0-494ca0ae-1282-09a2-139f-a52c04fde6dc", + "license_expression": "apache-2.0 AND gpl-3.0", + "detection_count": 1 + }, + { + "identifier": "mit-b941df29-6c4b-fe7e-752f-a5fc7f9a28b5", + "license_expression": "mit", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "mit-a822f434-d61f-f2b1-c792-8b8cb9e7b9bf", + "license_expression": "mit", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "unknown-73f5f4e3-0fd7-c629-d3b0-a8bf52447aff", + "license_expression": "unknown", + "detection_count": 4, + "detection_log": [] + }, + { + "identifier": "apache_2_0-428c1364-ecb5-f806-7a2e-77d10737a7ce", + "license_expression": "apache-2.0", + "detection_count": 1, + "detection_log": [] + }, + { + "identifier": "apache_2_0-9a5226a4-0901-7d18-06ae-49c1887ecbd7", + "license_expression": "apache-2.0", + "detection_count": 1, + "detection_log": [] + } + ], + "license_references": [ + { + "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, + "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": "unknown", + "language": "en", + "short_name": "unknown", + "name": "Unknown license detected but not recognized", + "category": "Unstated License", + "owner": "Unspecified", + "homepage_url": null, + "notes": "This applies to the case where there is text referring to a license, but it is not possible to determine exactly which license.", + "is_builtin": true, + "is_exception": false, + "is_unknown": true, + "is_generic": false, + "spdx_license_key": "LicenseRef-scancode-unknown", + "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, + "text": "", + "scancode_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/unknown.LICENSE", + "licensedb_url": "https://scancode-licensedb.aboutcode.org/unknown", + "spdx_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/unknown.LICENSE" + }, + { + "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": "gpl-2.0", + "language": "en", + "short_name": "GPL 2.0", + "name": "GNU General Public License 2.0", + "category": "Copyleft", + "owner": "Free Software Foundation (FSF)", + "homepage_url": "http://www.gnu.org/licenses/gpl-2.0.html", + "notes": "This is the last version of the GPL text as published by the FSF. This variation was published around about the time of the FSF released the GPL 3 in July 2007. See http://web.archive.org/web/20070716031727/http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt It is found live here https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt and here https://www.gnu.org/licenses/old-licenses/gpl-2.0.html It refers to the Franklin Street address and to the GNU Lesser General Public License everywhere both in the text and HTML formats. There are many other variations of the GPL 2.0 text that were published over the years by the FSF and the gnu.org website. You can find the detailed history of this text at https://github.com/pombredanne/gpl-history and each variant is available as a license detection rule. Per SPDX.org, this license was released June 1991 This license is OSI certified.", + "is_builtin": true, + "is_exception": false, + "is_unknown": false, + "is_generic": false, + "spdx_license_key": "GPL-2.0-only", + "other_spdx_license_keys": ["GPL-2.0", "GPL 2.0", "LicenseRef-GPL-2.0"], + "osi_license_key": "GPL-2.0", + "text_urls": [ + "http://www.gnu.org/licenses/gpl-2.0.txt", + "http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt" + ], + "osi_url": "http://opensource.org/licenses/gpl-license.php", + "faq_url": "http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html", + "other_urls": [ + "http://creativecommons.org/choose/cc-gpl", + "http://creativecommons.org/images/public/cc-GPL-a.png", + "http://creativecommons.org/licenses/GPL/2.0/", + "http://creativecommons.org/licenses/GPL/2.0/legalcode.pt", + "http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "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": 0, + "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": " 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.LICENSE", + "licensedb_url": "https://scancode-licensedb.aboutcode.org/gpl-2.0", + "spdx_url": "https://spdx.org/licenses/GPL-2.0-only" + } + ], + "license_rule_references": [ + { + "license_expression": "mit", + "identifier": "mit_14.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_14.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": 2, + "relevance": 100, + "minimum_coverage": 100, + "referenced_filenames": [], + "notes": null, + "text": "MIT license" + }, + { + "license_expression": "mit", + "identifier": "spdx-license-identifier-mit-5da48780aba670b0860c46d899ed42a0f243ff06", + "language": "en", + "rule_url": null, + "is_license_text": false, + "is_license_notice": false, + "is_license_reference": false, + "is_license_tag": true, + "is_license_intro": false, + "is_continuous": false, + "is_builtin": true, + "is_from_license": false, + "is_synthetic": true, + "length": 1, + "relevance": 100, + "minimum_coverage": 0, + "referenced_filenames": [], + "notes": null, + "text": "MIT" + }, + { + "license_expression": "mit", + "identifier": "spdx-license-identifier-mit-9bb4edb114765888fe17c4abc738531d3a8554cc", + "language": "en", + "rule_url": null, + "is_license_text": false, + "is_license_notice": false, + "is_license_reference": false, + "is_license_tag": true, + "is_license_intro": false, + "is_continuous": false, + "is_builtin": true, + "is_from_license": false, + "is_synthetic": true, + "length": 5, + "relevance": 100, + "minimum_coverage": 0, + "referenced_filenames": [], + "notes": null, + "text": "licenses.nuget.org/MIT" + }, + { + "license_expression": "apache-2.0", + "identifier": "apache-2.0_20.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_20.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": 9, + "relevance": 100, + "minimum_coverage": 100, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": ["http://www.apache.org/licenses/LICENSE-2.0.html"], + "ignorable_emails": [], + "text": "http://www.apache.org/licenses/LICENSE-2.0.html" + }, + { + "license_expression": "apache-2.0", + "identifier": "apache-2.0_48.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_48.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": 5, + "relevance": 100, + "minimum_coverage": 80, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [], + "ignorable_emails": [], + "text": "Apache License, Version 2.0" + }, + { + "license_expression": "apache-2.0 OR gpl-2.0", + "identifier": "apache-2.0_or_gpl-2.0_24.RULE", + "language": "en", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_24.RULE", + "is_license_text": false, + "is_license_notice": false, + "is_license_reference": false, + "is_license_tag": true, + "is_license_intro": false, + "is_continuous": false, + "is_builtin": true, + "is_from_license": false, + "is_synthetic": false, + "length": 25, + "relevance": 100, + "minimum_coverage": 50, + "referenced_filenames": [], + "notes": null, + "ignorable_copyrights": [], + "ignorable_holders": [], + "ignorable_authors": [], + "ignorable_urls": [ + "http://www.apache.org/licenses/LICENSE-2.0", + "https://www.gnu.org/licenses/gpl-2.0.html" + ], + "ignorable_emails": [], + "text": "\"licenses\": [\n {\n \"type\": \"Apache License\",\n \"url\": \"http://www.apache.org/licenses/LICENSE-2.0\"\n }, {\n \"type\": \"GPL\",\n \"url\": \"https://www.gnu.org/licenses/gpl-2.0.html\"\n }\n ]," + } + ], + "files": [ + { + "path": "anglesharp.css.0.16.4", + "type": "directory", + "name": "anglesharp.css.0.16.4", + "base_name": "anglesharp.css.0.16.4", + "package_data": [], + "is_legal": false, + "is_key_file": false, + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0 + }, + { + "path": "anglesharp.css.0.16.4/file_with_multiple_licenses.txt", + "type": "file", + "name": "file_with_multiple_licenses.txt", + "base_name": "file_with_multiple_licenses", + "detected_license_expression": "apache-2.0 AND gpl-3.0", + "detected_license_expression_spdx": "Apache-2.0 AND GPL-3.0-only", + "license_detections": [ + { + "license_expression": "apache-2.0 AND gpl-3.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_65.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_65.RULE" + }, + { + "score": 100.0, + "start_line": 3, + "end_line": 3, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "gpl-3.0", + "rule_identifier": "gpl-3.0_173.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_173.RULE" + } + ], + "identifier": "apache_2_0_and_gpl_3_0-494ca0ae-1282-09a2-139f-a52c04fde6dc" + } + ], + "license_clues": [], + "percentage_of_license_text": 100.0, + "license_policy": [ + { + "license_key": "apache-2.0", + "label": "Approved License", + "color_code": "#008000", + "icon": "icon-ok-circle" + }, + { + "license_key": "gpl-3.0", + "label": "Restricted License", + "color_code": "#FFcc33", + "icon": "icon-warning-sign" + } + ] + }, + { + "path": "anglesharp.css.0.16.4/AngleSharp.Css.dll", + "type": "file", + "name": "AngleSharp.Css.dll", + "base_name": "AngleSharp.Css", + "package_data": [ + { + "type": "winexe", + "namespace": null, + "name": "AngleSharp.Css", + "version": "0.16.4+a754c9adb1d678341e9f489674a8ad7a7199eae8", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "AngleSharp.Css\nExtends the CSSOM from the core AngleSharp library.", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "author", + "name": "AngleSharp.Css", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "declared_license_expression": "unknown", + "declared_license_expression_spdx": "LicenseRef-scancode-unknown", + "license_detections": [ + { + "license_expression": "unknown", + "matches": [ + { + "score": 77.78, + "start_line": 1, + "end_line": 1, + "matched_length": 7, + "match_coverage": 100.0, + "matcher": "5-undetected", + "license_expression": "unknown", + "rule_identifier": "package-manifest-unknown-16117ed57856733eaaf6d91ea575b186a9dab3df", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/package-manifest-unknown-16117ed57856733eaaf6d91ea575b186a9dab3df", + "matched_text": "license {'LegalCopyright': 'Copyright \u00a9 AngleSharp, 2013-2019', 'LegalTrademarks': '', 'License': None}" + } + ], + "identifier": "unknown-73f5f4e3-0fd7-c629-d3b0-a8bf52447aff" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "LegalCopyright: Copyright \u00a9 AngleSharp, 2013-2019\nLegalTrademarks:\nLicense:\n", + "notice_text": null, + "api_data_url": null, + "datasource_id": "windows_executable", + "purl": "pkg:winexe/AngleSharp.Css@0.16.4%2Ba754c9adb1d678341e9f489674a8ad7a7199eae8" + } + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0 + }, + { + "path": "anglesharp.css.0.16.4/AngleSharp.Css.nuspec", + "type": "file", + "name": "AngleSharp.Css.nuspec", + "base_name": "AngleSharp.Css", + "package_data": [ + { + "type": "nuget", + "namespace": null, + "name": "AngleSharp.Css", + "version": "0.16.4", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "Extends the CSSOM from the core AngleSharp library.", + "release_date": null, + "parties": [ + { + "type": null, + "role": "author", + "name": "AngleSharp", + "email": null, + "url": null + }, + { + "type": null, + "role": "owner", + "name": "Florian Rappl", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "https://anglesharp.github.io/", + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "declared_license_expression": "mit", + "declared_license_expression_spdx": "MIT", + "license_detections": [ + { + "license_expression": "mit", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 1, + "match_coverage": 100.0, + "matcher": "1-spdx-id", + "license_expression": "mit", + "rule_identifier": "spdx-license-identifier-mit-5da48780aba670b0860c46d899ed42a0f243ff06", + "rule_relevance": 100, + "rule_url": null, + "matched_text": "MIT" + } + ], + "identifier": "mit-a822f434-d61f-f2b1-c792-8b8cb9e7b9bf" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "'@type': expression\n'#text': MIT\n", + "extra_data": {}, + "dependencies": [ + { + "purl": "pkg:nuget/AngleSharp", + "extracted_requirement": "0.16.1", + "scope": "dependency", + "is_runtime": true, + "is_optional": false, + "is_resolved": false, + "resolved_package": {}, + "extra_data": {} + } + ], + "repository_homepage_url": "https://www.nuget.org/packages/AngleSharp.Css/0.16.4", + "repository_download_url": "https://www.nuget.org/api/v2/package/AngleSharp.Css/0.16.4", + "api_data_url": "https://api.nuget.org/v3/registration3/anglesharp.css/0.16.4.json", + "datasource_id": "nuget_nupsec", + "purl": "pkg:nuget/AngleSharp.Css@0.16.4" + } + ], + "for_packages": [ + "pkg:nuget/AngleSharp.Css@0.16.4?uuid=7b933cd3-ffbf-429b-8dad-2a7bfca55116" + ], + "detected_license_expression": "mit", + "detected_license_expression_spdx": "MIT", + "license_detections": [ + { + "license_expression": "mit", + "matches": [ + { + "score": 100.0, + "start_line": 9, + "end_line": 9, + "matched_length": 2, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "mit", + "rule_identifier": "mit_14.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mit_14.RULE", + "matched_text": "MIT" + }, + { + "score": 100.0, + "start_line": 10, + "end_line": 10, + "matched_length": 5, + "match_coverage": 100.0, + "matcher": "1-spdx-id", + "license_expression": "mit", + "rule_identifier": "spdx-license-identifier-mit-c02399fc3bda518cf5890c9587642a2525fce16b", + "rule_relevance": 100, + "rule_url": null, + "matched_text": "licenses.nuget.org/MIT" + } + ], + "detection_log": [], + "identifier": "mit-b941df29-6c4b-fe7e-752f-a5fc7f9a28b5" + } + ], + "license_clues": [], + "percentage_of_license_text": 6.36 + }, + { + "path": "anglesharp.css.0.16.4/AngleSharpLib.Css.dll", + "type": "file", + "name": "AngleSharp.Css.dll", + "base_name": "AngleSharp.Css", + "package_data": [ + { + "type": "winexe", + "namespace": null, + "name": "AngleSharp.Css", + "version": "0.16.4+a754c9adb1d678341e9f489674a8ad7a7199eae8", + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": "AngleSharp.Css\nExtends the CSSOM from the core AngleSharp library.", + "release_date": null, + "parties": [ + { + "type": "organization", + "role": "author", + "name": "AngleSharp.Css", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "declared_license_expression": "unknown", + "declared_license_expression_spdx": "LicenseRef-scancode-unknown", + "license_detections": [ + { + "license_expression": "unknown", + "matches": [ + { + "score": 77.78, + "start_line": 1, + "end_line": 1, + "matched_length": 7, + "match_coverage": 100.0, + "matcher": "5-undetected", + "license_expression": "unknown", + "rule_identifier": "package-manifest-unknown-16117ed57856733eaaf6d91ea575b186a9dab3df", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/package-manifest-unknown-16117ed57856733eaaf6d91ea575b186a9dab3df", + "matched_text": "license {'LegalCopyright': 'Copyright \u00a9 AngleSharp, 2013-2019', 'LegalTrademarks': '', 'License': None}" + } + ], + "identifier": "unknown-73f5f4e3-0fd7-c629-d3b0-a8bf52447aff" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "LegalCopyright: Copyright \u00a9 AngleSharp, 2013-2019\nLegalTrademarks:\nLicense:\n", + "datasource_id": "windows_executable", + "purl": "pkg:winexe/AngleSharp.Css@0.16.4%2Ba754c9adb1d678341e9f489674a8ad7a7199eae8" + } + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0 + }, + { + "path": "rx-lite/package.json", + "type": "file", + "name": "package.json", + "base_name": "package", + "package_data": [ + { + "type": "npm", + "namespace": null, + "name": "rx-lite", + "version": "4.0.8", + "qualifiers": {}, + "subpath": null, + "primary_language": "JavaScript", + "description": "Lightweight library for composing asynchronous and event-based operations in JavaScript", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "author", + "name": "Cloud Programmability Team", + "email": null, + "url": "https://github.com/Reactive-Extensions/RxJS/blob/master/authors.txt" + } + ], + "keywords": ["React", "Reactive", "Events", "Rx", "RxJS"], + "homepage_url": "https://github.com/Reactive-Extensions/RxJS", + "download_url": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz", + "bug_tracking_url": "https://github.com/Reactive-Extensions/RxJS/issues", + "code_view_url": null, + "vcs_url": "git+https://github.com/Reactive-Extensions/RxJS.git", + "copyright": null, + "holder": null, + "declared_license_expression": "apache-2.0", + "declared_license_expression_spdx": "Apache-2.0", + "license_detections": [ + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 5, + "match_coverage": 100.0, + "matcher": "1-hash", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_48.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_48.RULE", + "matched_text": "Apache License, Version 2.0" + } + ], + "identifier": "apache_2_0-428c1364-ecb5-f806-7a2e-77d10737a7ce" + }, + { + "license_expression": "apache-2.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 9, + "match_coverage": 100.0, + "matcher": "1-hash", + "license_expression": "apache-2.0", + "rule_identifier": "apache-2.0_20.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_20.RULE", + "matched_text": "http://www.apache.org/licenses/LICENSE-2.0.html" + } + ], + "identifier": "apache_2_0-9a5226a4-0901-7d18-06ae-49c1887ecbd7" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "[{'type': 'Apache License, Version 2.0', 'url': 'http://www.apache.org/licenses/LICENSE-2.0.html'}]", + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [], + "repository_homepage_url": "https://www.npmjs.com/package/rx-lite", + "repository_download_url": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz", + "api_data_url": "https://registry.npmjs.org/rx-lite/4.0.8", + "datasource_id": "npm_package_json", + "purl": "pkg:npm/rx-lite@4.0.8" + } + ], + "for_packages": [ + "pkg:npm/rx-lite@4.0.8?uuid=6f60b15c-59ec-4caf-8ee7-94d9ab72d135" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [ + { + "score": 52.0, + "start_line": 56, + "end_line": 59, + "matched_length": 13, + "match_coverage": 52.0, + "matcher": "3-seq", + "license_expression": "apache-2.0 OR gpl-2.0", + "rule_identifier": "apache-2.0_or_gpl-2.0_24.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_or_gpl-2.0_24.RULE" + } + ], + "percentage_of_license_text": 6.37 + } + ] +} diff --git a/tests/test-scans/packages_dependencies/expectedPackagesDeps.ts b/tests/test-scans/packages_dependencies/expectedPackagesDeps.ts new file mode 100644 index 00000000..1b794c45 --- /dev/null +++ b/tests/test-scans/packages_dependencies/expectedPackagesDeps.ts @@ -0,0 +1,538 @@ +import { DependenciesAttributes } from "../../../src/services/models/dependencies"; +import { + PackageDataFlatFileAttributes, + PackageFlatFileAttributes, +} from "../../../src/services/models/flatFile"; +import { PackageDataAttributes } from "../../../src/services/models/packageData"; +import { PackagesAttributes } from "../../../src/services/models/packages"; + +export const PackageDepsSamples: { + jsonFileName: string; + expectedFlatFiles: (PackageFlatFileAttributes & + PackageDataFlatFileAttributes)[]; + expectedPackages: PackagesAttributes[]; + expectedDependencies: DependenciesAttributes[]; + expectedPackageData: PackageDataAttributes[]; +}[] = [ + { + jsonFileName: "withPackagesAndDeps.json", + expectedFlatFiles: [ + { + for_packages: "[]", + package_data_type: "[]", + package_data_namespace: null, + package_data_name: "[]", + package_data_version: "[]", + package_data_qualifiers: "[]", + package_data_subpath: "[]", + package_data_purl: "[]", + package_data_primary_language: "[]", + package_data_code_type: "[]", + package_data_description: "[]", + package_data_size: "[]", + package_data_release_date: "[]", + package_data_keywords: "[]", + package_data_homepage_url: "[]", + package_data_download_url: "[]", + package_data_download_checksums: "[]", + package_data_bug_tracking_url: "[]", + package_data_code_view_url: "[]", + package_data_vcs_tool: "[]", + package_data_vcs_url: "[]", + package_data_vcs_repository: "[]", + package_data_vcs_revision: "[]", + package_data_extracted_license_statement: "[]", + package_data_declared_license_expression: "[]", + package_data_declared_license_expression_spdx: null, + package_data_notice_text: "[]", + package_data_dependencies: "[]", + package_data_related_packages: "[]", + }, + { + for_packages: "[]", + package_data_type: "[]", + package_data_namespace: null, + package_data_name: "[]", + package_data_version: "[]", + package_data_qualifiers: "[]", + package_data_subpath: "[]", + package_data_purl: "[]", + package_data_primary_language: "[]", + package_data_code_type: "[]", + package_data_description: "[]", + package_data_size: "[]", + package_data_release_date: "[]", + package_data_keywords: "[]", + package_data_homepage_url: "[]", + package_data_download_url: "[]", + package_data_download_checksums: "[]", + package_data_bug_tracking_url: "[]", + package_data_code_view_url: "[]", + package_data_vcs_tool: "[]", + package_data_vcs_url: "[]", + package_data_vcs_repository: "[]", + package_data_vcs_revision: "[]", + package_data_extracted_license_statement: "[]", + package_data_declared_license_expression: "[]", + package_data_declared_license_expression_spdx: null, + package_data_notice_text: "[]", + package_data_dependencies: "[]", + package_data_related_packages: "[]", + }, + { + for_packages: "[]", + package_data_type: '[["pypi"]]', + package_data_namespace: null, + package_data_name: "[[[]]]", + package_data_version: "[[[]]]", + package_data_qualifiers: "[[{}]]", + package_data_subpath: "[[[]]]", + package_data_purl: "[[[]]]", + package_data_primary_language: '[["Python"]]', + package_data_code_type: "[[[]]]", + package_data_description: "[[[]]]", + package_data_size: "[[[]]]", + package_data_release_date: "[[[]]]", + package_data_keywords: "[[[]]]", + package_data_homepage_url: "[[[]]]", + package_data_download_url: "[[[]]]", + package_data_download_checksums: "[[[]]]", + package_data_bug_tracking_url: "[[[]]]", + package_data_code_view_url: "[[[]]]", + package_data_vcs_tool: "[[[]]]", + package_data_vcs_url: "[[[]]]", + package_data_vcs_repository: "[[[]]]", + package_data_vcs_revision: "[[[]]]", + package_data_extracted_license_statement: "[[[]]]", + package_data_declared_license_expression: "[[[]]]", + package_data_declared_license_expression_spdx: null, + package_data_notice_text: "[[[]]]", + package_data_dependencies: "[[[]]]", + package_data_related_packages: "[[[]]]", + }, + { + for_packages: "[]", + package_data_type: '[["pypi"]]', + package_data_namespace: null, + package_data_name: "[[[]]]", + package_data_version: "[[[]]]", + package_data_qualifiers: "[[{}]]", + package_data_subpath: "[[[]]]", + package_data_purl: "[[[]]]", + package_data_primary_language: '[["Python"]]', + package_data_code_type: "[[[]]]", + package_data_description: "[[[]]]", + package_data_size: "[[[]]]", + package_data_release_date: "[[[]]]", + package_data_keywords: "[[[]]]", + package_data_homepage_url: "[[[]]]", + package_data_download_url: "[[[]]]", + package_data_download_checksums: "[[[]]]", + package_data_bug_tracking_url: "[[[]]]", + package_data_code_view_url: "[[[]]]", + package_data_vcs_tool: "[[[]]]", + package_data_vcs_url: "[[[]]]", + package_data_vcs_repository: "[[[]]]", + package_data_vcs_revision: "[[[]]]", + package_data_extracted_license_statement: "[[[]]]", + package_data_declared_license_expression: "[[[]]]", + package_data_declared_license_expression_spdx: null, + package_data_notice_text: "[[[]]]", + package_data_dependencies: + '[[[{"purl":"pkg:pypi/aboutcode-toolkit@6.0.0","extracted_requirement":"aboutcode-toolkit==6.0.0","scope":"development","is_runtime":false,"is_optional":true,"is_resolved":true,"resolved_package":{},"extra_data":{"is_editable":false,"link":null,"hash_options":[],"is_constraint":false,"is_archive":null,"is_wheel":false,"is_url":null,"is_vcs_url":null,"is_name_at_url":false,"is_local_path":null}},{"purl":"pkg:pypi/py@1.10.0","extracted_requirement":"py==1.10.0","scope":"development","is_runtime":false,"is_optional":true,"is_resolved":true,"resolved_package":{},"extra_data":{"is_editable":false,"link":null,"hash_options":[],"is_constraint":false,"is_archive":null,"is_wheel":false,"is_url":null,"is_vcs_url":null,"is_name_at_url":false,"is_local_path":null}},{"purl":"pkg:pypi/pytest@6.2.4","extracted_requirement":"pytest==6.2.4","scope":"development","is_runtime":false,"is_optional":true,"is_resolved":true,"resolved_package":{},"extra_data":{"is_editable":false,"link":null,"hash_options":[],"is_constraint":false,"is_archive":null,"is_wheel":false,"is_url":null,"is_vcs_url":null,"is_name_at_url":false,"is_local_path":null}}]]]', + package_data_related_packages: "[[[]]]", + }, + { + for_packages: + '["pkg:about/scancode-toolkit?uuid=3b5a9865-8101-430a-ac7c-9f184631b803"]', + package_data_type: '[["about"]]', + package_data_namespace: null, + package_data_name: '[["scancode-toolkit"]]', + package_data_version: "[[[]]]", + package_data_qualifiers: "[[{}]]", + package_data_subpath: "[[[]]]", + package_data_purl: '[["pkg:about/scancode-toolkit"]]', + package_data_primary_language: "[[[]]]", + package_data_code_type: "[[[]]]", + package_data_description: "[[[]]]", + package_data_size: "[[[]]]", + package_data_release_date: "[[[]]]", + package_data_keywords: "[[[]]]", + package_data_homepage_url: '[["https://www.aboutcode.org/"]]', + package_data_download_url: "[[[]]]", + package_data_download_checksums: "[[[]]]", + package_data_bug_tracking_url: "[[[]]]", + package_data_code_view_url: "[[[]]]", + package_data_vcs_tool: "[[[]]]", + package_data_vcs_url: "[[[]]]", + package_data_vcs_repository: "[[[]]]", + package_data_vcs_revision: "[[[]]]", + package_data_extracted_license_statement: + '[["apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft"]]', + package_data_declared_license_expression: + '[["Apache-2.0 AND CC-BY-4.0"]]', + package_data_declared_license_expression_spdx: null, + package_data_notice_text: "[[[]]]", + package_data_dependencies: "[[[]]]", + package_data_related_packages: "[[[]]]", + }, + ], + expectedPackages: [ + { + id: 1, + package_uid: + "pkg:about/scancode-toolkit?uuid=3b5a9865-8101-430a-ac7c-9f184631b803", + type: "about", + namespace: null, + name: "scancode-toolkit", + version: null, + qualifiers: "{}", + subpath: null, + primary_language: null, + description: null, + release_date: null, + parties: + '[{"type":"person","role":"owner","name":"None","email":null,"url":null}]', + keywords: "[]", + homepage_url: "https://www.aboutcode.org/", + download_url: null, + size: null, + sha1: null, + md5: null, + sha256: null, + sha512: null, + bug_tracking_url: null, + code_view_url: null, + vcs_url: null, + copyright: "Copyright (c) nexB Inc. and others.", + declared_license_expression: "apache-2.0 AND cc-by-4.0", + declared_license_expression_spdx: "Apache-2.0 AND CC-BY-4.0", + license_detections: + '[{"license_expression":"apache-2.0 AND cc-by-4.0","matches":[{"score":100,"start_line":1,"end_line":1,"matched_length":3,"match_coverage":100,"matcher":"2-aho","license_expression":"apache-2.0","rule_identifier":"spdx_license_id_apache-2.0_for_apache-2.0.RULE","rule_relevance":100,"rule_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE","matched_text":"apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft"},{"score":50,"start_line":1,"end_line":1,"matched_length":4,"match_coverage":100,"matcher":"2-aho","license_expression":"cc-by-4.0","rule_identifier":"spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE","rule_relevance":50,"rule_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE","matched_text":"apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft"}],"identifier":"apache_2_0_and_cc_by_4_0-9b136727-da14-7f8d-c7e5-319687ed57a5"}]', + other_license_expression: null, + other_license_expression_spdx: null, + other_license_detections: "[]", + extracted_license_statement: + "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft", + notice_text: null, + source_packages: "[]", + extra_data: + '{"missing_file_references":[{"path":".","size":0,"sha1":null,"md5":null,"sha256":null,"sha512":null,"extra_data":{}}]}', + repository_homepage_url: null, + repository_download_url: null, + api_data_url: null, + datafile_paths: '["python-sample-trimmed/scancode-toolkit.ABOUT"]', + datasource_ids: '["about_file"]', + purl: "pkg:about/scancode-toolkit", + }, + ], + expectedDependencies: [ + { + id: 1, + purl: "pkg:pypi/aboutcode-toolkit@6.0.0", + extracted_requirement: "aboutcode-toolkit==6.0.0", + scope: "development", + is_runtime: false, + is_optional: true, + is_resolved: true, + resolved_package: "{}", + dependency_uid: + "pkg:pypi/aboutcode-toolkit@6.0.0?uuid=faa3b45c-2e04-4891-b854-52ed459a6b0a", + for_package_uid: null, + datafile_path: "python-sample-trimmed/requirements-dev.txt", + datasource_id: "pip_requirements", + }, + { + id: 2, + purl: "pkg:pypi/py@1.10.0", + extracted_requirement: "py==1.10.0", + scope: "development", + is_runtime: false, + is_optional: true, + is_resolved: true, + resolved_package: "{}", + dependency_uid: + "pkg:pypi/py@1.10.0?uuid=b2cf6831-b0eb-4a30-98c3-3dac9202d639", + for_package_uid: null, + datafile_path: "python-sample-trimmed/requirements-dev.txt", + datasource_id: "pip_requirements", + }, + { + id: 3, + purl: "pkg:pypi/pytest@6.2.4", + extracted_requirement: "pytest==6.2.4", + scope: "development", + is_runtime: false, + is_optional: true, + is_resolved: true, + resolved_package: "{}", + dependency_uid: + "pkg:pypi/pytest@6.2.4?uuid=1c719652-292f-419c-a7a4-164c39296661", + for_package_uid: null, + datafile_path: "python-sample-trimmed/requirements-dev.txt", + datasource_id: "pip_requirements", + }, + ], + expectedPackageData: [ + { + id: 1, + fileId: 2, + type: "pypi", + namespace: null, + name: null, + version: null, + qualifiers: "{}", + subpath: null, + purl: null, + primary_language: "Python", + code_type: null, + description: null, + size: null, + release_date: null, + parties: "[]", + keywords: "[]", + homepage_url: null, + download_url: null, + download_checksums: null, + bug_tracking_url: null, + code_view_url: null, + vcs_tool: null, + vcs_repository: null, + vcs_revision: null, + copyright: null, + declared_license_expression: null, + declared_license_expression_spdx: null, + extracted_license_statement: null, + notice_text: null, + dependencies: "[]", + related_packages: null, + }, + { + id: 2, + fileId: 3, + type: "pypi", + namespace: null, + name: null, + version: null, + qualifiers: "{}", + subpath: null, + purl: null, + primary_language: "Python", + code_type: null, + description: null, + size: null, + release_date: null, + parties: "[]", + keywords: "[]", + homepage_url: null, + download_url: null, + download_checksums: null, + bug_tracking_url: null, + code_view_url: null, + vcs_tool: null, + vcs_repository: null, + vcs_revision: null, + copyright: null, + declared_license_expression: null, + declared_license_expression_spdx: null, + extracted_license_statement: null, + notice_text: null, + dependencies: + '[{"purl":"pkg:pypi/aboutcode-toolkit@6.0.0","extracted_requirement":"aboutcode-toolkit==6.0.0","scope":"development","is_runtime":false,"is_optional":true,"is_resolved":true,"resolved_package":{},"extra_data":{"is_editable":false,"link":null,"hash_options":[],"is_constraint":false,"is_archive":null,"is_wheel":false,"is_url":null,"is_vcs_url":null,"is_name_at_url":false,"is_local_path":null}},{"purl":"pkg:pypi/py@1.10.0","extracted_requirement":"py==1.10.0","scope":"development","is_runtime":false,"is_optional":true,"is_resolved":true,"resolved_package":{},"extra_data":{"is_editable":false,"link":null,"hash_options":[],"is_constraint":false,"is_archive":null,"is_wheel":false,"is_url":null,"is_vcs_url":null,"is_name_at_url":false,"is_local_path":null}},{"purl":"pkg:pypi/pytest@6.2.4","extracted_requirement":"pytest==6.2.4","scope":"development","is_runtime":false,"is_optional":true,"is_resolved":true,"resolved_package":{},"extra_data":{"is_editable":false,"link":null,"hash_options":[],"is_constraint":false,"is_archive":null,"is_wheel":false,"is_url":null,"is_vcs_url":null,"is_name_at_url":false,"is_local_path":null}}]', + related_packages: null, + }, + { + id: 3, + fileId: 4, + type: "about", + namespace: null, + name: "scancode-toolkit", + version: null, + qualifiers: "{}", + subpath: null, + purl: "pkg:about/scancode-toolkit", + primary_language: null, + code_type: null, + description: null, + size: null, + release_date: null, + parties: + '[{"type":"person","role":"owner","name":"None","email":null,"url":null}]', + keywords: "[]", + homepage_url: "https://www.aboutcode.org/", + download_url: null, + download_checksums: null, + bug_tracking_url: null, + code_view_url: null, + vcs_tool: null, + vcs_repository: null, + vcs_revision: null, + copyright: "Copyright (c) nexB Inc. and others.", + declared_license_expression: "apache-2.0 AND cc-by-4.0", + declared_license_expression_spdx: "Apache-2.0 AND CC-BY-4.0", + extracted_license_statement: + "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft", + notice_text: null, + dependencies: "[]", + related_packages: null, + }, + ], + }, + { + jsonFileName: "nullPackageData.json", + expectedFlatFiles: [ + { + for_packages: "[]", + package_data_type: "[]", + package_data_namespace: null, + package_data_name: "[]", + package_data_version: "[]", + package_data_qualifiers: "[]", + package_data_subpath: "[]", + package_data_purl: "[]", + package_data_primary_language: "[]", + package_data_code_type: "[]", + package_data_description: "[]", + package_data_size: "[]", + package_data_release_date: "[]", + package_data_keywords: "[]", + package_data_homepage_url: "[]", + package_data_download_url: "[]", + package_data_download_checksums: "[]", + package_data_bug_tracking_url: "[]", + package_data_code_view_url: "[]", + package_data_vcs_tool: "[]", + package_data_vcs_url: "[]", + package_data_vcs_repository: "[]", + package_data_vcs_revision: "[]", + package_data_extracted_license_statement: "[]", + package_data_declared_license_expression: "[]", + package_data_declared_license_expression_spdx: null, + package_data_notice_text: "[]", + package_data_dependencies: "[]", + package_data_related_packages: "[]", + }, + { + for_packages: + '["pkg:maven/org.elasticsearch/elasticsearch@7.16.3?uuid=f9eb7144-715b-4293-8eb4-826897071e83"]', + package_data_type: "[[[]]]", + package_data_namespace: null, + package_data_name: "[[[]]]", + package_data_version: "[[[]]]", + package_data_qualifiers: "[[{}]]", + package_data_subpath: "[[[]]]", + package_data_purl: "[[[]]]", + package_data_primary_language: "[[[]]]", + package_data_code_type: "[[[]]]", + package_data_description: "[[[]]]", + package_data_size: "[[[]]]", + package_data_release_date: "[[[]]]", + package_data_keywords: "[[[]]]", + package_data_homepage_url: "[[[]]]", + package_data_download_url: "[[[]]]", + package_data_download_checksums: "[[[]]]", + package_data_bug_tracking_url: "[[[]]]", + package_data_code_view_url: "[[[]]]", + package_data_vcs_tool: "[[[]]]", + package_data_vcs_url: "[[[]]]", + package_data_vcs_repository: "[[[]]]", + package_data_vcs_revision: "[[[]]]", + package_data_extracted_license_statement: "[[[]]]", + package_data_declared_license_expression: "[[[]]]", + package_data_declared_license_expression_spdx: null, + package_data_notice_text: "[[[]]]", + package_data_dependencies: "[[[]]]", + package_data_related_packages: "[[[]]]", + }, + ], + expectedPackages: [ + { + id: 1, + package_uid: + "pkg:maven/org.elasticsearch/elasticsearch@7.16.3?uuid=f9eb7144-715b-4293-8eb4-826897071e83", + type: "maven", + namespace: "org.elasticsearch", + name: "elasticsearch", + version: "7.16.3", + qualifiers: "{}", + subpath: null, + primary_language: "Java", + description: "server\nElasticsearch subproject :server", + release_date: null, + parties: + '[{"type":"person","role":"developper","name":"Elastic","email":null,"url":"https://www.elastic.co"}]', + keywords: "[]", + homepage_url: "https://github.com/elastic/elasticsearch", + download_url: null, + size: null, + sha1: null, + md5: null, + sha256: null, + sha512: null, + bug_tracking_url: null, + code_view_url: "https://github.com/elastic/elasticsearch.git", + vcs_url: "https://github.com/elastic/elasticsearch.git", + copyright: null, + declared_license_expression: "elastic-license-v2 AND mongodb-sspl-1.0", + declared_license_expression_spdx: "Elastic-2.0 AND SSPL-1.0", + license_detections: + '[{"license_expression":"elastic-license-v2","matches":[{"score":100,"start_line":1,"end_line":1,"matched_length":4,"match_coverage":100,"matcher":"1-hash","license_expression":"elastic-license-v2","rule_identifier":"elastic-license-v2_3.RULE","rule_relevance":100,"rule_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/elastic-license-v2_3.RULE","matched_text":"Elastic License 2.0"}],"identifier":"elastic_license_v2-6c37b8f5-5040-e1bb-0317-f206f4c3bf1e"},{"license_expression":"elastic-license-v2","matches":[{"score":100,"start_line":1,"end_line":1,"matched_length":6,"match_coverage":100,"matcher":"2-aho","license_expression":"elastic-license-v2","rule_identifier":"elastic-license-v2_2.RULE","rule_relevance":100,"rule_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/elastic-license-v2_2.RULE","matched_text":"https://raw.githubusercontent.com/elastic/elasticsearch/v7.16.3/licenses/ELASTIC-LICENSE-2.0.txt"}],"identifier":"elastic_license_v2-b6912041-a97e-92aa-9086-3b2dad5c3f7a"},{"license_expression":"mongodb-sspl-1.0","matches":[{"score":100,"start_line":1,"end_line":1,"matched_length":5,"match_coverage":100,"matcher":"1-hash","license_expression":"mongodb-sspl-1.0","rule_identifier":"mongodb-sspl-1.0_12.RULE","rule_relevance":100,"rule_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mongodb-sspl-1.0_12.RULE","matched_text":"Server Side Public License, v 1"}],"identifier":"mongodb_sspl_1_0-40b027d1-15f0-7f38-f6e5-0c4a6824884e"},{"license_expression":"mongodb-sspl-1.0","matches":[{"score":100,"start_line":1,"end_line":1,"matched_length":8,"match_coverage":100,"matcher":"1-hash","license_expression":"mongodb-sspl-1.0","rule_identifier":"mongodb-sspl-1.0_7.RULE","rule_relevance":100,"rule_url":"https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mongodb-sspl-1.0_7.RULE","matched_text":"https://www.mongodb.com/licensing/server-side-public-license"}],"identifier":"mongodb_sspl_1_0-ed7798b8-5fa4-d992-84da-b64833db315c"}]', + other_license_expression: null, + other_license_expression_spdx: null, + other_license_detections: "[]", + extracted_license_statement: + "[{'name': 'Elastic License 2.0', 'url': 'https://raw.githubusercontent.com/elastic/elasticsearch/v7.16.3/licenses/ELASTIC-LICENSE-2.0.txt', 'comments': None, 'distribution': 'repo'}, {'name': 'Server Side Public License, v 1', 'url': 'https://www.mongodb.com/licensing/server-side-public-license', 'comments': None, 'distribution': 'repo'}]", + notice_text: null, + source_packages: + '["pkg:maven/org.elasticsearch/elasticsearch@7.16.3?classifier=sources"]', + extra_data: "{}", + repository_homepage_url: + "https://repo1.maven.org/maven2/org/elasticsearch/elasticsearch/7.16.3/", + repository_download_url: + "https://repo1.maven.org/maven2/org/elasticsearch/elasticsearch/7.16.3/elasticsearch-7.16.3.jar", + api_data_url: + "https://repo1.maven.org/maven2/org/elasticsearch/elasticsearch/7.16.3/elasticsearch-7.16.3.pom", + datafile_paths: + '["elasticsearch/elasticsearch/7.16.3/elasticsearch-7.16.3.pom"]', + datasource_ids: '["maven_pom"]', + purl: "pkg:maven/org.elasticsearch/elasticsearch@7.16.3", + }, + ], + expectedDependencies: [], + expectedPackageData: [ + { + id: 1, + fileId: 1, + type: null, + namespace: null, + name: null, + version: null, + qualifiers: "{}", + subpath: null, + purl: null, + primary_language: null, + code_type: null, + description: null, + size: null, + release_date: null, + parties: "[]", + keywords: "[]", + homepage_url: null, + download_url: null, + download_checksums: null, + bug_tracking_url: null, + code_view_url: null, + vcs_tool: null, + vcs_repository: null, + vcs_revision: null, + copyright: null, + declared_license_expression: null, + declared_license_expression_spdx: null, + extracted_license_statement: null, + notice_text: null, + dependencies: "[]", + related_packages: null, + }, + ], + }, +]; diff --git a/tests/test-scans/packages_dependencies/nullPackageData.json b/tests/test-scans/packages_dependencies/nullPackageData.json new file mode 100644 index 00000000..9169d206 --- /dev/null +++ b/tests/test-scans/packages_dependencies/nullPackageData.json @@ -0,0 +1,207 @@ +{ + "packages": [ + { + "type": "maven", + "namespace": "org.elasticsearch", + "name": "elasticsearch", + "version": "7.16.3", + "qualifiers": {}, + "subpath": null, + "primary_language": "Java", + "description": "server\nElasticsearch subproject :server", + "release_date": null, + "parties": [ + { + "type": "person", + "role": "developper", + "name": "Elastic", + "email": null, + "url": "https://www.elastic.co" + } + ], + "keywords": [], + "homepage_url": "https://github.com/elastic/elasticsearch", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": "https://github.com/elastic/elasticsearch.git", + "vcs_url": "https://github.com/elastic/elasticsearch.git", + "copyright": null, + "holder": null, + "declared_license_expression": "elastic-license-v2 AND mongodb-sspl-1.0", + "declared_license_expression_spdx": "Elastic-2.0 AND SSPL-1.0", + "license_detections": [ + { + "license_expression": "elastic-license-v2", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "1-hash", + "license_expression": "elastic-license-v2", + "rule_identifier": "elastic-license-v2_3.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/elastic-license-v2_3.RULE", + "matched_text": "Elastic License 2.0" + } + ], + "identifier": "elastic_license_v2-6c37b8f5-5040-e1bb-0317-f206f4c3bf1e" + }, + { + "license_expression": "elastic-license-v2", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 6, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "elastic-license-v2", + "rule_identifier": "elastic-license-v2_2.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/elastic-license-v2_2.RULE", + "matched_text": "https://raw.githubusercontent.com/elastic/elasticsearch/v7.16.3/licenses/ELASTIC-LICENSE-2.0.txt" + } + ], + "identifier": "elastic_license_v2-b6912041-a97e-92aa-9086-3b2dad5c3f7a" + }, + { + "license_expression": "mongodb-sspl-1.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 5, + "match_coverage": 100.0, + "matcher": "1-hash", + "license_expression": "mongodb-sspl-1.0", + "rule_identifier": "mongodb-sspl-1.0_12.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mongodb-sspl-1.0_12.RULE", + "matched_text": "Server Side Public License, v 1" + } + ], + "identifier": "mongodb_sspl_1_0-40b027d1-15f0-7f38-f6e5-0c4a6824884e" + }, + { + "license_expression": "mongodb-sspl-1.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 8, + "match_coverage": 100.0, + "matcher": "1-hash", + "license_expression": "mongodb-sspl-1.0", + "rule_identifier": "mongodb-sspl-1.0_7.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/mongodb-sspl-1.0_7.RULE", + "matched_text": "https://www.mongodb.com/licensing/server-side-public-license" + } + ], + "identifier": "mongodb_sspl_1_0-ed7798b8-5fa4-d992-84da-b64833db315c" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "[{'name': 'Elastic License 2.0', 'url': 'https://raw.githubusercontent.com/elastic/elasticsearch/v7.16.3/licenses/ELASTIC-LICENSE-2.0.txt', 'comments': None, 'distribution': 'repo'}, {'name': 'Server Side Public License, v 1', 'url': 'https://www.mongodb.com/licensing/server-side-public-license', 'comments': None, 'distribution': 'repo'}]", + "notice_text": null, + "source_packages": [ + "pkg:maven/org.elasticsearch/elasticsearch@7.16.3?classifier=sources" + ], + "extra_data": {}, + "repository_homepage_url": "https://repo1.maven.org/maven2/org/elasticsearch/elasticsearch/7.16.3/", + "repository_download_url": "https://repo1.maven.org/maven2/org/elasticsearch/elasticsearch/7.16.3/elasticsearch-7.16.3.jar", + "api_data_url": "https://repo1.maven.org/maven2/org/elasticsearch/elasticsearch/7.16.3/elasticsearch-7.16.3.pom", + "package_uid": "pkg:maven/org.elasticsearch/elasticsearch@7.16.3?uuid=f9eb7144-715b-4293-8eb4-826897071e83", + "datafile_paths": [ + "elasticsearch/elasticsearch/7.16.3/elasticsearch-7.16.3.pom" + ], + "datasource_ids": ["maven_pom"], + "purl": "pkg:maven/org.elasticsearch/elasticsearch@7.16.3" + } + ], + "dependencies": [], + "files": [ + { + "path": "elasticsearch", + "type": "directory", + "package_data": [], + "for_packages": [], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "scan_errors": [] + }, + { + "path": "elasticsearch/elasticsearch-7.16.3-sources.jar", + "type": "file", + "package_data": [ + { + "type": null, + "namespace": null, + "name": null, + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "holder": null, + "declared_license_expression": null, + "declared_license_expression_spdx": null, + "license_detections": [], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": null, + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "java_jar", + "purl": null + } + ], + "for_packages": [ + "pkg:maven/org.elasticsearch/elasticsearch@7.16.3?uuid=f9eb7144-715b-4293-8eb4-826897071e83" + ], + "detected_license_expression": null, + "detected_license_expression_spdx": null, + "license_detections": [], + "license_clues": [], + "percentage_of_license_text": 0, + "scan_errors": [] + } + ] +} diff --git a/tests/test-scans/packages_dependencies/withPackagesAndDeps.json b/tests/test-scans/packages_dependencies/withPackagesAndDeps.json new file mode 100644 index 00000000..eb77c4f9 --- /dev/null +++ b/tests/test-scans/packages_dependencies/withPackagesAndDeps.json @@ -0,0 +1,459 @@ +{ + "packages": [ + { + "type": "about", + "namespace": null, + "name": "scancode-toolkit", + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": null, + "parties": [ + { + "type": "person", + "role": "owner", + "name": "None", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "https://www.aboutcode.org/", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": "Copyright (c) nexB Inc. and others.", + "holder": "nexB Inc. and others", + "declared_license_expression": "apache-2.0 AND cc-by-4.0", + "declared_license_expression_spdx": "Apache-2.0 AND CC-BY-4.0", + "license_detections": [ + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 3, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE", + "matched_text": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft" + }, + { + "score": 50.0, + "start_line": 1, + "end_line": 1, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "rule_relevance": 50, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "matched_text": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft" + } + ], + "identifier": "apache_2_0_and_cc_by_4_0-9b136727-da14-7f8d-c7e5-319687ed57a5" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft", + "notice_text": null, + "source_packages": [], + "extra_data": { + "missing_file_references": [ + { + "path": ".", + "size": 0, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + } + ] + }, + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "package_uid": "pkg:about/scancode-toolkit?uuid=3b5a9865-8101-430a-ac7c-9f184631b803", + "datafile_paths": ["python-sample-trimmed/scancode-toolkit.ABOUT"], + "datasource_ids": ["about_file"], + "purl": "pkg:about/scancode-toolkit" + } + ], + "dependencies": [ + { + "purl": "pkg:pypi/aboutcode-toolkit@6.0.0", + "extracted_requirement": "aboutcode-toolkit==6.0.0", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + }, + "dependency_uid": "pkg:pypi/aboutcode-toolkit@6.0.0?uuid=faa3b45c-2e04-4891-b854-52ed459a6b0a", + "for_package_uid": null, + "datafile_path": "python-sample-trimmed/requirements-dev.txt", + "datasource_id": "pip_requirements" + }, + { + "purl": "pkg:pypi/py@1.10.0", + "extracted_requirement": "py==1.10.0", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + }, + "dependency_uid": "pkg:pypi/py@1.10.0?uuid=b2cf6831-b0eb-4a30-98c3-3dac9202d639", + "for_package_uid": null, + "datafile_path": "python-sample-trimmed/requirements-dev.txt", + "datasource_id": "pip_requirements" + }, + { + "purl": "pkg:pypi/pytest@6.2.4", + "extracted_requirement": "pytest==6.2.4", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + }, + "dependency_uid": "pkg:pypi/pytest@6.2.4?uuid=1c719652-292f-419c-a7a4-164c39296661", + "for_package_uid": null, + "datafile_path": "python-sample-trimmed/requirements-dev.txt", + "datasource_id": "pip_requirements" + } + ], + "files": [ + { + "path": "python-sample-trimmed", + "type": "directory", + "package_data": [], + "for_packages": [], + "scan_errors": [] + }, + { + "path": "python-sample-trimmed/.DS_Store", + "type": "file", + "package_data": [], + "for_packages": [], + "scan_errors": [] + }, + { + "path": "python-sample-trimmed/pyproject.toml", + "type": "file", + "package_data": [ + { + "type": "pypi", + "namespace": null, + "name": null, + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": null, + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "holder": null, + "declared_license_expression": null, + "declared_license_expression_spdx": null, + "license_detections": [], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": null, + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "pypi_pyproject_toml", + "purl": null + } + ], + "for_packages": [], + "scan_errors": [] + }, + { + "path": "python-sample-trimmed/requirements-dev.txt", + "type": "file", + "package_data": [ + { + "type": "pypi", + "namespace": null, + "name": null, + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": "Python", + "description": null, + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": null, + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": null, + "holder": null, + "declared_license_expression": null, + "declared_license_expression_spdx": null, + "license_detections": [], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": null, + "notice_text": null, + "source_packages": [], + "file_references": [], + "extra_data": {}, + "dependencies": [ + { + "purl": "pkg:pypi/aboutcode-toolkit@6.0.0", + "extracted_requirement": "aboutcode-toolkit==6.0.0", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/py@1.10.0", + "extracted_requirement": "py==1.10.0", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + }, + { + "purl": "pkg:pypi/pytest@6.2.4", + "extracted_requirement": "pytest==6.2.4", + "scope": "development", + "is_runtime": false, + "is_optional": true, + "is_resolved": true, + "resolved_package": {}, + "extra_data": { + "is_editable": false, + "link": null, + "hash_options": [], + "is_constraint": false, + "is_archive": null, + "is_wheel": false, + "is_url": null, + "is_vcs_url": null, + "is_name_at_url": false, + "is_local_path": null + } + } + ], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "pip_requirements", + "purl": null + } + ], + "for_packages": [], + "scan_errors": [] + }, + { + "path": "python-sample-trimmed/scancode-toolkit.ABOUT", + "type": "file", + "package_data": [ + { + "type": "about", + "namespace": null, + "name": "scancode-toolkit", + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": null, + "parties": [ + { + "type": "person", + "role": "owner", + "name": "None", + "email": null, + "url": null + } + ], + "keywords": [], + "homepage_url": "https://www.aboutcode.org/", + "download_url": null, + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": null, + "code_view_url": null, + "vcs_url": null, + "copyright": "Copyright (c) nexB Inc. and others.", + "holder": "nexB Inc. and others", + "declared_license_expression": "apache-2.0 AND cc-by-4.0", + "declared_license_expression_spdx": "Apache-2.0 AND CC-BY-4.0", + "license_detections": [ + { + "license_expression": "apache-2.0 AND cc-by-4.0", + "matches": [ + { + "score": 100.0, + "start_line": 1, + "end_line": 1, + "matched_length": 3, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "apache-2.0", + "rule_identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE", + "rule_relevance": 100, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE", + "matched_text": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft" + }, + { + "score": 50.0, + "start_line": 1, + "end_line": 1, + "matched_length": 4, + "match_coverage": 100.0, + "matcher": "2-aho", + "license_expression": "cc-by-4.0", + "rule_identifier": "spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "rule_relevance": 50, + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE", + "matched_text": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft" + } + ], + "identifier": "apache_2_0_and_cc_by_4_0-9b136727-da14-7f8d-c7e5-319687ed57a5" + } + ], + "other_license_expression": null, + "other_license_expression_spdx": null, + "other_license_detections": [], + "extracted_license_statement": "apache-2.0 AND cc-by-4.0 AND other-permissive AND other-copyleft", + "notice_text": null, + "source_packages": [], + "file_references": [ + { + "path": ".", + "size": 0, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "extra_data": {} + } + ], + "extra_data": {}, + "dependencies": [], + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null, + "datasource_id": "about_file", + "purl": "pkg:about/scancode-toolkit" + } + ], + "for_packages": [ + "pkg:about/scancode-toolkit?uuid=3b5a9865-8101-430a-ac7c-9f184631b803" + ], + "scan_errors": [] + } + ] +} diff --git a/tests/test-scans/sanity/empty.json b/tests/test-scans/sanity/empty.json new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/tests/test-scans/sanity/empty.json @@ -0,0 +1 @@ +{} diff --git a/tests/test-scans/sanity/minimal.json b/tests/test-scans/sanity/minimal.json new file mode 100644 index 00000000..d804f619 --- /dev/null +++ b/tests/test-scans/sanity/minimal.json @@ -0,0 +1,13 @@ +{ + "files": [ + { + "path": "manifests" + }, + { + "path": "manifests/copyright" + }, + { + "path": "manifests/FirebaseAnalytics.podspec.json" + } + ] +} diff --git a/tests/test-scans/sanity/sanitySamples.ts b/tests/test-scans/sanity/sanitySamples.ts new file mode 100644 index 00000000..6fd9e656 --- /dev/null +++ b/tests/test-scans/sanity/sanitySamples.ts @@ -0,0 +1,4 @@ +export const SanitySamples: { jsonFileName: string }[] = [ + { jsonFileName: "empty.json" }, + { jsonFileName: "minimal.json" }, +]; diff --git a/tests/test-scans/scan-errors/expectedErrors.ts b/tests/test-scans/scan-errors/expectedErrors.ts new file mode 100644 index 00000000..885094be --- /dev/null +++ b/tests/test-scans/scan-errors/expectedErrors.ts @@ -0,0 +1,63 @@ +export const ErrorSamples: { + jsonFileName: string; + expectedScanErrors: { + id: number; + fileId: number; + scan_error: string; + }[]; + expectedFlatFiles: { + fileId: number; + scan_errors: string; + }[]; +}[] = [ + { + jsonFileName: "withErrors.json", + expectedScanErrors: [ + { + id: 1, + scan_error: + "ERROR: for scanner: licenses:\nERROR: Processing interrupted: timeout after 1 seconds.", + fileId: 1, + }, + { + id: 2, + scan_error: + "ERROR: for scanner: licenses:\nERROR: Processing interrupted: timeout after 1 seconds.", + fileId: 2, + }, + { + id: 3, + scan_error: + "ERROR: for scanner: copyrights:\nERROR: Processing interrupted: timeout after 1 seconds.", + fileId: 2, + }, + { + id: 4, + scan_error: + "ERROR: for scanner: licenses:\nERROR: Processing interrupted: timeout after 1 seconds.", + fileId: 3, + }, + ], + expectedFlatFiles: [ + { + fileId: 0, + scan_errors: "[]", + }, + { + fileId: 1, + scan_errors: + '["ERROR: for scanner: licenses:\\nERROR: Processing interrupted: timeout after 1 seconds."]', + }, + { + fileId: 2, + scan_errors: + '["ERROR: for scanner: licenses:\\nERROR: Processing interrupted: timeout after 1 seconds.","ERROR: for scanner: copyrights:\\nERROR: Processing interrupted: timeout after 1 seconds."]', + }, + { + fileId: 3, + scan_errors: + '["ERROR: for scanner: licenses:\\nERROR: Processing interrupted: timeout after 1 seconds."]', + }, + ], + }, +]; diff --git a/tests/test-scans/scan-errors/withErrors.json b/tests/test-scans/scan-errors/withErrors.json new file mode 100644 index 00000000..72a494f2 --- /dev/null +++ b/tests/test-scans/scan-errors/withErrors.json @@ -0,0 +1,46 @@ +{ + "headers": [ + { + "options": { + "input": ["samples/"], + "--json-pp": "/home/test/withErrors.json", + "--processes": "6", + "--timeout": 1.0 + }, + "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": "2019-04-20T035642.140687", + "end_timestamp": "2019-04-20T035653.827335", + "message": null, + "errors": ["Path: samples/README", "Path: samples/EULA"] + } + ], + "files": [ + { + "path": "samples", + "type": "directory", + "scan_errors": [] + }, + { + "path": "samples/README", + "type": "file", + "scan_errors": [ + "ERROR: for scanner: licenses:\nERROR: Processing interrupted: timeout after 1 seconds." + ] + }, + { + "path": "samples/EULA", + "type": "file", + "scan_errors": [ + "ERROR: for scanner: licenses:\nERROR: Processing interrupted: timeout after 1 seconds.", + "ERROR: for scanner: copyrights:\nERROR: Processing interrupted: timeout after 1 seconds." + ] + }, + { + "path": "samples/zstream_test.cpp", + "type": "file", + "scan_errors": [ + "ERROR: for scanner: licenses:\nERROR: Processing interrupted: timeout after 1 seconds." + ] + } + ] +} diff --git a/tests/text.test.data.ts b/tests/text.test.data.ts new file mode 100644 index 00000000..cf27a040 --- /dev/null +++ b/tests/text.test.data.ts @@ -0,0 +1,466 @@ +import { BelongsIndicator, DiffComponents } from "../src/utils/text"; + +export const TrimTexts: { + text: string; + maxLengthInclusive: number; + trimmed: string; +}[] = [ + { text: undefined, maxLengthInclusive: 10, trimmed: "" }, + { text: null, maxLengthInclusive: 10, trimmed: "" }, + { text: "", maxLengthInclusive: 10, trimmed: "" }, + { text: "abcd", maxLengthInclusive: 10, trimmed: "abcd" }, + { text: "abcdef", maxLengthInclusive: 6, trimmed: "abcdef" }, + { text: "Statement", maxLengthInclusive: 10, trimmed: "Statement" }, + { text: "Statement", maxLengthInclusive: 9, trimmed: "Statement" }, + { text: "Statement", maxLengthInclusive: 8, trimmed: "State..." }, + { text: "Statement", maxLengthInclusive: 7, trimmed: "Stat..." }, + { text: "Statement", maxLengthInclusive: 6, trimmed: "Sta..." }, + { + text: "License :: OSI Approved :: BSD License", + maxLengthInclusive: 20, + trimmed: "License :: OSI Ap...", + }, +]; + +export const NormalizeTexts: { text: string; normalized: string }[] = [ + { text: " ab#*c d efg/hi ", normalized: "abc d efghi" }, + { text: "#/*^-_", normalized: "" }, + { text: ".[txt]", normalized: "txt" }, + { text: " ", normalized: "" }, + { text: ".", normalized: "" }, + { text: "[Netty]", normalized: "Netty" }, + { text: "abcd wef \n mno pqr ", normalized: "abcd wef mno pqr" }, +]; + +export const StringifiedArrayParserSamples: { + stringifiedArray: string; + readableString: string; + trimmedSize?: number; +}[] = [ + { + stringifiedArray: "[[]]", + readableString: "", + }, + { + stringifiedArray: '[["Google\', type"]]', + readableString: "Google', type", + }, + { + stringifiedArray: '[["nexB Inc."]]', + readableString: "nexB Inc.", + }, + { + stringifiedArray: + '[["nexB Inc. and others","nexB Inc. and others","SpryMedia Limited","Twitter, Inc","SpryMedia Limited","Masayuki Tanaka","The Chromium Authors","SpryMedia Limited","Michael Bostock","SpryMedia Limited","GitHub Inc.","Electron project","SpryMedia Limited","SpryMedia Limited","Mika Tuupola, Dylan Verheul","jQuery Foundation and other contributors","jQuery Foundation and other contributors"]]', + trimmedSize: 75, + readableString: + "nexB Inc. and others,nexB Inc. and others,SpryMedia Limited,Twitter, Inc...", + }, + { + stringifiedArray: '[["nexB Inc. and others","nexB Inc. and others"]]', + readableString: "nexB Inc. and others,nexB Inc. and others", + }, +]; + +export const DiffTextSamples: { + sourceText: string; + modifiedText: string; + normalizedDiffs: DiffComponents[]; + normalizedSourceTextLines: DiffComponents[][]; + normalizedModifiedTextLines: DiffComponents[][]; +}[] = [ + { + sourceText: "creativecommons.org/publicdomain", + modifiedText: "creativecommons.org/publicdomain", + normalizedDiffs: [ + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "creativecommons.org/publicdomain", + }, + ], + normalizedSourceTextLines: [ + [ + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "creativecommons.org/publicdomain", + }, + ], + ], + normalizedModifiedTextLines: [ + [ + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "creativecommons.org/publicdomain", + }, + ], + ], + }, + { + sourceText: "Contributor License Agreement](#cla", + modifiedText: "Contributor License Agreement (CLA)", + normalizedDiffs: [ + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "Contributor License Agreement", + }, + { + belongsTo: BelongsIndicator.ORIGINAL, + value: "]", + }, + { + belongsTo: BelongsIndicator.MODIFIED, + value: " ", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "(", + }, + { + belongsTo: BelongsIndicator.ORIGINAL, + value: "#cla", + }, + { + belongsTo: BelongsIndicator.MODIFIED, + value: "CLA)", + }, + ], + normalizedSourceTextLines: [ + [ + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "Contributor License Agreement", + }, + { + value: "]", + belongsTo: BelongsIndicator.ORIGINAL, + }, + { + value: "(", + belongsTo: BelongsIndicator.BOTH, + }, + { + belongsTo: BelongsIndicator.ORIGINAL, + value: "#cla", + }, + ], + ], + normalizedModifiedTextLines: [ + [ + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "Contributor License Agreement", + }, + { + value: " ", + belongsTo: BelongsIndicator.MODIFIED, + }, + { + value: "(", + belongsTo: BelongsIndicator.BOTH, + }, + { + belongsTo: BelongsIndicator.MODIFIED, + value: "CLA)", + }, + ], + ], + }, + { + sourceText: + '# Licensed under the Apache License, Version 2.0 (the "License");\n# you may not use this file except in \ncompliance with the License.\n#', + modifiedText: + 'Licensed under\n the (Apache License), Version 2.0 (the "License");\n * you may not use - this file except in \n (compliance^) /with the + License.\n * You may obtain a copy of the License at\n', + normalizedDiffs: [ + { + diffComponent: "removed", + belongsTo: BelongsIndicator.ORIGINAL, + value: "# ", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "Licensed under", + }, + { + diffComponent: "added", + belongsTo: BelongsIndicator.MODIFIED, + value: "\n", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: " the ", + }, + { + diffComponent: "added", + belongsTo: BelongsIndicator.MODIFIED, + value: "(", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "Apache License", + }, + { + diffComponent: "added", + belongsTo: BelongsIndicator.MODIFIED, + value: ")", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: ', Version 2.0 (the "License");\n', + }, + { + belongsTo: BelongsIndicator.ORIGINAL, + value: "#", + }, + { + belongsTo: BelongsIndicator.MODIFIED, + value: " *", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: " you may not use ", + }, + { + diffComponent: "added", + belongsTo: BelongsIndicator.MODIFIED, + value: "- ", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "this file except in \n", + }, + { + diffComponent: "added", + belongsTo: BelongsIndicator.MODIFIED, + value: " (", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "compliance", + }, + { + diffComponent: "added", + belongsTo: BelongsIndicator.MODIFIED, + value: "^)", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: " ", + }, + { + diffComponent: "added", + belongsTo: BelongsIndicator.MODIFIED, + value: "/", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "with the ", + }, + { + diffComponent: "added", + belongsTo: BelongsIndicator.MODIFIED, + value: "+ ", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "License.\n", + }, + { + diffComponent: "removed", + belongsTo: BelongsIndicator.ORIGINAL, + value: "#", + }, + { + diffComponent: "added", + belongsTo: BelongsIndicator.MODIFIED, + value: " * You may obtain a copy of the License at\n", + }, + ], + normalizedSourceTextLines: [ + [ + { + value: "# ", + belongsTo: BelongsIndicator.ORIGINAL, + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "Licensed under", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: " the ", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "Apache License", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: ', Version 2.0 (the "License");', + }, + ], + [ + { + value: "#", + belongsTo: BelongsIndicator.ORIGINAL, + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: " you may not use ", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "this file except in ", + }, + ], + [ + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "compliance", + }, + { + value: " ", + belongsTo: BelongsIndicator.BOTH, + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "with the ", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "License.", + }, + ], + [ + { + value: "#", + belongsTo: BelongsIndicator.ORIGINAL, + }, + ], + ], + normalizedModifiedTextLines: [ + [ + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "Licensed under", + }, + ], + [ + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: " the ", + }, + { + value: "(", + belongsTo: BelongsIndicator.MODIFIED, + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "Apache License", + }, + { + value: ")", + belongsTo: BelongsIndicator.MODIFIED, + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: ', Version 2.0 (the "License");', + }, + ], + [ + { + value: " *", + belongsTo: BelongsIndicator.MODIFIED, + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: " you may not use ", + }, + { + value: "- ", + belongsTo: BelongsIndicator.MODIFIED, + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "this file except in ", + }, + ], + [ + { + value: " (", + belongsTo: BelongsIndicator.MODIFIED, + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "compliance", + }, + { + value: "^)", + belongsTo: BelongsIndicator.MODIFIED, + }, + { + value: " ", + belongsTo: BelongsIndicator.BOTH, + }, + { + value: "/", + belongsTo: BelongsIndicator.MODIFIED, + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "with the ", + }, + { + diffComponent: "added", + belongsTo: BelongsIndicator.MODIFIED, + value: "+ ", + }, + { + diffComponent: null, + belongsTo: BelongsIndicator.BOTH, + value: "License.", + }, + ], + [ + { + diffComponent: "added", + belongsTo: BelongsIndicator.MODIFIED, + value: " * You may obtain a copy of the License at", + }, + ], + ], + }, +]; diff --git a/tests/text.test.ts b/tests/text.test.ts new file mode 100644 index 00000000..dffbdd52 --- /dev/null +++ b/tests/text.test.ts @@ -0,0 +1,86 @@ +import assert from "assert"; + +import { + DiffTextSamples, + NormalizeTexts, + StringifiedArrayParserSamples, + TrimTexts, +} from "./text.test.data"; +import { + diffStrings, + splitDiffIntoLines, + normalizeDiffString, + trimStringWithEllipsis, + BelongsIndicator, + parseProbableStringifiedArray, +} from "../src/utils/text"; + +describe("Create readable string from stringified nested array", () => { + it.each(StringifiedArrayParserSamples)( + "Parse stringified array", + ({ stringifiedArray, readableString, trimmedSize }) => { + expect( + parseProbableStringifiedArray(stringifiedArray, trimmedSize || 75) + ).toBe(readableString); + } + ); +}); + +describe("Trim text with ellipsis", () => { + it.each(TrimTexts)( + "Trim text: '$text' => '$trimmed'", + ({ text, maxLengthInclusive, trimmed }) => { + expect(trimStringWithEllipsis(text, maxLengthInclusive)).toBe(trimmed); + } + ); +}); + +describe("Normalize text", () => { + it.each(NormalizeTexts)( + "Normalize text: '$text' => '$normalized'", + ({ text, normalized }) => { + expect(normalizeDiffString(text)).toBe(normalized); + } + ); +}); + +describe("Diff two strings", () => { + it.each(DiffTextSamples)( + "Diff text", + ({ sourceText, modifiedText, normalizedDiffs }) => + assert.deepEqual(diffStrings(sourceText, modifiedText), normalizedDiffs) + ); +}); + +describe("Group diffs into Lines", () => { + it.each(DiffTextSamples)( + "Diff to lines", + ({ + normalizedDiffs, + normalizedSourceTextLines, + normalizedModifiedTextLines, + }) => { + assert.deepEqual( + splitDiffIntoLines( + normalizedDiffs.filter( + (diff) => + diff.belongsTo === BelongsIndicator.BOTH || + diff.belongsTo === BelongsIndicator.ORIGINAL + ) + ), + normalizedSourceTextLines + ); + + assert.deepEqual( + splitDiffIntoLines( + normalizedDiffs.filter( + (diff) => + diff.belongsTo === BelongsIndicator.BOTH || + diff.belongsTo === BelongsIndicator.MODIFIED + ) + ), + normalizedModifiedTextLines + ); + } + ); +}); diff --git a/tests/workbenchDB.test.ts b/tests/workbenchDB.test.ts new file mode 100644 index 00000000..92806e6b --- /dev/null +++ b/tests/workbenchDB.test.ts @@ -0,0 +1,340 @@ +import path from "path"; +import assert from "assert"; +import { parseScanInfo } from "../src/utils/parsers"; +import { figureOutDefaultSqliteFilePath } from "../src/utils/paths"; +import { WorkbenchDB } from "../src/services/workbenchDB"; +import { HeaderSamples } from "./test-scans/headers/expectedHeaders"; +import { CopyrightSamples } from "./test-scans/copyrights/expectedCopyrights"; +import { EmailUrlInfoSamples } from "./test-scans/email_url_info/expectedEmailUrlInfo"; +import { LicenseSamples } from "./test-scans/licenses/expectedLicenses"; +import { SanitySamples } from "./test-scans/sanity/sanitySamples"; +import { ErrorSamples } from "./test-scans/scan-errors/expectedErrors"; +import { PackageDepsSamples } from "./test-scans/packages_dependencies/expectedPackagesDeps"; + +// Avoid logging scan-parser checkpoints during tests +beforeEach(() => { + jest.spyOn(console, "time").mockImplementation(() => null); + jest.spyOn(console, "info").mockImplementation(() => null); +}); + +describe("Process special cases", () => { + it.each(SanitySamples)("Parses $jsonFileName", async ({ jsonFileName }) => { + const jsonFilePath = path.join( + __dirname, + "test-scans/sanity/", + jsonFileName + ); + + const newWorkbenchDB = new WorkbenchDB({ + dbName: "workbench_db", + dbStoragePath: figureOutDefaultSqliteFilePath(jsonFilePath), + deleteExisting: true, + }); + await newWorkbenchDB.sync; + await newWorkbenchDB.addFromJson(jsonFilePath, () => null); + }); +}); + +describe("Parse Headers", () => { + it.each(HeaderSamples)( + "Parses $jsonFileName", + async ({ jsonFileName, expectedHeaders }) => { + const jsonFilePath = path.join( + __dirname, + "test-scans/headers/", + jsonFileName + ); + + const newWorkbenchDB = new WorkbenchDB({ + dbName: "workbench_db", + dbStoragePath: figureOutDefaultSqliteFilePath(jsonFilePath), + deleteExisting: true, + }); + + await newWorkbenchDB.addFromJson(jsonFilePath, () => null); + + const scanInfo = parseScanInfo(await newWorkbenchDB.getScanInfo()); + assert.deepEqual(scanInfo, expectedHeaders); + } + ); +}); + +describe("Parse Errors", () => { + it.each(ErrorSamples)( + "Parses $jsonFileName", + async ({ jsonFileName, expectedFlatFiles, expectedScanErrors }) => { + const jsonFilePath = path.join( + __dirname, + "test-scans/scan-errors/", + jsonFileName + ); + + const newWorkbenchDB = new WorkbenchDB({ + dbName: "workbench_db", + dbStoragePath: figureOutDefaultSqliteFilePath(jsonFilePath), + deleteExisting: true, + }); + const db = await newWorkbenchDB.sync; + await newWorkbenchDB.addFromJson(jsonFilePath, () => null); + + const flatFiles = ( + await db.FlatFile.findAll({ + attributes: ["fileId", "scan_errors"], + }) + ).map((flatFile) => flatFile.dataValues); + const scanErrors = (await newWorkbenchDB.db.ScanError.findAll()).map( + (error) => error.dataValues + ); + + assert.deepEqual(flatFiles, expectedFlatFiles); + assert.deepEqual(scanErrors, expectedScanErrors); + } + ); +}); + +describe("Parse Copyrights", () => { + it.each(CopyrightSamples)( + "Parses $jsonFileName", + async ({ jsonFileName, expectedFlatFiles, expectedCopyrights }) => { + const jsonFilePath = path.join( + __dirname, + "test-scans/copyrights/", + jsonFileName + ); + + const newWorkbenchDB = new WorkbenchDB({ + dbName: "workbench_db", + dbStoragePath: figureOutDefaultSqliteFilePath(jsonFilePath), + deleteExisting: true, + }); + const db = await newWorkbenchDB.sync; + await newWorkbenchDB.addFromJson(jsonFilePath, () => null); + + const flatFiles = ( + await db.FlatFile.findAll({ + attributes: [ + "copyright_statements", + "copyright_holders", + "copyright_authors", + "copyright_start_line", + "copyright_end_line", + ], + }) + ).map((flatFile) => flatFile.dataValues); + const copyrights = (await newWorkbenchDB.db.Copyright.findAll()).map( + (copyright) => copyright.dataValues + ); + + assert.deepEqual(flatFiles, expectedFlatFiles); + assert.deepEqual(copyrights, expectedCopyrights); + } + ); +}); + +describe("Parse Email, URL & Info", () => { + it.each(EmailUrlInfoSamples)( + "Parses $jsonFileName", + async ({ + jsonFileName, + expectedFlatFiles, + expectedEmails, + expectedUrls, + }) => { + const jsonFilePath = path.join( + __dirname, + "test-scans/email_url_info/", + jsonFileName + ); + + const newWorkbenchDB = new WorkbenchDB({ + dbName: "workbench_db", + dbStoragePath: figureOutDefaultSqliteFilePath(jsonFilePath), + deleteExisting: true, + }); + const db = await newWorkbenchDB.sync; + + await newWorkbenchDB.addFromJson(jsonFilePath, () => null); + + const flatFiles = ( + await db.FlatFile.findAll({ + attributes: [ + "type", + "name", + "extension", + "date", + "size", + "sha1", + "md5", + "file_count", + "mime_type", + "file_type", + "programming_language", + "is_binary", + "is_text", + "is_archive", + "is_media", + "is_source", + "is_script", + "email", + "email_start_line", + "email_end_line", + "url", + "url_start_line", + "url_end_line", + ], + }) + ).map((flatFile) => flatFile.dataValues); + const emails = (await db.Email.findAll()).map( + (email) => email.dataValues + ); + const urls = (await db.Url.findAll()).map((url) => url.dataValues); + + assert.deepEqual(flatFiles, expectedFlatFiles); + assert.deepEqual(emails, expectedEmails); + assert.deepEqual(urls, expectedUrls); + } + ); +}); + +describe("Parse Licenses", () => { + it.each(LicenseSamples)( + "Parses $jsonFileName", + async ({ + jsonFileName, + expectedFlatFiles, + expectedLicenseClues, + expectedLicenseDetections, + expectedLicenseExpressions, + expectedLicensePolicies, + expectedLicenseRuleReferences, + }) => { + const jsonFilePath = path.join( + __dirname, + "test-scans/licenses/", + jsonFileName + ); + + const newWorkbenchDB = new WorkbenchDB({ + dbName: "workbench_db", + dbStoragePath: figureOutDefaultSqliteFilePath(jsonFilePath), + deleteExisting: true, + }); + const db = await newWorkbenchDB.sync; + + await newWorkbenchDB.addFromJson(jsonFilePath, () => null); + + const flatFiles = ( + await db.FlatFile.findAll({ + attributes: [ + "detected_license_expression", + "detected_license_expression_spdx", + "percentage_of_license_text", + "license_policy", + "license_clues", + "license_detections", + ], + }) + ).map((flatFile) => flatFile.dataValues); + const licenseDetections = (await db.LicenseDetections.findAll()).map( + (detection) => detection.dataValues + ); + const licenseClues = (await db.LicenseClues.findAll()).map( + (clue) => clue.dataValues + ); + const licenseExpressions = (await db.LicenseExpression.findAll()).map( + (expression) => expression.dataValues + ); + const licensePolicies = (await db.LicensePolicy.findAll()).map( + (policy) => policy.dataValues + ); + const licenseRuleReferences = ( + await db.LicenseRuleReferences.findAll() + ).map((ruleReference) => ruleReference.dataValues); + + assert.deepEqual(flatFiles, expectedFlatFiles); + assert.deepEqual(licenseDetections, expectedLicenseDetections); + assert.deepEqual(licenseClues, expectedLicenseClues); + assert.deepEqual(licenseExpressions, expectedLicenseExpressions); + assert.deepEqual(licensePolicies, expectedLicensePolicies); + assert.deepEqual(licenseRuleReferences, expectedLicenseRuleReferences); + } + ); +}); + +describe("Parse Packages & Dependencies", () => { + it.each(PackageDepsSamples)( + "Parses $jsonFileName", + async ({ + jsonFileName, + expectedFlatFiles, + expectedDependencies, + expectedPackageData, + expectedPackages, + }) => { + const jsonFilePath = path.join( + __dirname, + "test-scans/packages_dependencies/", + jsonFileName + ); + + const newWorkbenchDB = new WorkbenchDB({ + dbName: "workbench_db", + dbStoragePath: figureOutDefaultSqliteFilePath(jsonFilePath), + deleteExisting: true, + }); + const db = await newWorkbenchDB.sync; + + await newWorkbenchDB.addFromJson(jsonFilePath, () => null); + + const flatFiles = ( + await db.FlatFile.findAll({ + attributes: [ + "for_packages", + "package_data_type", + "package_data_namespace", + "package_data_name", + "package_data_version", + "package_data_qualifiers", + "package_data_subpath", + "package_data_purl", + "package_data_primary_language", + "package_data_code_type", + "package_data_description", + "package_data_size", + "package_data_release_date", + "package_data_keywords", + "package_data_homepage_url", + "package_data_download_url", + "package_data_download_checksums", + "package_data_bug_tracking_url", + "package_data_code_view_url", + "package_data_vcs_tool", + "package_data_vcs_url", + "package_data_vcs_repository", + "package_data_vcs_revision", + "package_data_extracted_license_statement", + "package_data_declared_license_expression", + "package_data_declared_license_expression_spdx", + "package_data_notice_text", + "package_data_dependencies", + "package_data_related_packages", + ], + }) + ).map((flatFile) => flatFile.dataValues); + const packages = (await db.Packages.findAll()).map( + (pkg) => pkg.dataValues + ); + const packageData = (await db.PackageData.findAll()).map( + (pkgData) => pkgData.dataValues + ); + const dependencies = (await db.Dependencies.findAll()).map( + (dependency) => dependency.dataValues + ); + + assert.deepEqual(flatFiles, expectedFlatFiles); + assert.deepEqual(packages, expectedPackages); + assert.deepEqual(packageData, expectedPackageData); + assert.deepEqual(dependencies, expectedDependencies); + } + ); +}); diff --git a/tsconfig.json b/tsconfig.json index 25317f45..2db8b5cb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,8 +15,6 @@ "*": ["node_modules/*"] } }, - "types": [ - "node" - ], - "include": ["src/**/*"] + "types": ["node"], + "include": ["src/**/*", "tests/**/*"] } diff --git a/workbench.ABOUT b/workbench.ABOUT index 234db9a1..1d5e0452 100644 --- a/workbench.ABOUT +++ b/workbench.ABOUT @@ -3,7 +3,7 @@ name: ScanCode Workbench version: 4.0.0rc4 license: apache-2.0 owner: nexB Inc. -copyright: Copyright (c) 2019 nexB Inc. +copyright: Copyright (c) nexB Inc. and others. All rights reserved. notice_file: NOTICE license_file: LICENSE
{key}{String(value)}